dl_ner_transformer/transformer_pipeline.ipynb
2024-05-30 19:07:24 +02:00

1.0 MiB
Raw Permalink Blame History

Hugging Face transformer pipeline NER

Testowanie pobranego modelu

from transformers import pipeline

nlp = pipeline("ner")

sequence = "Hugging Face Inc. is a company based in New York City. Its headquarters are in DUMBO, therefore very" \
           "close to the Manhattan Bridge which is visible from the window."

print(nlp(sequence))
No model was supplied, defaulted to dbmdz/bert-large-cased-finetuned-conll03-english and revision f2482bf (https://huggingface.co/dbmdz/bert-large-cased-finetuned-conll03-english).
Using a pipeline without specifying a model name and revision in production is not recommended.
C:\Users\Adrian\miniconda3\lib\site-packages\huggingface_hub\file_download.py:1132: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`.
  warnings.warn(
config.json:   0%|          | 0.00/998 [00:00<?, ?B/s]
C:\Users\Adrian\miniconda3\lib\site-packages\huggingface_hub\file_download.py:157: UserWarning: `huggingface_hub` cache-system uses symlinks by default to efficiently store duplicated files but your machine does not support them in C:\Users\Adrian\.cache\huggingface\hub\models--dbmdz--bert-large-cased-finetuned-conll03-english. Caching files will still work but in a degraded version that might require more space on your disk. This warning can be disabled by setting the `HF_HUB_DISABLE_SYMLINKS_WARNING` environment variable. For more details, see https://huggingface.co/docs/huggingface_hub/how-to-cache#limitations.
To support symlinks on Windows, you either need to activate Developer Mode or to run Python as an administrator. In order to see activate developer mode, see this article: https://docs.microsoft.com/en-us/windows/apps/get-started/enable-your-device-for-development
  warnings.warn(message)
model.safetensors:   0%|          | 0.00/1.33G [00:00<?, ?B/s]
Some weights of the model checkpoint at dbmdz/bert-large-cased-finetuned-conll03-english were not used when initializing BertForTokenClassification: ['bert.pooler.dense.bias', 'bert.pooler.dense.weight']
- This IS expected if you are initializing BertForTokenClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).
- This IS NOT expected if you are initializing BertForTokenClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).
tokenizer_config.json:   0%|          | 0.00/60.0 [00:00<?, ?B/s]
vocab.txt:   0%|          | 0.00/213k [00:00<?, ?B/s]
[{'entity': 'I-ORG', 'score': 0.9995635, 'index': 1, 'word': 'Hu', 'start': 0, 'end': 2}, {'entity': 'I-ORG', 'score': 0.99159384, 'index': 2, 'word': '##gging', 'start': 2, 'end': 7}, {'entity': 'I-ORG', 'score': 0.99826705, 'index': 3, 'word': 'Face', 'start': 8, 'end': 12}, {'entity': 'I-ORG', 'score': 0.9994404, 'index': 4, 'word': 'Inc', 'start': 13, 'end': 16}, {'entity': 'I-LOC', 'score': 0.99943465, 'index': 11, 'word': 'New', 'start': 40, 'end': 43}, {'entity': 'I-LOC', 'score': 0.99932706, 'index': 12, 'word': 'York', 'start': 44, 'end': 48}, {'entity': 'I-LOC', 'score': 0.9993864, 'index': 13, 'word': 'City', 'start': 49, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9825622, 'index': 19, 'word': 'D', 'start': 79, 'end': 80}, {'entity': 'I-LOC', 'score': 0.93698275, 'index': 20, 'word': '##UM', 'start': 80, 'end': 82}, {'entity': 'I-LOC', 'score': 0.89870983, 'index': 21, 'word': '##BO', 'start': 82, 'end': 84}, {'entity': 'I-LOC', 'score': 0.97582406, 'index': 29, 'word': 'Manhattan', 'start': 113, 'end': 122}, {'entity': 'I-LOC', 'score': 0.99024945, 'index': 30, 'word': 'Bridge', 'start': 123, 'end': 129}]

Jak widać model inaczej tokenizuje zdania niż przykład z zad. 3, i dane wyjściowe też muszą być zmienione żeby tagi BIO odnosiły się do słów a nie ich części

tokenized_raw = nlp(sequence)
print(tokenized_raw)

print(sequence[123:129])

[{'entity': 'I-ORG', 'score': 0.9995635, 'index': 1, 'word': 'Hu', 'start': 0, 'end': 2}, {'entity': 'I-ORG', 'score': 0.99159384, 'index': 2, 'word': '##gging', 'start': 2, 'end': 7}, {'entity': 'I-ORG', 'score': 0.99826705, 'index': 3, 'word': 'Face', 'start': 8, 'end': 12}, {'entity': 'I-ORG', 'score': 0.9994404, 'index': 4, 'word': 'Inc', 'start': 13, 'end': 16}, {'entity': 'I-LOC', 'score': 0.99943465, 'index': 11, 'word': 'New', 'start': 40, 'end': 43}, {'entity': 'I-LOC', 'score': 0.99932706, 'index': 12, 'word': 'York', 'start': 44, 'end': 48}, {'entity': 'I-LOC', 'score': 0.9993864, 'index': 13, 'word': 'City', 'start': 49, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9825622, 'index': 19, 'word': 'D', 'start': 79, 'end': 80}, {'entity': 'I-LOC', 'score': 0.93698275, 'index': 20, 'word': '##UM', 'start': 80, 'end': 82}, {'entity': 'I-LOC', 'score': 0.89870983, 'index': 21, 'word': '##BO', 'start': 82, 'end': 84}, {'entity': 'I-LOC', 'score': 0.97582406, 'index': 29, 'word': 'Manhattan', 'start': 113, 'end': 122}, {'entity': 'I-LOC', 'score': 0.99024945, 'index': 30, 'word': 'Bridge', 'start': 123, 'end': 129}]
Bridge
with open("en-ner-conll-2003/dev-0/in.tsv","r",encoding="utf-8") as f:
    dev_in_lines = f.readlines()

with open("en-ner-conll-2003/dev-0/expected.tsv","r",encoding="utf-8") as f:
    dev_expected_lines = f.readlines()

line_in_split = dev_in_lines[0].split()
line_expected_split = dev_expected_lines[0].split()

print(len(line_expected_split))
print(len(line_in_split))
456
456
def generate_date(filename):
    with open(filename, "r", encoding="utf-8") as f:
        lines = f.readlines()
    for l in lines:
        yield l
for out in nlp(generate_date("en-ner-conll-2003/dev-0/in.tsv")):
    print(out)
[{'entity': 'I-ORG', 'score': 0.34655792, 'index': 6, 'word': 'L', 'start': 10, 'end': 11}, {'entity': 'I-MISC', 'score': 0.38114062, 'index': 16, 'word': '##A', 'start': 26, 'end': 27}, {'entity': 'I-LOC', 'score': 0.99792373, 'index': 40, 'word': 'L', 'start': 71, 'end': 72}, {'entity': 'I-LOC', 'score': 0.98120636, 'index': 41, 'word': '##ON', 'start': 72, 'end': 74}, {'entity': 'I-LOC', 'score': 0.5895176, 'index': 42, 'word': '##D', 'start': 74, 'end': 75}, {'entity': 'I-LOC', 'score': 0.9873344, 'index': 43, 'word': '##ON', 'start': 75, 'end': 77}, {'entity': 'I-MISC', 'score': 0.998058, 'index': 53, 'word': 'West', 'start': 94, 'end': 98}, {'entity': 'I-MISC', 'score': 0.9981534, 'index': 54, 'word': 'Indian', 'start': 99, 'end': 105}, {'entity': 'I-PER', 'score': 0.99967587, 'index': 59, 'word': 'Phil', 'start': 118, 'end': 122}, {'entity': 'I-PER', 'score': 0.9997974, 'index': 60, 'word': 'Simmons', 'start': 123, 'end': 130}, {'entity': 'I-ORG', 'score': 0.99539727, 'index': 68, 'word': 'Leicestershire', 'start': 161, 'end': 175}, {'entity': 'I-ORG', 'score': 0.997735, 'index': 70, 'word': 'Somerset', 'start': 181, 'end': 189}, {'entity': 'I-ORG', 'score': 0.9995547, 'index': 110, 'word': 'Essex', 'start': 351, 'end': 356}, {'entity': 'I-ORG', 'score': 0.9992822, 'index': 112, 'word': 'Derbyshire', 'start': 359, 'end': 369}, {'entity': 'I-ORG', 'score': 0.9993387, 'index': 114, 'word': 'Surrey', 'start': 374, 'end': 380}, {'entity': 'I-ORG', 'score': 0.9993369, 'index': 121, 'word': 'Kent', 'start': 412, 'end': 416}, {'entity': 'I-ORG', 'score': 0.99557805, 'index': 134, 'word': 'Nottinghamshire', 'start': 476, 'end': 491}, {'entity': 'I-ORG', 'score': 0.99760664, 'index': 142, 'word': 'Somerset', 'start': 513, 'end': 521}, {'entity': 'I-LOC', 'score': 0.99549663, 'index': 151, 'word': 'Grace', 'start': 559, 'end': 564}, {'entity': 'I-LOC', 'score': 0.9957711, 'index': 152, 'word': 'Road', 'start': 565, 'end': 569}, {'entity': 'I-ORG', 'score': 0.9976046, 'index': 154, 'word': 'Leicestershire', 'start': 572, 'end': 586}, {'entity': 'I-LOC', 'score': 0.9994592, 'index': 170, 'word': 'England', 'start': 664, 'end': 671}, {'entity': 'I-PER', 'score': 0.9996742, 'index': 173, 'word': 'Andy', 'start': 680, 'end': 684}, {'entity': 'I-PER', 'score': 0.99951124, 'index': 174, 'word': 'C', 'start': 685, 'end': 686}, {'entity': 'I-PER', 'score': 0.9585547, 'index': 175, 'word': '##ad', 'start': 686, 'end': 688}, {'entity': 'I-PER', 'score': 0.9994407, 'index': 176, 'word': '##dick', 'start': 688, 'end': 692}, {'entity': 'I-ORG', 'score': 0.9989544, 'index': 191, 'word': 'Somerset', 'start': 738, 'end': 746}, {'entity': 'I-PER', 'score': 0.9996531, 'index': 201, 'word': 'Simmons', 'start': 796, 'end': 803}, {'entity': 'I-ORG', 'score': 0.9993154, 'index': 215, 'word': 'Essex', 'start': 849, 'end': 854}, {'entity': 'I-PER', 'score': 0.99979573, 'index': 227, 'word': 'Na', 'start': 911, 'end': 913}, {'entity': 'I-PER', 'score': 0.99969757, 'index': 228, 'word': '##sser', 'start': 913, 'end': 917}, {'entity': 'I-PER', 'score': 0.9998305, 'index': 229, 'word': 'Hussain', 'start': 918, 'end': 925}, {'entity': 'I-PER', 'score': 0.9997776, 'index': 231, 'word': 'Peter', 'start': 930, 'end': 935}, {'entity': 'I-PER', 'score': 0.9995061, 'index': 232, 'word': 'Such', 'start': 936, 'end': 940}, {'entity': 'I-ORG', 'score': 0.9935796, 'index': 242, 'word': 'Yorkshire', 'start': 986, 'end': 995}, {'entity': 'I-LOC', 'score': 0.9984114, 'index': 244, 'word': 'Head', 'start': 999, 'end': 1003}, {'entity': 'I-LOC', 'score': 0.9905387, 'index': 245, 'word': '##ing', 'start': 1003, 'end': 1006}, {'entity': 'I-LOC', 'score': 0.9977272, 'index': 246, 'word': '##ley', 'start': 1006, 'end': 1009}, {'entity': 'I-PER', 'score': 0.99976915, 'index': 252, 'word': 'Hussain', 'start': 1017, 'end': 1024}, {'entity': 'I-LOC', 'score': 0.999605, 'index': 257, 'word': 'England', 'start': 1049, 'end': 1056}, {'entity': 'I-ORG', 'score': 0.99933463, 'index': 277, 'word': 'Essex', 'start': 1146, 'end': 1151}, {'entity': 'I-ORG', 'score': 0.99699366, 'index': 297, 'word': 'Yorkshire', 'start': 1220, 'end': 1229}, {'entity': 'I-PER', 'score': 0.9988619, 'index': 312, 'word': 'Such', 'start': 1286, 'end': 1290}, {'entity': 'I-LOC', 'score': 0.9991185, 'index': 346, 'word': 'Oval', 'start': 1425, 'end': 1429}, {'entity': 'I-ORG', 'score': 0.9990688, 'index': 348, 'word': 'Surrey', 'start': 1432, 'end': 1438}, {'entity': 'I-PER', 'score': 0.999728, 'index': 350, 'word': 'Chris', 'start': 1447, 'end': 1452}, {'entity': 'I-PER', 'score': 0.9998248, 'index': 351, 'word': 'Lewis', 'start': 1453, 'end': 1458}, {'entity': 'I-LOC', 'score': 0.99957126, 'index': 357, 'word': 'England', 'start': 1483, 'end': 1490}, {'entity': 'I-ORG', 'score': 0.9987552, 'index': 383, 'word': 'Warwickshire', 'start': 1616, 'end': 1628}, {'entity': 'I-ORG', 'score': 0.7200179, 'index': 387, 'word': 'S', 'start': 1633, 'end': 1634}, {'entity': 'I-LOC', 'score': 0.9987576, 'index': 394, 'word': 'England', 'start': 1658, 'end': 1665}, {'entity': 'I-PER', 'score': 0.9997397, 'index': 396, 'word': 'Mark', 'start': 1674, 'end': 1678}, {'entity': 'I-PER', 'score': 0.99968576, 'index': 397, 'word': 'Butcher', 'start': 1679, 'end': 1686}, {'entity': 'I-ORG', 'score': 0.9978284, 'index': 402, 'word': 'Surrey', 'start': 1702, 'end': 1708}, {'entity': 'I-ORG', 'score': 0.5290491, 'index': 417, 'word': 'S', 'start': 1753, 'end': 1754}, {'entity': 'I-ORG', 'score': 0.9982393, 'index': 419, 'word': 'Derbyshire', 'start': 1756, 'end': 1766}, {'entity': 'I-ORG', 'score': 0.999025, 'index': 433, 'word': 'Worcestershire', 'start': 1842, 'end': 1856}, {'entity': 'I-ORG', 'score': 0.5895676, 'index': 455, 'word': 'S', 'start': 1955, 'end': 1956}, {'entity': 'I-MISC', 'score': 0.9989274, 'index': 457, 'word': 'Australian', 'start': 1958, 'end': 1968}, {'entity': 'I-PER', 'score': 0.9996902, 'index': 458, 'word': 'Tom', 'start': 1969, 'end': 1972}, {'entity': 'I-PER', 'score': 0.9997054, 'index': 459, 'word': 'Moody', 'start': 1973, 'end': 1978}, {'entity': 'I-PER', 'score': 0.9997602, 'index': 465, 'word': 'Chris', 'start': 1999, 'end': 2004}, {'entity': 'I-PER', 'score': 0.99969935, 'index': 466, 'word': 'Adams', 'start': 2005, 'end': 2010}, {'entity': 'I-PER', 'score': 0.99973315, 'index': 471, 'word': 'Tim', 'start': 2023, 'end': 2026}, {'entity': 'I-PER', 'score': 0.9992537, 'index': 472, 'word': 'O', 'start': 2027, 'end': 2028}, {'entity': 'I-PER', 'score': 0.5700803, 'index': 474, 'word': 'Go', 'start': 2029, 'end': 2031}, {'entity': 'I-ORG', 'score': 0.9984907, 'index': 480, 'word': 'Derbyshire', 'start': 2049, 'end': 2059}, {'entity': 'I-ORG', 'score': 0.4096156, 'index': 494, 'word': 'S', 'start': 2103, 'end': 2104}]
[{'entity': 'I-MISC', 'score': 0.46102676, 'index': 2, 'word': '##IC', 'start': 2, 'end': 4}, {'entity': 'I-MISC', 'score': 0.99607205, 'index': 6, 'word': 'E', 'start': 10, 'end': 11}, {'entity': 'I-MISC', 'score': 0.95949733, 'index': 7, 'word': '##NG', 'start': 11, 'end': 13}, {'entity': 'I-MISC', 'score': 0.95654744, 'index': 8, 'word': '##L', 'start': 13, 'end': 14}, {'entity': 'I-MISC', 'score': 0.50948775, 'index': 10, 'word': '##H', 'start': 16, 'end': 17}, {'entity': 'I-MISC', 'score': 0.9255237, 'index': 11, 'word': 'CO', 'start': 18, 'end': 20}, {'entity': 'I-MISC', 'score': 0.62757576, 'index': 12, 'word': '##UN', 'start': 20, 'end': 22}, {'entity': 'I-MISC', 'score': 0.8929872, 'index': 13, 'word': '##TY', 'start': 22, 'end': 24}, {'entity': 'I-MISC', 'score': 0.97692674, 'index': 14, 'word': 'CH', 'start': 25, 'end': 27}, {'entity': 'I-MISC', 'score': 0.45881018, 'index': 15, 'word': '##AM', 'start': 27, 'end': 29}, {'entity': 'I-MISC', 'score': 0.6647645, 'index': 19, 'word': '##H', 'start': 34, 'end': 35}, {'entity': 'I-LOC', 'score': 0.99827445, 'index': 29, 'word': 'L', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.98857844, 'index': 30, 'word': '##ON', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.8327747, 'index': 31, 'word': '##D', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9980028, 'index': 32, 'word': '##ON', 'start': 56, 'end': 58}, {'entity': 'I-MISC', 'score': 0.99895835, 'index': 51, 'word': 'English', 'start': 110, 'end': 117}, {'entity': 'I-LOC', 'score': 0.99821544, 'index': 62, 'word': 'Leicester', 'start': 163, 'end': 172}, {'entity': 'I-ORG', 'score': 0.99364024, 'index': 64, 'word': 'Leicestershire', 'start': 175, 'end': 189}, {'entity': 'I-ORG', 'score': 0.99720687, 'index': 66, 'word': 'Somerset', 'start': 195, 'end': 203}, {'entity': 'I-ORG', 'score': 0.9979146, 'index': 78, 'word': 'Somerset', 'start': 237, 'end': 245}, {'entity': 'I-PER', 'score': 0.9997062, 'index': 83, 'word': 'P', 'start': 259, 'end': 260}, {'entity': 'I-PER', 'score': 0.8936373, 'index': 84, 'word': '.', 'start': 260, 'end': 261}, {'entity': 'I-PER', 'score': 0.9998217, 'index': 85, 'word': 'Simmons', 'start': 262, 'end': 269}, {'entity': 'I-ORG', 'score': 0.9983664, 'index': 91, 'word': 'Leicestershire', 'start': 279, 'end': 293}, {'entity': 'I-ORG', 'score': 0.998063, 'index': 99, 'word': 'Leicestershire', 'start': 305, 'end': 319}, {'entity': 'I-ORG', 'score': 0.99934715, 'index': 103, 'word': 'Somerset', 'start': 332, 'end': 340}, {'entity': 'I-LOC', 'score': 0.9975303, 'index': 110, 'word': 'Chester', 'start': 350, 'end': 357}, {'entity': 'I-LOC', 'score': 0.96212333, 'index': 111, 'word': '-', 'start': 357, 'end': 358}, {'entity': 'I-LOC', 'score': 0.9865856, 'index': 112, 'word': 'le', 'start': 358, 'end': 360}, {'entity': 'I-LOC', 'score': 0.89539164, 'index': 113, 'word': '-', 'start': 360, 'end': 361}, {'entity': 'I-LOC', 'score': 0.98996615, 'index': 114, 'word': 'Street', 'start': 361, 'end': 367}, {'entity': 'I-ORG', 'score': 0.9994879, 'index': 116, 'word': 'Glamorgan', 'start': 370, 'end': 379}, {'entity': 'I-PER', 'score': 0.99971515, 'index': 122, 'word': 'A', 'start': 394, 'end': 395}, {'entity': 'I-PER', 'score': 0.9317695, 'index': 123, 'word': '.', 'start': 395, 'end': 396}, {'entity': 'I-PER', 'score': 0.9998431, 'index': 124, 'word': 'Dale', 'start': 397, 'end': 401}, {'entity': 'I-PER', 'score': 0.99972874, 'index': 127, 'word': 'H', 'start': 407, 'end': 408}, {'entity': 'I-PER', 'score': 0.87753445, 'index': 128, 'word': '.', 'start': 408, 'end': 409}, {'entity': 'I-PER', 'score': 0.9998385, 'index': 129, 'word': 'Morris', 'start': 410, 'end': 416}, {'entity': 'I-PER', 'score': 0.99969065, 'index': 132, 'word': 'D', 'start': 422, 'end': 423}, {'entity': 'I-PER', 'score': 0.922977, 'index': 133, 'word': '.', 'start': 423, 'end': 424}, {'entity': 'I-PER', 'score': 0.99974626, 'index': 134, 'word': 'B', 'start': 425, 'end': 426}, {'entity': 'I-PER', 'score': 0.9913414, 'index': 135, 'word': '##len', 'start': 426, 'end': 429}, {'entity': 'I-PER', 'score': 0.8400255, 'index': 136, 'word': '##ki', 'start': 429, 'end': 431}, {'entity': 'I-PER', 'score': 0.99338186, 'index': 137, 'word': '##ron', 'start': 431, 'end': 434}, {'entity': 'I-ORG', 'score': 0.9991248, 'index': 143, 'word': 'Durham', 'start': 444, 'end': 450}, {'entity': 'I-PER', 'score': 0.999653, 'index': 146, 'word': 'S', 'start': 457, 'end': 458}, {'entity': 'I-PER', 'score': 0.8763534, 'index': 147, 'word': '.', 'start': 458, 'end': 459}, {'entity': 'I-PER', 'score': 0.99944955, 'index': 148, 'word': 'W', 'start': 460, 'end': 461}, {'entity': 'I-PER', 'score': 0.95776916, 'index': 149, 'word': '##at', 'start': 461, 'end': 463}, {'entity': 'I-PER', 'score': 0.99564385, 'index': 150, 'word': '##kin', 'start': 463, 'end': 466}, {'entity': 'I-LOC', 'score': 0.99488115, 'index': 164, 'word': 'Tu', 'start': 490, 'end': 492}, {'entity': 'I-LOC', 'score': 0.9962608, 'index': 165, 'word': '##nbridge', 'start': 492, 'end': 499}, {'entity': 'I-LOC', 'score': 0.9974607, 'index': 166, 'word': 'Wells', 'start': 500, 'end': 505}, {'entity': 'I-ORG', 'score': 0.999209, 'index': 168, 'word': 'Nottinghamshire', 'start': 508, 'end': 523}, {'entity': 'I-PER', 'score': 0.999744, 'index': 171, 'word': 'P', 'start': 530, 'end': 531}, {'entity': 'I-PER', 'score': 0.82745236, 'index': 172, 'word': '.', 'start': 531, 'end': 532}, {'entity': 'I-PER', 'score': 0.9998394, 'index': 173, 'word': 'Johnson', 'start': 533, 'end': 540}, {'entity': 'I-PER', 'score': 0.99975556, 'index': 176, 'word': 'M', 'start': 546, 'end': 547}, {'entity': 'I-PER', 'score': 0.9440478, 'index': 177, 'word': '.', 'start': 547, 'end': 548}, {'entity': 'I-PER', 'score': 0.99970907, 'index': 178, 'word': 'M', 'start': 549, 'end': 550}, {'entity': 'I-PER', 'score': 0.99924505, 'index': 179, 'word': '##c', 'start': 550, 'end': 551}, {'entity': 'I-PER', 'score': 0.99934775, 'index': 180, 'word': '##C', 'start': 551, 'end': 552}, {'entity': 'I-PER', 'score': 0.9995943, 'index': 181, 'word': '##ague', 'start': 552, 'end': 556}, {'entity': 'I-ORG', 'score': 0.99935454, 'index': 187, 'word': 'Kent', 'start': 566, 'end': 570}, {'entity': 'I-LOC', 'score': 0.9988416, 'index': 196, 'word': 'London', 'start': 584, 'end': 590}, {'entity': 'I-LOC', 'score': 0.9944748, 'index': 198, 'word': 'The', 'start': 593, 'end': 596}, {'entity': 'I-LOC', 'score': 0.9988834, 'index': 199, 'word': 'Oval', 'start': 597, 'end': 601}, {'entity': 'I-ORG', 'score': 0.99928087, 'index': 202, 'word': 'Warwickshire', 'start': 606, 'end': 618}, {'entity': 'I-ORG', 'score': 0.9995234, 'index': 205, 'word': 'Surrey', 'start': 625, 'end': 631}, {'entity': 'I-PER', 'score': 0.9997532, 'index': 211, 'word': 'C', 'start': 640, 'end': 641}, {'entity': 'I-PER', 'score': 0.7801328, 'index': 212, 'word': '.', 'start': 641, 'end': 642}, {'entity': 'I-PER', 'score': 0.9998155, 'index': 213, 'word': 'Lewis', 'start': 643, 'end': 648}, {'entity': 'I-PER', 'score': 0.9997625, 'index': 218, 'word': 'M', 'start': 662, 'end': 663}, {'entity': 'I-PER', 'score': 0.957568, 'index': 219, 'word': '.', 'start': 663, 'end': 664}, {'entity': 'I-PER', 'score': 0.99986136, 'index': 220, 'word': 'Butcher', 'start': 665, 'end': 672}, {'entity': 'I-PER', 'score': 0.999775, 'index': 223, 'word': 'G', 'start': 678, 'end': 679}, {'entity': 'I-PER', 'score': 0.98381627, 'index': 224, 'word': '.', 'start': 679, 'end': 680}, {'entity': 'I-PER', 'score': 0.9997563, 'index': 225, 'word': 'Ke', 'start': 681, 'end': 683}, {'entity': 'I-PER', 'score': 0.9994734, 'index': 226, 'word': '##rsey', 'start': 683, 'end': 687}, {'entity': 'I-PER', 'score': 0.99967635, 'index': 229, 'word': 'J', 'start': 693, 'end': 694}, {'entity': 'I-PER', 'score': 0.95457244, 'index': 230, 'word': '.', 'start': 694, 'end': 695}, {'entity': 'I-PER', 'score': 0.9997335, 'index': 231, 'word': 'Rat', 'start': 696, 'end': 699}, {'entity': 'I-PER', 'score': 0.99928397, 'index': 232, 'word': '##cliffe', 'start': 699, 'end': 705}, {'entity': 'I-PER', 'score': 0.99970824, 'index': 235, 'word': 'D', 'start': 711, 'end': 712}, {'entity': 'I-PER', 'score': 0.9371404, 'index': 236, 'word': '.', 'start': 712, 'end': 713}, {'entity': 'I-PER', 'score': 0.99977785, 'index': 237, 'word': 'B', 'start': 714, 'end': 715}, {'entity': 'I-PER', 'score': 0.9985782, 'index': 238, 'word': '##ick', 'start': 715, 'end': 718}, {'entity': 'I-PER', 'score': 0.9979285, 'index': 239, 'word': '##nell', 'start': 718, 'end': 722}, {'entity': 'I-LOC', 'score': 0.98276377, 'index': 247, 'word': 'Ho', 'start': 735, 'end': 737}, {'entity': 'I-LOC', 'score': 0.96021694, 'index': 248, 'word': '##ve', 'start': 737, 'end': 739}, {'entity': 'I-ORG', 'score': 0.99935216, 'index': 250, 'word': 'Sussex', 'start': 742, 'end': 748}, {'entity': 'I-PER', 'score': 0.9996948, 'index': 254, 'word': 'W', 'start': 755, 'end': 756}, {'entity': 'I-PER', 'score': 0.9155417, 'index': 255, 'word': '.', 'start': 756, 'end': 757}, {'entity': 'I-PER', 'score': 0.9997483, 'index': 256, 'word': 'At', 'start': 758, 'end': 760}, {'entity': 'I-PER', 'score': 0.9951519, 'index': 257, 'word': '##hey', 'start': 760, 'end': 763}, {'entity': 'I-PER', 'score': 0.9997428, 'index': 260, 'word': 'V', 'start': 770, 'end': 771}, {'entity': 'I-PER', 'score': 0.96087766, 'index': 261, 'word': '.', 'start': 771, 'end': 772}, {'entity': 'I-PER', 'score': 0.9995759, 'index': 262, 'word': 'Drake', 'start': 773, 'end': 778}, {'entity': 'I-PER', 'score': 0.9957624, 'index': 263, 'word': '##s', 'start': 778, 'end': 779}, {'entity': 'I-PER', 'score': 0.99975723, 'index': 266, 'word': 'I', 'start': 785, 'end': 786}, {'entity': 'I-PER', 'score': 0.9798331, 'index': 267, 'word': '.', 'start': 786, 'end': 787}, {'entity': 'I-PER', 'score': 0.9998472, 'index': 268, 'word': 'Austin', 'start': 788, 'end': 794}, {'entity': 'I-ORG', 'score': 0.99931324, 'index': 274, 'word': 'Lancashire', 'start': 804, 'end': 814}, {'entity': 'I-PER', 'score': 0.9996283, 'index': 279, 'word': 'W', 'start': 823, 'end': 824}, {'entity': 'I-PER', 'score': 0.90980345, 'index': 280, 'word': '.', 'start': 824, 'end': 825}, {'entity': 'I-PER', 'score': 0.9989716, 'index': 281, 'word': 'He', 'start': 826, 'end': 828}, {'entity': 'I-PER', 'score': 0.99694973, 'index': 282, 'word': '##gg', 'start': 828, 'end': 830}, {'entity': 'I-LOC', 'score': 0.9942986, 'index': 289, 'word': 'Portsmouth', 'start': 841, 'end': 851}, {'entity': 'I-ORG', 'score': 0.99923646, 'index': 291, 'word': 'Middlesex', 'start': 854, 'end': 863}, {'entity': 'I-PER', 'score': 0.99967885, 'index': 297, 'word': 'J', 'start': 878, 'end': 879}, {'entity': 'I-PER', 'score': 0.9150865, 'index': 298, 'word': '.', 'start': 879, 'end': 880}, {'entity': 'I-PER', 'score': 0.9997217, 'index': 299, 'word': 'Poole', 'start': 881, 'end': 886}, {'entity': 'I-PER', 'score': 0.9855326, 'index': 300, 'word': '##y', 'start': 886, 'end': 887}, {'entity': 'I-PER', 'score': 0.99973243, 'index': 303, 'word': 'M', 'start': 894, 'end': 895}, {'entity': 'I-PER', 'score': 0.92502993, 'index': 304, 'word': '.', 'start': 895, 'end': 896}, {'entity': 'I-PER', 'score': 0.99980193, 'index': 305, 'word': 'Ram', 'start': 897, 'end': 900}, {'entity': 'I-PER', 'score': 0.9988908, 'index': 306, 'word': '##pra', 'start': 900, 'end': 903}, {'entity': 'I-PER', 'score': 0.94621354, 'index': 307, 'word': '##kas', 'start': 903, 'end': 906}, {'entity': 'I-PER', 'score': 0.9942021, 'index': 308, 'word': '##h', 'start': 906, 'end': 907}, {'entity': 'I-PER', 'score': 0.99971014, 'index': 311, 'word': 'M', 'start': 914, 'end': 915}, {'entity': 'I-PER', 'score': 0.90779895, 'index': 312, 'word': '.', 'start': 915, 'end': 916}, {'entity': 'I-PER', 'score': 0.99955374, 'index': 313, 'word': 'G', 'start': 917, 'end': 918}, {'entity': 'I-PER', 'score': 0.9962297, 'index': 314, 'word': '##att', 'start': 918, 'end': 921}, {'entity': 'I-PER', 'score': 0.9943855, 'index': 315, 'word': '##ing', 'start': 921, 'end': 924}, {'entity': 'I-ORG', 'score': 0.99938464, 'index': 319, 'word': 'Hampshire', 'start': 932, 'end': 941}, {'entity': 'I-LOC', 'score': 0.9905847, 'index': 330, 'word': 'Chesterfield', 'start': 963, 'end': 975}, {'entity': 'I-ORG', 'score': 0.99893564, 'index': 332, 'word': 'Worcestershire', 'start': 978, 'end': 992}, {'entity': 'I-ORG', 'score': 0.9993286, 'index': 339, 'word': 'Derbyshire', 'start': 1009, 'end': 1019}, {'entity': 'I-PER', 'score': 0.9996786, 'index': 343, 'word': 'J', 'start': 1026, 'end': 1027}, {'entity': 'I-PER', 'score': 0.908016, 'index': 344, 'word': '.', 'start': 1027, 'end': 1028}, {'entity': 'I-PER', 'score': 0.9998272, 'index': 345, 'word': 'Adams', 'start': 1029, 'end': 1034}, {'entity': 'I-PER', 'score': 0.9997596, 'index': 348, 'word': 'T', 'start': 1041, 'end': 1042}, {'entity': 'I-PER', 'score': 0.96453863, 'index': 349, 'word': '.', 'start': 1042, 'end': 1043}, {'entity': 'I-PER', 'score': 0.9997553, 'index': 350, 'word': 'O', 'start': 1043, 'end': 1044}, {'entity': 'I-PER', 'score': 0.9975132, 'index': 351, 'word': "'", 'start': 1044, 'end': 1045}, {'entity': 'I-PER', 'score': 0.9980426, 'index': 352, 'word': 'Go', 'start': 1045, 'end': 1047}, {'entity': 'I-PER', 'score': 0.99937373, 'index': 353, 'word': '##rman', 'start': 1047, 'end': 1051}, {'entity': 'I-PER', 'score': 0.99974066, 'index': 358, 'word': 'K', 'start': 1066, 'end': 1067}, {'entity': 'I-PER', 'score': 0.9367585, 'index': 359, 'word': '.', 'start': 1067, 'end': 1068}, {'entity': 'I-PER', 'score': 0.9998441, 'index': 360, 'word': 'Barnett', 'start': 1069, 'end': 1076}, {'entity': 'I-PER', 'score': 0.9997073, 'index': 363, 'word': 'T', 'start': 1082, 'end': 1083}, {'entity': 'I-PER', 'score': 0.96596843, 'index': 364, 'word': '.', 'start': 1083, 'end': 1084}, {'entity': 'I-PER', 'score': 0.99981743, 'index': 365, 'word': 'Moody', 'start': 1085, 'end': 1090}, {'entity': 'I-LOC', 'score': 0.99594116, 'index': 374, 'word': 'Bristol', 'start': 1103, 'end': 1110}, {'entity': 'I-ORG', 'score': 0.9994455, 'index': 376, 'word': 'Gloucestershire', 'start': 1113, 'end': 1128}, {'entity': 'I-PER', 'score': 0.999629, 'index': 383, 'word': 'J', 'start': 1145, 'end': 1146}, {'entity': 'I-PER', 'score': 0.9994917, 'index': 385, 'word': 'Russell', 'start': 1148, 'end': 1155}, {'entity': 'I-LOC', 'score': 0.9423624, 'index': 391, 'word': 'Northamptonshire', 'start': 1171, 'end': 1187}, {'entity': 'I-PER', 'score': 0.99586487, 'index': 394, 'word': 'K', 'start': 1194, 'end': 1195}, {'entity': 'I-PER', 'score': 0.9998486, 'index': 396, 'word': 'Curran', 'start': 1197, 'end': 1203}, {'entity': 'I-PER', 'score': 0.9988618, 'index': 399, 'word': 'A', 'start': 1209, 'end': 1210}, {'entity': 'I-PER', 'score': 0.9765072, 'index': 401, 'word': 'Smith', 'start': 1212, 'end': 1217}, {'entity': 'I-PER', 'score': 0.998814, 'index': 409, 'word': 'S', 'start': 1229, 'end': 1230}]
[{'entity': 'I-LOC', 'score': 0.9987047, 'index': 21, 'word': 'L', 'start': 39, 'end': 40}, {'entity': 'I-LOC', 'score': 0.99139833, 'index': 22, 'word': '##ON', 'start': 40, 'end': 42}, {'entity': 'I-LOC', 'score': 0.8620059, 'index': 23, 'word': '##D', 'start': 42, 'end': 43}, {'entity': 'I-LOC', 'score': 0.99670035, 'index': 24, 'word': '##ON', 'start': 43, 'end': 45}, {'entity': 'I-LOC', 'score': 0.9997117, 'index': 34, 'word': 'Australia', 'start': 62, 'end': 71}, {'entity': 'I-MISC', 'score': 0.9900663, 'index': 38, 'word': 'Ashes', 'start': 88, 'end': 93}, {'entity': 'I-LOC', 'score': 0.99974364, 'index': 50, 'word': 'England', 'start': 128, 'end': 135}, {'entity': 'I-ORG', 'score': 0.9899558, 'index': 69, 'word': 'Test', 'start': 201, 'end': 205}, {'entity': 'I-ORG', 'score': 0.705988, 'index': 70, 'word': 'and', 'start': 206, 'end': 209}, {'entity': 'I-ORG', 'score': 0.9983968, 'index': 71, 'word': 'County', 'start': 210, 'end': 216}, {'entity': 'I-ORG', 'score': 0.99383765, 'index': 72, 'word': 'Cricket', 'start': 217, 'end': 224}, {'entity': 'I-ORG', 'score': 0.9984799, 'index': 73, 'word': 'Board', 'start': 225, 'end': 230}, {'entity': 'I-LOC', 'score': 0.9997092, 'index': 86, 'word': 'Australia', 'start': 258, 'end': 267}, {'entity': 'I-MISC', 'score': 0.52167684, 'index': 132, 'word': 'S', 'start': 440, 'end': 441}, {'entity': 'I-MISC', 'score': 0.99905914, 'index': 134, 'word': 'English', 'start': 443, 'end': 450}, {'entity': 'I-MISC', 'score': 0.9493715, 'index': 140, 'word': 'British', 'start': 484, 'end': 491}, {'entity': 'I-ORG', 'score': 0.61634886, 'index': 156, 'word': 'Minor', 'start': 551, 'end': 556}, {'entity': 'I-ORG', 'score': 0.7142049, 'index': 157, 'word': 'Counties', 'start': 557, 'end': 565}, {'entity': 'I-LOC', 'score': 0.74350715, 'index': 161, 'word': 'S', 'start': 572, 'end': 573}, {'entity': 'I-LOC', 'score': 0.9995771, 'index': 163, 'word': 'Scotland', 'start': 575, 'end': 583}, {'entity': 'I-LOC', 'score': 0.99926525, 'index': 189, 'word': 'London', 'start': 639, 'end': 645}, {'entity': 'I-LOC', 'score': 0.9700244, 'index': 198, 'word': 'Lord', 'start': 670, 'end': 674}, {'entity': 'I-LOC', 'score': 0.9891093, 'index': 199, 'word': "'", 'start': 675, 'end': 676}, {'entity': 'I-LOC', 'score': 0.9678657, 'index': 200, 'word': 's', 'start': 676, 'end': 677}, {'entity': 'I-ORG', 'score': 0.9976057, 'index': 208, 'word': 'Duke', 'start': 692, 'end': 696}, {'entity': 'I-ORG', 'score': 0.9977836, 'index': 209, 'word': 'of', 'start': 697, 'end': 699}, {'entity': 'I-ORG', 'score': 0.99745375, 'index': 210, 'word': 'Norfolk', 'start': 700, 'end': 707}, {'entity': 'I-ORG', 'score': 0.9892625, 'index': 211, 'word': "'", 'start': 708, 'end': 709}, {'entity': 'I-ORG', 'score': 0.9931559, 'index': 212, 'word': 's', 'start': 709, 'end': 710}, {'entity': 'I-ORG', 'score': 0.9599942, 'index': 213, 'word': 'XI', 'start': 711, 'end': 713}, {'entity': 'I-LOC', 'score': 0.99754816, 'index': 216, 'word': 'A', 'start': 719, 'end': 720}, {'entity': 'I-LOC', 'score': 0.9742148, 'index': 217, 'word': '##run', 'start': 720, 'end': 723}, {'entity': 'I-LOC', 'score': 0.9970149, 'index': 218, 'word': '##del', 'start': 723, 'end': 726}, {'entity': 'I-ORG', 'score': 0.9956369, 'index': 227, 'word': 'Northampton', 'start': 743, 'end': 754}, {'entity': 'I-ORG', 'score': 0.9987895, 'index': 235, 'word': 'Worcestershire', 'start': 769, 'end': 783}, {'entity': 'I-ORG', 'score': 0.9977308, 'index': 243, 'word': 'Durham', 'start': 798, 'end': 804}, {'entity': 'I-LOC', 'score': 0.99732816, 'index': 257, 'word': 'Head', 'start': 850, 'end': 854}, {'entity': 'I-LOC', 'score': 0.98490095, 'index': 258, 'word': '##ing', 'start': 854, 'end': 857}, {'entity': 'I-LOC', 'score': 0.99610245, 'index': 259, 'word': '##ley', 'start': 857, 'end': 860}, {'entity': 'I-LOC', 'score': 0.9306145, 'index': 265, 'word': 'Leeds', 'start': 868, 'end': 873}, {'entity': 'I-LOC', 'score': 0.98935694, 'index': 280, 'word': 'The', 'start': 922, 'end': 925}, {'entity': 'I-LOC', 'score': 0.99786526, 'index': 281, 'word': 'Oval', 'start': 926, 'end': 930}, {'entity': 'I-LOC', 'score': 0.9980288, 'index': 287, 'word': 'London', 'start': 938, 'end': 944}, {'entity': 'I-LOC', 'score': 0.9950557, 'index': 302, 'word': 'Lord', 'start': 992, 'end': 996}, {'entity': 'I-LOC', 'score': 0.99490744, 'index': 303, 'word': "'", 'start': 997, 'end': 998}, {'entity': 'I-LOC', 'score': 0.99416286, 'index': 304, 'word': 's', 'start': 998, 'end': 999}, {'entity': 'I-LOC', 'score': 0.99907875, 'index': 306, 'word': 'London', 'start': 1002, 'end': 1008}, {'entity': 'I-ORG', 'score': 0.9987871, 'index': 317, 'word': 'Gloucestershire', 'start': 1028, 'end': 1043}, {'entity': 'I-ORG', 'score': 0.9982962, 'index': 319, 'word': 'Sussex', 'start': 1047, 'end': 1053}, {'entity': 'I-ORG', 'score': 0.9983968, 'index': 321, 'word': 'Surrey', 'start': 1057, 'end': 1063}, {'entity': 'I-ORG', 'score': 0.9983108, 'index': 340, 'word': 'Derbyshire', 'start': 1107, 'end': 1117}, {'entity': 'I-LOC', 'score': 0.9966001, 'index': 363, 'word': 'Ed', 'start': 1179, 'end': 1181}, {'entity': 'I-LOC', 'score': 0.9772372, 'index': 364, 'word': '##g', 'start': 1181, 'end': 1182}, {'entity': 'I-LOC', 'score': 0.99123853, 'index': 365, 'word': '##bas', 'start': 1182, 'end': 1185}, {'entity': 'I-LOC', 'score': 0.99556726, 'index': 366, 'word': '##ton', 'start': 1185, 'end': 1188}, {'entity': 'I-LOC', 'score': 0.99937767, 'index': 368, 'word': 'Birmingham', 'start': 1191, 'end': 1201}, {'entity': 'I-LOC', 'score': 0.56055105, 'index': 390, 'word': 'S', 'start': 1265, 'end': 1266}, {'entity': 'I-ORG', 'score': 0.9908428, 'index': 397, 'word': 'Leicestershire', 'start': 1281, 'end': 1295}, {'entity': 'I-LOC', 'score': 0.7768228, 'index': 414, 'word': 'Lord', 'start': 1344, 'end': 1348}, {'entity': 'I-MISC', 'score': 0.6473319, 'index': 427, 'word': 'British', 'start': 1372, 'end': 1379}, {'entity': 'I-ORG', 'score': 0.97812027, 'index': 431, 'word': 'Oxford', 'start': 1398, 'end': 1404}, {'entity': 'I-ORG', 'score': 0.99740857, 'index': 445, 'word': 'Hampshire', 'start': 1438, 'end': 1447}, {'entity': 'I-ORG', 'score': 0.9381897, 'index': 467, 'word': 'Old', 'start': 1503, 'end': 1506}, {'entity': 'I-LOC', 'score': 0.6042756, 'index': 469, 'word': '##rafford', 'start': 1508, 'end': 1515}, {'entity': 'I-LOC', 'score': 0.88743323, 'index': 471, 'word': 'Manchester', 'start': 1518, 'end': 1528}, {'entity': 'I-ORG', 'score': 0.507739, 'index': 480, 'word': 'Minor', 'start': 1545, 'end': 1550}, {'entity': 'I-ORG', 'score': 0.44220212, 'index': 481, 'word': 'Counties', 'start': 1551, 'end': 1559}, {'entity': 'I-ORG', 'score': 0.96962756, 'index': 482, 'word': 'XI', 'start': 1560, 'end': 1562}, {'entity': 'I-LOC', 'score': 0.9948643, 'index': 490, 'word': 'Scotland', 'start': 1578, 'end': 1586}, {'entity': 'I-ORG', 'score': 0.9956975, 'index': 500, 'word': 'Glamorgan', 'start': 1605, 'end': 1614}]
[{'entity': 'I-PER', 'score': 0.98225546, 'index': 6, 'word': 'SH', 'start': 9, 'end': 11}, {'entity': 'I-PER', 'score': 0.44956607, 'index': 7, 'word': '##EA', 'start': 11, 'end': 13}, {'entity': 'I-PER', 'score': 0.58065873, 'index': 8, 'word': '##RE', 'start': 13, 'end': 15}, {'entity': 'I-PER', 'score': 0.571253, 'index': 9, 'word': '##R', 'start': 15, 'end': 16}, {'entity': 'I-LOC', 'score': 0.9988136, 'index': 14, 'word': 'E', 'start': 26, 'end': 27}, {'entity': 'I-LOC', 'score': 0.99313474, 'index': 15, 'word': '##NG', 'start': 27, 'end': 29}, {'entity': 'I-LOC', 'score': 0.98500246, 'index': 16, 'word': '##LA', 'start': 29, 'end': 31}, {'entity': 'I-LOC', 'score': 0.998198, 'index': 17, 'word': '##ND', 'start': 31, 'end': 33}, {'entity': 'I-LOC', 'score': 0.9990025, 'index': 27, 'word': 'L', 'start': 49, 'end': 50}, {'entity': 'I-LOC', 'score': 0.99729306, 'index': 28, 'word': '##ON', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.94670254, 'index': 29, 'word': '##D', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.99831843, 'index': 30, 'word': '##ON', 'start': 53, 'end': 55}, {'entity': 'I-PER', 'score': 0.99964905, 'index': 47, 'word': 'Alan', 'start': 106, 'end': 110}, {'entity': 'I-PER', 'score': 0.9996978, 'index': 48, 'word': 'Shea', 'start': 111, 'end': 115}, {'entity': 'I-PER', 'score': 0.99961984, 'index': 49, 'word': '##rer', 'start': 115, 'end': 118}, {'entity': 'I-LOC', 'score': 0.99965096, 'index': 55, 'word': 'England', 'start': 140, 'end': 147}, {'entity': 'I-ORG', 'score': 0.99851114, 'index': 73, 'word': 'Newcastle', 'start': 202, 'end': 211}, {'entity': 'I-PER', 'score': 0.99959916, 'index': 92, 'word': 'Tony', 'start': 280, 'end': 284}, {'entity': 'I-PER', 'score': 0.9998479, 'index': 93, 'word': 'Adams', 'start': 285, 'end': 290}, {'entity': 'I-MISC', 'score': 0.99899167, 'index': 101, 'word': 'European', 'start': 321, 'end': 329}, {'entity': 'I-PER', 'score': 0.999647, 'index': 109, 'word': 'David', 'start': 372, 'end': 377}, {'entity': 'I-PER', 'score': 0.9997619, 'index': 110, 'word': 'P', 'start': 378, 'end': 379}, {'entity': 'I-PER', 'score': 0.99963474, 'index': 111, 'word': '##latt', 'start': 379, 'end': 383}, {'entity': 'I-PER', 'score': 0.99977285, 'index': 117, 'word': 'Adams', 'start': 391, 'end': 396}, {'entity': 'I-PER', 'score': 0.9996761, 'index': 119, 'word': 'P', 'start': 401, 'end': 402}, {'entity': 'I-PER', 'score': 0.9963419, 'index': 120, 'word': '##latt', 'start': 402, 'end': 406}, {'entity': 'I-LOC', 'score': 0.99970406, 'index': 127, 'word': 'England', 'start': 438, 'end': 445}, {'entity': 'I-MISC', 'score': 0.9909018, 'index': 131, 'word': 'World', 'start': 457, 'end': 462}, {'entity': 'I-MISC', 'score': 0.9982198, 'index': 132, 'word': 'Cup', 'start': 463, 'end': 466}, {'entity': 'I-LOC', 'score': 0.9998385, 'index': 135, 'word': 'Moldova', 'start': 485, 'end': 492}, {'entity': 'I-PER', 'score': 0.99966836, 'index': 143, 'word': 'Shea', 'start': 510, 'end': 514}, {'entity': 'I-PER', 'score': 0.9987626, 'index': 144, 'word': '##rer', 'start': 514, 'end': 517}, {'entity': 'I-PER', 'score': 0.9993488, 'index': 157, 'word': 'Glenn', 'start': 571, 'end': 576}, {'entity': 'I-PER', 'score': 0.9993748, 'index': 158, 'word': 'Ho', 'start': 577, 'end': 579}, {'entity': 'I-PER', 'score': 0.99850476, 'index': 159, 'word': '##ddle', 'start': 579, 'end': 583}, {'entity': 'I-ORG', 'score': 0.9991636, 'index': 168, 'word': 'Blackburn', 'start': 621, 'end': 630}, {'entity': 'I-ORG', 'score': 0.99904674, 'index': 170, 'word': 'Southampton', 'start': 635, 'end': 646}, {'entity': 'I-PER', 'score': 0.9996246, 'index': 204, 'word': 'Alan', 'start': 745, 'end': 749}, {'entity': 'I-PER', 'score': 0.99904937, 'index': 213, 'word': 'Ho', 'start': 777, 'end': 779}, {'entity': 'I-PER', 'score': 0.9938651, 'index': 214, 'word': '##ddle', 'start': 779, 'end': 783}, {'entity': 'I-PER', 'score': 0.9996996, 'index': 238, 'word': 'Alan', 'start': 873, 'end': 877}, {'entity': 'I-PER', 'score': 0.99956506, 'index': 312, 'word': 'Shea', 'start': 1172, 'end': 1176}, {'entity': 'I-PER', 'score': 0.9956273, 'index': 313, 'word': '##rer', 'start': 1176, 'end': 1179}, {'entity': 'I-MISC', 'score': 0.99789125, 'index': 316, 'word': 'Euro', 'start': 1183, 'end': 1187}, {'entity': 'I-MISC', 'score': 0.9977755, 'index': 317, 'word': '96', 'start': 1188, 'end': 1190}, {'entity': 'I-PER', 'score': 0.9995055, 'index': 320, 'word': 'Teddy', 'start': 1208, 'end': 1213}, {'entity': 'I-PER', 'score': 0.9996753, 'index': 321, 'word': 'She', 'start': 1214, 'end': 1217}, {'entity': 'I-PER', 'score': 0.9701672, 'index': 322, 'word': '##ring', 'start': 1217, 'end': 1221}, {'entity': 'I-PER', 'score': 0.9991273, 'index': 323, 'word': '##ham', 'start': 1221, 'end': 1224}, {'entity': 'I-PER', 'score': 0.99952376, 'index': 344, 'word': 'Shea', 'start': 1313, 'end': 1317}, {'entity': 'I-PER', 'score': 0.9939277, 'index': 345, 'word': '##rer', 'start': 1317, 'end': 1320}, {'entity': 'I-ORG', 'score': 0.9980933, 'index': 348, 'word': 'Newcastle', 'start': 1324, 'end': 1333}, {'entity': 'I-PER', 'score': 0.9992853, 'index': 351, 'word': 'Les', 'start': 1344, 'end': 1347}, {'entity': 'I-PER', 'score': 0.9997751, 'index': 352, 'word': 'Ferdinand', 'start': 1348, 'end': 1357}]
[{'entity': 'I-MISC', 'score': 0.69433707, 'index': 8, 'word': 'IN', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.9977355, 'index': 28, 'word': 'B', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9720457, 'index': 29, 'word': '##EL', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.9800397, 'index': 30, 'word': '##GR', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9510176, 'index': 31, 'word': '##AD', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9954674, 'index': 32, 'word': '##E', 'start': 59, 'end': 60}, {'entity': 'I-MISC', 'score': 0.67025036, 'index': 50, 'word': 'S', 'start': 106, 'end': 107}, {'entity': 'I-ORG', 'score': 0.99898285, 'index': 61, 'word': 'Red', 'start': 148, 'end': 151}, {'entity': 'I-ORG', 'score': 0.99877375, 'index': 62, 'word': 'Star', 'start': 152, 'end': 156}, {'entity': 'I-LOC', 'score': 0.99980396, 'index': 64, 'word': 'Yugoslavia', 'start': 159, 'end': 169}, {'entity': 'I-ORG', 'score': 0.99583733, 'index': 67, 'word': 'Dinamo', 'start': 177, 'end': 183}, {'entity': 'I-LOC', 'score': 0.99982125, 'index': 69, 'word': 'Russia', 'start': 186, 'end': 192}]
[{'entity': 'I-LOC', 'score': 0.99305433, 'index': 6, 'word': 'ROM', 'start': 9, 'end': 12}, {'entity': 'I-LOC', 'score': 0.98325884, 'index': 7, 'word': '##AN', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.99685884, 'index': 8, 'word': '##IA', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.9973767, 'index': 12, 'word': 'L', 'start': 22, 'end': 23}, {'entity': 'I-LOC', 'score': 0.99280703, 'index': 13, 'word': '##IT', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.984233, 'index': 14, 'word': '##H', 'start': 25, 'end': 26}, {'entity': 'I-LOC', 'score': 0.98745626, 'index': 15, 'word': '##U', 'start': 26, 'end': 27}, {'entity': 'I-LOC', 'score': 0.9725461, 'index': 16, 'word': '##AN', 'start': 27, 'end': 29}, {'entity': 'I-LOC', 'score': 0.9966138, 'index': 17, 'word': '##IA', 'start': 29, 'end': 31}, {'entity': 'I-LOC', 'score': 0.99632204, 'index': 32, 'word': 'B', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.86309165, 'index': 33, 'word': '##UC', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9240059, 'index': 34, 'word': '##HA', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9174952, 'index': 35, 'word': '##RE', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9875959, 'index': 36, 'word': '##ST', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.9998109, 'index': 46, 'word': 'Romania', 'start': 83, 'end': 90}, {'entity': 'I-LOC', 'score': 0.99981004, 'index': 48, 'word': 'Lithuania', 'start': 96, 'end': 105}, {'entity': 'I-MISC', 'score': 0.9986325, 'index': 60, 'word': 'European', 'start': 136, 'end': 144}, {'entity': 'I-LOC', 'score': 0.99933964, 'index': 80, 'word': 'Romania', 'start': 199, 'end': 206}, {'entity': 'I-PER', 'score': 0.9996309, 'index': 82, 'word': 'Co', 'start': 209, 'end': 211}, {'entity': 'I-PER', 'score': 0.99882144, 'index': 83, 'word': '##sm', 'start': 211, 'end': 213}, {'entity': 'I-PER', 'score': 0.9992625, 'index': 84, 'word': '##in', 'start': 213, 'end': 215}, {'entity': 'I-PER', 'score': 0.9989121, 'index': 85, 'word': 'Con', 'start': 216, 'end': 219}, {'entity': 'I-PER', 'score': 0.99588263, 'index': 86, 'word': '##tra', 'start': 219, 'end': 222}, {'entity': 'I-PER', 'score': 0.99955696, 'index': 91, 'word': 'Mi', 'start': 234, 'end': 236}, {'entity': 'I-PER', 'score': 0.9992207, 'index': 92, 'word': '##hai', 'start': 236, 'end': 239}, {'entity': 'I-PER', 'score': 0.9994615, 'index': 93, 'word': 'Tara', 'start': 240, 'end': 244}, {'entity': 'I-PER', 'score': 0.9854117, 'index': 94, 'word': '##rac', 'start': 244, 'end': 247}, {'entity': 'I-PER', 'score': 0.99508387, 'index': 95, 'word': '##he', 'start': 247, 'end': 249}, {'entity': 'I-LOC', 'score': 0.99770665, 'index': 104, 'word': 'Lithuania', 'start': 264, 'end': 273}, {'entity': 'I-PER', 'score': 0.999027, 'index': 106, 'word': 'Dani', 'start': 276, 'end': 280}, {'entity': 'I-PER', 'score': 0.99918133, 'index': 107, 'word': '##us', 'start': 280, 'end': 282}, {'entity': 'I-PER', 'score': 0.99974877, 'index': 108, 'word': 'G', 'start': 283, 'end': 284}, {'entity': 'I-PER', 'score': 0.99622786, 'index': 109, 'word': '##lev', 'start': 284, 'end': 287}, {'entity': 'I-PER', 'score': 0.99668545, 'index': 110, 'word': '##eck', 'start': 287, 'end': 290}, {'entity': 'I-PER', 'score': 0.9889581, 'index': 111, 'word': '##as', 'start': 290, 'end': 292}]
[{'entity': 'I-PER', 'score': 0.84612, 'index': 6, 'word': 'R', 'start': 9, 'end': 10}, {'entity': 'I-ORG', 'score': 0.8273409, 'index': 7, 'word': '##OT', 'start': 10, 'end': 12}, {'entity': 'I-ORG', 'score': 0.6720804, 'index': 8, 'word': '##OR', 'start': 12, 'end': 14}, {'entity': 'I-PER', 'score': 0.62624615, 'index': 20, 'word': 'V', 'start': 37, 'end': 38}, {'entity': 'I-LOC', 'score': 0.57894254, 'index': 21, 'word': '##OL', 'start': 38, 'end': 40}, {'entity': 'I-LOC', 'score': 0.35249323, 'index': 22, 'word': '##G', 'start': 40, 'end': 41}, {'entity': 'I-LOC', 'score': 0.99910504, 'index': 35, 'word': 'M', 'start': 63, 'end': 64}, {'entity': 'I-LOC', 'score': 0.99219316, 'index': 36, 'word': '##OS', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.9742329, 'index': 37, 'word': '##CO', 'start': 66, 'end': 68}, {'entity': 'I-LOC', 'score': 0.9964462, 'index': 38, 'word': '##W', 'start': 68, 'end': 69}, {'entity': 'I-ORG', 'score': 0.9982039, 'index': 48, 'word': 'R', 'start': 86, 'end': 87}, {'entity': 'I-ORG', 'score': 0.99835086, 'index': 49, 'word': '##oto', 'start': 87, 'end': 90}, {'entity': 'I-ORG', 'score': 0.9986052, 'index': 50, 'word': '##r', 'start': 90, 'end': 91}, {'entity': 'I-ORG', 'score': 0.9990258, 'index': 51, 'word': 'Vol', 'start': 92, 'end': 95}, {'entity': 'I-ORG', 'score': 0.96931094, 'index': 52, 'word': '##go', 'start': 95, 'end': 97}, {'entity': 'I-ORG', 'score': 0.99340844, 'index': 53, 'word': '##grad', 'start': 97, 'end': 101}, {'entity': 'I-ORG', 'score': 0.9993777, 'index': 70, 'word': 'Dynamo', 'start': 193, 'end': 199}, {'entity': 'I-ORG', 'score': 0.9987564, 'index': 71, 'word': 'Moscow', 'start': 200, 'end': 206}, {'entity': 'I-ORG', 'score': 0.9970381, 'index': 84, 'word': 'R', 'start': 263, 'end': 264}, {'entity': 'I-ORG', 'score': 0.99700457, 'index': 85, 'word': '##oto', 'start': 264, 'end': 267}, {'entity': 'I-ORG', 'score': 0.9976979, 'index': 86, 'word': '##r', 'start': 267, 'end': 268}, {'entity': 'I-MISC', 'score': 0.9990031, 'index': 103, 'word': 'Russian', 'start': 325, 'end': 332}, {'entity': 'I-PER', 'score': 0.9995578, 'index': 110, 'word': 'Ana', 'start': 368, 'end': 371}, {'entity': 'I-PER', 'score': 0.9983621, 'index': 111, 'word': '##to', 'start': 371, 'end': 373}, {'entity': 'I-PER', 'score': 0.99921465, 'index': 112, 'word': '##ly', 'start': 373, 'end': 375}, {'entity': 'I-PER', 'score': 0.99971074, 'index': 113, 'word': 'Go', 'start': 376, 'end': 378}, {'entity': 'I-PER', 'score': 0.9184673, 'index': 114, 'word': '##rok', 'start': 378, 'end': 381}, {'entity': 'I-PER', 'score': 0.9879358, 'index': 115, 'word': '##hov', 'start': 381, 'end': 384}, {'entity': 'I-PER', 'score': 0.99047613, 'index': 116, 'word': '##sky', 'start': 384, 'end': 387}, {'entity': 'I-ORG', 'score': 0.99717724, 'index': 122, 'word': 'R', 'start': 410, 'end': 411}, {'entity': 'I-ORG', 'score': 0.995817, 'index': 123, 'word': '##oto', 'start': 411, 'end': 414}, {'entity': 'I-ORG', 'score': 0.9939476, 'index': 124, 'word': '##r', 'start': 414, 'end': 415}, {'entity': 'I-ORG', 'score': 0.99570626, 'index': 127, 'word': 'La', 'start': 427, 'end': 429}, {'entity': 'I-ORG', 'score': 0.99840766, 'index': 128, 'word': '##da', 'start': 429, 'end': 431}, {'entity': 'I-ORG', 'score': 0.99727625, 'index': 129, 'word': 'To', 'start': 432, 'end': 434}, {'entity': 'I-ORG', 'score': 0.85730845, 'index': 130, 'word': '##glia', 'start': 434, 'end': 438}, {'entity': 'I-ORG', 'score': 0.99582666, 'index': 131, 'word': '##tti', 'start': 438, 'end': 441}, {'entity': 'I-ORG', 'score': 0.9995415, 'index': 148, 'word': 'Manchester', 'start': 499, 'end': 509}, {'entity': 'I-ORG', 'score': 0.9995875, 'index': 149, 'word': 'United', 'start': 510, 'end': 516}, {'entity': 'I-MISC', 'score': 0.994588, 'index': 156, 'word': 'UEFA', 'start': 537, 'end': 541}, {'entity': 'I-MISC', 'score': 0.9960602, 'index': 157, 'word': 'Cup', 'start': 542, 'end': 545}, {'entity': 'I-ORG', 'score': 0.99814117, 'index': 174, 'word': 'R', 'start': 595, 'end': 596}, {'entity': 'I-ORG', 'score': 0.9969446, 'index': 175, 'word': '##oto', 'start': 596, 'end': 599}, {'entity': 'I-ORG', 'score': 0.9969568, 'index': 176, 'word': '##r', 'start': 599, 'end': 600}, {'entity': 'I-ORG', 'score': 0.9967872, 'index': 198, 'word': 'Alan', 'start': 692, 'end': 696}, {'entity': 'I-ORG', 'score': 0.9987998, 'index': 199, 'word': '##ia', 'start': 696, 'end': 698}, {'entity': 'I-ORG', 'score': 0.9991098, 'index': 203, 'word': 'Dynamo', 'start': 714, 'end': 720}, {'entity': 'I-ORG', 'score': 0.99817955, 'index': 204, 'word': 'Moscow', 'start': 721, 'end': 727}, {'entity': 'I-LOC', 'score': 0.6590022, 'index': 207, 'word': 'Vol', 'start': 734, 'end': 737}, {'entity': 'I-LOC', 'score': 0.86272997, 'index': 208, 'word': '##go', 'start': 737, 'end': 739}, {'entity': 'I-LOC', 'score': 0.6830527, 'index': 209, 'word': '##grad', 'start': 739, 'end': 743}, {'entity': 'I-LOC', 'score': 0.99694073, 'index': 223, 'word': 'Moscow', 'start': 803, 'end': 809}]
[{'entity': 'I-LOC', 'score': 0.87908435, 'index': 5, 'word': 'PA', 'start': 9, 'end': 11}, {'entity': 'I-ORG', 'score': 0.33439338, 'index': 6, 'word': '##NA', 'start': 11, 'end': 13}, {'entity': 'I-ORG', 'score': 0.36400834, 'index': 7, 'word': '##MA', 'start': 13, 'end': 15}, {'entity': 'I-PER', 'score': 0.9827036, 'index': 10, 'word': 'R', 'start': 19, 'end': 20}, {'entity': 'I-PER', 'score': 0.7663892, 'index': 11, 'word': '##O', 'start': 20, 'end': 21}, {'entity': 'I-PER', 'score': 0.8088278, 'index': 12, 'word': '##BE', 'start': 21, 'end': 23}, {'entity': 'I-PER', 'score': 0.80376846, 'index': 13, 'word': '##RT', 'start': 23, 'end': 25}, {'entity': 'I-PER', 'score': 0.95347923, 'index': 14, 'word': '##O', 'start': 25, 'end': 26}, {'entity': 'I-PER', 'score': 0.67299354, 'index': 15, 'word': 'D', 'start': 27, 'end': 28}, {'entity': 'I-LOC', 'score': 0.36075452, 'index': 16, 'word': '##UR', 'start': 28, 'end': 30}, {'entity': 'I-PER', 'score': 0.4826774, 'index': 17, 'word': '##AN', 'start': 30, 'end': 32}, {'entity': 'I-MISC', 'score': 0.5165748, 'index': 23, 'word': 'SA', 'start': 44, 'end': 46}, {'entity': 'I-LOC', 'score': 0.9966018, 'index': 35, 'word': 'PA', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.93936634, 'index': 36, 'word': '##NA', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.9952005, 'index': 37, 'word': '##MA', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.99729496, 'index': 38, 'word': 'C', 'start': 72, 'end': 73}, {'entity': 'I-LOC', 'score': 0.99013686, 'index': 39, 'word': '##IT', 'start': 73, 'end': 75}, {'entity': 'I-LOC', 'score': 0.99815613, 'index': 40, 'word': '##Y', 'start': 75, 'end': 76}, {'entity': 'I-MISC', 'score': 0.9616971, 'index': 50, 'word': 'Panama', 'start': 93, 'end': 99}, {'entity': 'I-MISC', 'score': 0.99597955, 'index': 51, 'word': '##nian', 'start': 99, 'end': 103}, {'entity': 'I-PER', 'score': 0.99941266, 'index': 54, 'word': 'Roberto', 'start': 118, 'end': 125}, {'entity': 'I-PER', 'score': 0.9977174, 'index': 56, 'word': 'Hands', 'start': 128, 'end': 133}, {'entity': 'I-PER', 'score': 0.9354639, 'index': 57, 'word': 'of', 'start': 134, 'end': 136}, {'entity': 'I-PER', 'score': 0.9920476, 'index': 58, 'word': 'Stone', 'start': 137, 'end': 142}, {'entity': 'I-PER', 'score': 0.99969184, 'index': 60, 'word': 'Du', 'start': 145, 'end': 147}, {'entity': 'I-PER', 'score': 0.9991708, 'index': 61, 'word': '##ran', 'start': 147, 'end': 150}, {'entity': 'I-PER', 'score': 0.9996985, 'index': 85, 'word': 'Du', 'start': 249, 'end': 251}, {'entity': 'I-PER', 'score': 0.9994659, 'index': 86, 'word': '##ran', 'start': 251, 'end': 254}, {'entity': 'I-MISC', 'score': 0.9984919, 'index': 95, 'word': 'Mexican', 'start': 284, 'end': 291}, {'entity': 'I-PER', 'score': 0.9991035, 'index': 96, 'word': 'Ariel', 'start': 292, 'end': 297}, {'entity': 'I-PER', 'score': 0.9997353, 'index': 97, 'word': 'Cruz', 'start': 298, 'end': 302}, {'entity': 'I-LOC', 'score': 0.99944943, 'index': 111, 'word': 'Panama', 'start': 352, 'end': 358}, {'entity': 'I-LOC', 'score': 0.99955267, 'index': 112, 'word': 'City', 'start': 359, 'end': 363}, {'entity': 'I-PER', 'score': 0.9995944, 'index': 121, 'word': 'Du', 'start': 383, 'end': 385}, {'entity': 'I-PER', 'score': 0.9976683, 'index': 122, 'word': '##ran', 'start': 385, 'end': 388}, {'entity': 'I-MISC', 'score': 0.9835262, 'index': 140, 'word': 'Return', 'start': 456, 'end': 462}, {'entity': 'I-MISC', 'score': 0.98293304, 'index': 141, 'word': 'of', 'start': 463, 'end': 465}, {'entity': 'I-MISC', 'score': 0.93967956, 'index': 142, 'word': 'the', 'start': 466, 'end': 469}, {'entity': 'I-MISC', 'score': 0.85300577, 'index': 143, 'word': 'Legend', 'start': 470, 'end': 476}, {'entity': 'I-PER', 'score': 0.999605, 'index': 146, 'word': 'Du', 'start': 483, 'end': 485}, {'entity': 'I-PER', 'score': 0.99774396, 'index': 147, 'word': '##ran', 'start': 485, 'end': 488}, {'entity': 'I-PER', 'score': 0.99965405, 'index': 199, 'word': 'Du', 'start': 640, 'end': 642}, {'entity': 'I-PER', 'score': 0.9967303, 'index': 200, 'word': '##ran', 'start': 642, 'end': 645}, {'entity': 'I-ORG', 'score': 0.9993661, 'index': 202, 'word': 'Re', 'start': 651, 'end': 653}, {'entity': 'I-ORG', 'score': 0.9931085, 'index': 203, 'word': '##uters', 'start': 653, 'end': 658}, {'entity': 'I-ORG', 'score': 0.5431111, 'index': 301, 'word': 'Panama', 'start': 1065, 'end': 1071}, {'entity': 'I-ORG', 'score': 0.80466527, 'index': 302, 'word': '##nian', 'start': 1071, 'end': 1075}, {'entity': 'I-ORG', 'score': 0.97713065, 'index': 303, 'word': 'Boxing', 'start': 1076, 'end': 1082}, {'entity': 'I-ORG', 'score': 0.9891509, 'index': 304, 'word': 'Association', 'start': 1083, 'end': 1094}, {'entity': 'I-PER', 'score': 0.998836, 'index': 306, 'word': 'Ramon', 'start': 1105, 'end': 1110}, {'entity': 'I-PER', 'score': 0.99792874, 'index': 307, 'word': 'Man', 'start': 1111, 'end': 1114}, {'entity': 'I-PER', 'score': 0.91570383, 'index': 308, 'word': '##zan', 'start': 1114, 'end': 1117}, {'entity': 'I-PER', 'score': 0.99694073, 'index': 309, 'word': '##ares', 'start': 1117, 'end': 1121}, {'entity': 'I-PER', 'score': 0.99967074, 'index': 316, 'word': 'Du', 'start': 1134, 'end': 1136}, {'entity': 'I-PER', 'score': 0.99856323, 'index': 317, 'word': '##ran', 'start': 1136, 'end': 1139}, {'entity': 'I-LOC', 'score': 0.9997279, 'index': 343, 'word': 'Puerto', 'start': 1248, 'end': 1254}, {'entity': 'I-LOC', 'score': 0.99956876, 'index': 344, 'word': 'Rico', 'start': 1255, 'end': 1259}, {'entity': 'I-PER', 'score': 0.99933726, 'index': 347, 'word': 'Hector', 'start': 1263, 'end': 1269}, {'entity': 'I-PER', 'score': 0.9996158, 'index': 349, 'word': 'Mac', 'start': 1272, 'end': 1275}, {'entity': 'I-PER', 'score': 0.9976981, 'index': 350, 'word': '##ho', 'start': 1275, 'end': 1277}, {'entity': 'I-PER', 'score': 0.929783, 'index': 351, 'word': '"', 'start': 1278, 'end': 1279}, {'entity': 'I-PER', 'score': 0.9995098, 'index': 352, 'word': 'Cam', 'start': 1280, 'end': 1283}, {'entity': 'I-PER', 'score': 0.9938518, 'index': 353, 'word': '##ach', 'start': 1283, 'end': 1286}, {'entity': 'I-PER', 'score': 0.99927765, 'index': 354, 'word': '##o', 'start': 1286, 'end': 1287}, {'entity': 'I-PER', 'score': 0.9997584, 'index': 360, 'word': 'Cam', 'start': 1295, 'end': 1298}, {'entity': 'I-PER', 'score': 0.9861541, 'index': 361, 'word': '##ach', 'start': 1298, 'end': 1301}, {'entity': 'I-PER', 'score': 0.99044716, 'index': 362, 'word': '##o', 'start': 1301, 'end': 1302}, {'entity': 'I-MISC', 'score': 0.9514834, 'index': 370, 'word': 'Panama', 'start': 1352, 'end': 1358}, {'entity': 'I-MISC', 'score': 0.99544734, 'index': 371, 'word': '##nian', 'start': 1358, 'end': 1362}, {'entity': 'I-LOC', 'score': 0.9987494, 'index': 373, 'word': 'Atlantic', 'start': 1366, 'end': 1374}, {'entity': 'I-LOC', 'score': 0.9996294, 'index': 374, 'word': 'City', 'start': 1375, 'end': 1379}, {'entity': 'I-ORG', 'score': 0.42209968, 'index': 384, 'word': 'S', 'start': 1409, 'end': 1410}]
[{'entity': 'I-MISC', 'score': 0.9957021, 'index': 7, 'word': 'H', 'start': 9, 'end': 10}, {'entity': 'I-MISC', 'score': 0.9244655, 'index': 8, 'word': '##ON', 'start': 10, 'end': 12}, {'entity': 'I-MISC', 'score': 0.99713266, 'index': 9, 'word': '##G', 'start': 12, 'end': 13}, {'entity': 'I-MISC', 'score': 0.9971015, 'index': 10, 'word': 'K', 'start': 14, 'end': 15}, {'entity': 'I-MISC', 'score': 0.93324625, 'index': 11, 'word': '##ON', 'start': 15, 'end': 17}, {'entity': 'I-MISC', 'score': 0.99653083, 'index': 12, 'word': '##G', 'start': 17, 'end': 18}, {'entity': 'I-MISC', 'score': 0.99724305, 'index': 13, 'word': 'O', 'start': 19, 'end': 20}, {'entity': 'I-MISC', 'score': 0.9812003, 'index': 14, 'word': '##P', 'start': 20, 'end': 21}, {'entity': 'I-MISC', 'score': 0.90562695, 'index': 15, 'word': '##EN', 'start': 21, 'end': 23}, {'entity': 'I-LOC', 'score': 0.99869496, 'index': 35, 'word': 'H', 'start': 53, 'end': 54}, {'entity': 'I-LOC', 'score': 0.99051964, 'index': 36, 'word': '##ON', 'start': 54, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9974324, 'index': 37, 'word': '##G', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9994035, 'index': 38, 'word': 'K', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9876511, 'index': 39, 'word': '##ON', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9987305, 'index': 40, 'word': '##G', 'start': 61, 'end': 62}, {'entity': 'I-MISC', 'score': 0.99794585, 'index': 56, 'word': 'Hong', 'start': 108, 'end': 112}, {'entity': 'I-MISC', 'score': 0.9981603, 'index': 57, 'word': 'Kong', 'start': 113, 'end': 117}, {'entity': 'I-MISC', 'score': 0.9974356, 'index': 58, 'word': 'Open', 'start': 118, 'end': 122}, {'entity': 'I-PER', 'score': 0.99979645, 'index': 71, 'word': 'Jan', 'start': 173, 'end': 176}, {'entity': 'I-PER', 'score': 0.99976724, 'index': 72, 'word': '##sher', 'start': 176, 'end': 180}, {'entity': 'I-PER', 'score': 0.9998505, 'index': 73, 'word': 'Khan', 'start': 181, 'end': 185}, {'entity': 'I-LOC', 'score': 0.9998872, 'index': 75, 'word': 'Pakistan', 'start': 188, 'end': 196}, {'entity': 'I-PER', 'score': 0.99981004, 'index': 78, 'word': 'Mark', 'start': 204, 'end': 208}, {'entity': 'I-PER', 'score': 0.99984086, 'index': 79, 'word': 'Cairns', 'start': 209, 'end': 215}, {'entity': 'I-LOC', 'score': 0.99986446, 'index': 81, 'word': 'England', 'start': 218, 'end': 225}, {'entity': 'I-PER', 'score': 0.99982363, 'index': 96, 'word': 'Anthony', 'start': 249, 'end': 256}, {'entity': 'I-PER', 'score': 0.99984336, 'index': 97, 'word': 'Hill', 'start': 257, 'end': 261}, {'entity': 'I-LOC', 'score': 0.9998474, 'index': 99, 'word': 'Australia', 'start': 264, 'end': 273}, {'entity': 'I-PER', 'score': 0.9998135, 'index': 102, 'word': 'Dan', 'start': 281, 'end': 284}, {'entity': 'I-PER', 'score': 0.9998072, 'index': 103, 'word': 'Jen', 'start': 285, 'end': 288}, {'entity': 'I-PER', 'score': 0.99974173, 'index': 104, 'word': '##son', 'start': 288, 'end': 291}, {'entity': 'I-LOC', 'score': 0.9998442, 'index': 106, 'word': 'Australia', 'start': 294, 'end': 303}, {'entity': 'I-PER', 'score': 0.99980694, 'index': 126, 'word': 'Peter', 'start': 337, 'end': 342}, {'entity': 'I-PER', 'score': 0.99981314, 'index': 127, 'word': 'Nico', 'start': 343, 'end': 347}, {'entity': 'I-PER', 'score': 0.9996271, 'index': 128, 'word': '##l', 'start': 347, 'end': 348}, {'entity': 'I-LOC', 'score': 0.9998692, 'index': 130, 'word': 'Scotland', 'start': 351, 'end': 359}, {'entity': 'I-PER', 'score': 0.999772, 'index': 135, 'word': 'Chris', 'start': 371, 'end': 376}, {'entity': 'I-PER', 'score': 0.99982506, 'index': 136, 'word': 'Walker', 'start': 377, 'end': 383}, {'entity': 'I-LOC', 'score': 0.99987185, 'index': 138, 'word': 'England', 'start': 386, 'end': 393}, {'entity': 'I-PER', 'score': 0.99979085, 'index': 158, 'word': 'Rodney', 'start': 427, 'end': 433}, {'entity': 'I-PER', 'score': 0.99973756, 'index': 159, 'word': 'E', 'start': 434, 'end': 435}, {'entity': 'I-PER', 'score': 0.99916923, 'index': 160, 'word': '##yle', 'start': 435, 'end': 438}, {'entity': 'I-PER', 'score': 0.99964845, 'index': 161, 'word': '##s', 'start': 438, 'end': 439}, {'entity': 'I-LOC', 'score': 0.99986434, 'index': 163, 'word': 'Australia', 'start': 442, 'end': 451}, {'entity': 'I-PER', 'score': 0.9998186, 'index': 166, 'word': 'Derek', 'start': 459, 'end': 464}, {'entity': 'I-PER', 'score': 0.9998499, 'index': 167, 'word': 'Ryan', 'start': 465, 'end': 469}, {'entity': 'I-LOC', 'score': 0.9998871, 'index': 169, 'word': 'Ireland', 'start': 472, 'end': 479}]
[{'entity': 'I-MISC', 'score': 0.99208164, 'index': 12, 'word': 'S', 'start': 20, 'end': 21}, {'entity': 'I-MISC', 'score': 0.79522526, 'index': 13, 'word': '##O', 'start': 21, 'end': 22}, {'entity': 'I-MISC', 'score': 0.9414306, 'index': 15, 'word': '##H', 'start': 24, 'end': 25}, {'entity': 'I-MISC', 'score': 0.99639857, 'index': 16, 'word': 'K', 'start': 26, 'end': 27}, {'entity': 'I-MISC', 'score': 0.97490984, 'index': 17, 'word': '##OR', 'start': 27, 'end': 29}, {'entity': 'I-MISC', 'score': 0.98364085, 'index': 18, 'word': '##EA', 'start': 29, 'end': 31}, {'entity': 'I-MISC', 'score': 0.9917955, 'index': 19, 'word': '##N', 'start': 31, 'end': 32}, {'entity': 'I-MISC', 'score': 0.9991111, 'index': 50, 'word': 'South', 'start': 90, 'end': 95}, {'entity': 'I-MISC', 'score': 0.999175, 'index': 51, 'word': 'Korean', 'start': 96, 'end': 102}, {'entity': 'I-ORG', 'score': 0.99975115, 'index': 68, 'word': 'Po', 'start': 151, 'end': 153}, {'entity': 'I-ORG', 'score': 0.9996387, 'index': 69, 'word': '##hang', 'start': 153, 'end': 157}, {'entity': 'I-ORG', 'score': 0.9997404, 'index': 71, 'word': 'U', 'start': 160, 'end': 161}, {'entity': 'I-ORG', 'score': 0.9980184, 'index': 72, 'word': '##ls', 'start': 161, 'end': 163}, {'entity': 'I-ORG', 'score': 0.99953914, 'index': 73, 'word': '##an', 'start': 163, 'end': 165}, {'entity': 'I-ORG', 'score': 0.9997694, 'index': 85, 'word': 'P', 'start': 190, 'end': 191}, {'entity': 'I-ORG', 'score': 0.9984945, 'index': 86, 'word': '##uch', 'start': 191, 'end': 194}, {'entity': 'I-ORG', 'score': 0.9994271, 'index': 87, 'word': '##on', 'start': 194, 'end': 196}, {'entity': 'I-ORG', 'score': 0.9997248, 'index': 89, 'word': 'Cho', 'start': 199, 'end': 202}, {'entity': 'I-ORG', 'score': 0.9983255, 'index': 90, 'word': '##n', 'start': 202, 'end': 203}, {'entity': 'I-ORG', 'score': 0.99840266, 'index': 91, 'word': '##bu', 'start': 203, 'end': 205}, {'entity': 'I-ORG', 'score': 0.99940157, 'index': 92, 'word': '##k', 'start': 205, 'end': 206}, {'entity': 'I-ORG', 'score': 0.9996898, 'index': 154, 'word': 'P', 'start': 386, 'end': 387}, {'entity': 'I-ORG', 'score': 0.9982217, 'index': 155, 'word': '##uch', 'start': 387, 'end': 390}, {'entity': 'I-ORG', 'score': 0.9993026, 'index': 156, 'word': '##on', 'start': 390, 'end': 392}, {'entity': 'I-ORG', 'score': 0.99973077, 'index': 167, 'word': 'Cho', 'start': 411, 'end': 414}, {'entity': 'I-ORG', 'score': 0.9994998, 'index': 168, 'word': '##nan', 'start': 414, 'end': 417}, {'entity': 'I-ORG', 'score': 0.99971896, 'index': 179, 'word': 'Po', 'start': 437, 'end': 439}, {'entity': 'I-ORG', 'score': 0.9994617, 'index': 180, 'word': '##hang', 'start': 439, 'end': 443}, {'entity': 'I-ORG', 'score': 0.9996954, 'index': 191, 'word': 'Su', 'start': 463, 'end': 465}, {'entity': 'I-ORG', 'score': 0.9987294, 'index': 192, 'word': '##wan', 'start': 465, 'end': 468}, {'entity': 'I-ORG', 'score': 0.99973446, 'index': 203, 'word': 'U', 'start': 486, 'end': 487}, {'entity': 'I-ORG', 'score': 0.9974095, 'index': 204, 'word': '##ls', 'start': 487, 'end': 489}, {'entity': 'I-ORG', 'score': 0.9993405, 'index': 205, 'word': '##an', 'start': 489, 'end': 491}, {'entity': 'I-ORG', 'score': 0.9996991, 'index': 216, 'word': 'Anya', 'start': 509, 'end': 513}, {'entity': 'I-ORG', 'score': 0.9993538, 'index': 217, 'word': '##ng', 'start': 513, 'end': 515}, {'entity': 'I-ORG', 'score': 0.99972266, 'index': 228, 'word': 'Cho', 'start': 533, 'end': 536}, {'entity': 'I-ORG', 'score': 0.99652123, 'index': 229, 'word': '##nna', 'start': 536, 'end': 539}, {'entity': 'I-ORG', 'score': 0.99931383, 'index': 230, 'word': '##m', 'start': 539, 'end': 540}, {'entity': 'I-ORG', 'score': 0.9997482, 'index': 241, 'word': 'P', 'start': 558, 'end': 559}, {'entity': 'I-ORG', 'score': 0.9982681, 'index': 242, 'word': '##usa', 'start': 559, 'end': 562}, {'entity': 'I-ORG', 'score': 0.9993748, 'index': 243, 'word': '##n', 'start': 562, 'end': 563}, {'entity': 'I-ORG', 'score': 0.99962413, 'index': 254, 'word': 'Cho', 'start': 581, 'end': 584}, {'entity': 'I-ORG', 'score': 0.99788254, 'index': 255, 'word': '##n', 'start': 584, 'end': 585}, {'entity': 'I-ORG', 'score': 0.99794406, 'index': 256, 'word': '##bu', 'start': 585, 'end': 587}, {'entity': 'I-ORG', 'score': 0.9992976, 'index': 257, 'word': '##k', 'start': 587, 'end': 588}]
[{'entity': 'I-MISC', 'score': 0.9990553, 'index': 12, 'word': 'S', 'start': 22, 'end': 23}, {'entity': 'I-MISC', 'score': 0.9988218, 'index': 14, 'word': 'K', 'start': 25, 'end': 26}, {'entity': 'I-MISC', 'score': 0.9715316, 'index': 15, 'word': '##OR', 'start': 26, 'end': 28}, {'entity': 'I-MISC', 'score': 0.9908761, 'index': 16, 'word': '##EA', 'start': 28, 'end': 30}, {'entity': 'I-MISC', 'score': 0.9931427, 'index': 17, 'word': '##N', 'start': 30, 'end': 31}, {'entity': 'I-LOC', 'score': 0.741129, 'index': 33, 'word': 'SE', 'start': 58, 'end': 60}, {'entity': 'I-MISC', 'score': 0.99901474, 'index': 48, 'word': 'South', 'start': 91, 'end': 96}, {'entity': 'I-MISC', 'score': 0.9991603, 'index': 49, 'word': 'Korean', 'start': 97, 'end': 103}, {'entity': 'I-ORG', 'score': 0.99921465, 'index': 65, 'word': 'L', 'start': 163, 'end': 164}, {'entity': 'I-ORG', 'score': 0.99874383, 'index': 66, 'word': '##G', 'start': 164, 'end': 165}, {'entity': 'I-ORG', 'score': 0.9785365, 'index': 68, 'word': 'O', 'start': 168, 'end': 169}, {'entity': 'I-ORG', 'score': 0.8850789, 'index': 69, 'word': '##B', 'start': 169, 'end': 170}, {'entity': 'I-ORG', 'score': 0.9950642, 'index': 75, 'word': 'Lot', 'start': 178, 'end': 181}, {'entity': 'I-ORG', 'score': 0.9991684, 'index': 76, 'word': '##te', 'start': 181, 'end': 183}, {'entity': 'I-ORG', 'score': 0.9997402, 'index': 78, 'word': 'H', 'start': 186, 'end': 187}, {'entity': 'I-ORG', 'score': 0.9986565, 'index': 79, 'word': '##yun', 'start': 187, 'end': 190}, {'entity': 'I-ORG', 'score': 0.99962544, 'index': 80, 'word': '##dai', 'start': 190, 'end': 193}, {'entity': 'I-ORG', 'score': 0.9996717, 'index': 86, 'word': 'H', 'start': 201, 'end': 202}, {'entity': 'I-ORG', 'score': 0.998672, 'index': 87, 'word': '##yun', 'start': 202, 'end': 205}, {'entity': 'I-ORG', 'score': 0.9996145, 'index': 88, 'word': '##dai', 'start': 205, 'end': 208}, {'entity': 'I-ORG', 'score': 0.9958079, 'index': 90, 'word': 'Lot', 'start': 211, 'end': 214}, {'entity': 'I-ORG', 'score': 0.99926406, 'index': 91, 'word': '##te', 'start': 214, 'end': 216}, {'entity': 'I-ORG', 'score': 0.9996424, 'index': 97, 'word': 'Hai', 'start': 224, 'end': 227}, {'entity': 'I-ORG', 'score': 0.9994017, 'index': 98, 'word': '##tai', 'start': 227, 'end': 230}, {'entity': 'I-ORG', 'score': 0.99961495, 'index': 100, 'word': 'Samsung', 'start': 233, 'end': 240}, {'entity': 'I-ORG', 'score': 0.99970466, 'index': 106, 'word': 'Samsung', 'start': 248, 'end': 255}, {'entity': 'I-ORG', 'score': 0.99948823, 'index': 108, 'word': 'Hai', 'start': 259, 'end': 262}, {'entity': 'I-ORG', 'score': 0.9993106, 'index': 109, 'word': '##tai', 'start': 262, 'end': 265}, {'entity': 'I-ORG', 'score': 0.9997551, 'index': 115, 'word': 'Han', 'start': 273, 'end': 276}, {'entity': 'I-ORG', 'score': 0.99831355, 'index': 116, 'word': '##w', 'start': 276, 'end': 277}, {'entity': 'I-ORG', 'score': 0.9995012, 'index': 117, 'word': '##ha', 'start': 277, 'end': 279}, {'entity': 'I-ORG', 'score': 0.99963593, 'index': 119, 'word': 'S', 'start': 282, 'end': 283}, {'entity': 'I-ORG', 'score': 0.9992848, 'index': 120, 'word': '##sang', 'start': 283, 'end': 287}, {'entity': 'I-ORG', 'score': 0.99924856, 'index': 121, 'word': '##bang', 'start': 287, 'end': 291}, {'entity': 'I-ORG', 'score': 0.9990453, 'index': 122, 'word': '##wo', 'start': 291, 'end': 293}, {'entity': 'I-ORG', 'score': 0.9993575, 'index': 123, 'word': '##ol', 'start': 293, 'end': 295}, {'entity': 'I-ORG', 'score': 0.95993316, 'index': 131, 'word': 'Lot', 'start': 310, 'end': 313}, {'entity': 'I-ORG', 'score': 0.99881434, 'index': 132, 'word': '##te', 'start': 313, 'end': 315}, {'entity': 'I-ORG', 'score': 0.9994703, 'index': 134, 'word': 'H', 'start': 320, 'end': 321}, {'entity': 'I-ORG', 'score': 0.9969838, 'index': 135, 'word': '##yun', 'start': 321, 'end': 324}, {'entity': 'I-ORG', 'score': 0.9995828, 'index': 136, 'word': '##dai', 'start': 324, 'end': 327}, {'entity': 'I-ORG', 'score': 0.99941504, 'index': 138, 'word': 'Hai', 'start': 330, 'end': 333}, {'entity': 'I-ORG', 'score': 0.9992637, 'index': 139, 'word': '##tai', 'start': 333, 'end': 336}, {'entity': 'I-ORG', 'score': 0.9997037, 'index': 141, 'word': 'Samsung', 'start': 341, 'end': 348}, {'entity': 'I-ORG', 'score': 0.9996711, 'index': 194, 'word': 'Hai', 'start': 528, 'end': 531}, {'entity': 'I-ORG', 'score': 0.9993692, 'index': 195, 'word': '##tai', 'start': 531, 'end': 534}, {'entity': 'I-ORG', 'score': 0.99967563, 'index': 207, 'word': 'S', 'start': 555, 'end': 556}, {'entity': 'I-ORG', 'score': 0.9987955, 'index': 208, 'word': '##sang', 'start': 556, 'end': 560}, {'entity': 'I-ORG', 'score': 0.9990735, 'index': 209, 'word': '##bang', 'start': 560, 'end': 564}, {'entity': 'I-ORG', 'score': 0.9983456, 'index': 210, 'word': '##wo', 'start': 564, 'end': 566}, {'entity': 'I-ORG', 'score': 0.9993267, 'index': 211, 'word': '##ol', 'start': 566, 'end': 568}, {'entity': 'I-ORG', 'score': 0.9997397, 'index': 226, 'word': 'Han', 'start': 593, 'end': 596}, {'entity': 'I-ORG', 'score': 0.9982893, 'index': 227, 'word': '##w', 'start': 596, 'end': 597}, {'entity': 'I-ORG', 'score': 0.99955195, 'index': 228, 'word': '##ha', 'start': 597, 'end': 599}, {'entity': 'I-ORG', 'score': 0.9997236, 'index': 240, 'word': 'H', 'start': 620, 'end': 621}, {'entity': 'I-ORG', 'score': 0.9991273, 'index': 241, 'word': '##yun', 'start': 621, 'end': 624}, {'entity': 'I-ORG', 'score': 0.9996183, 'index': 242, 'word': '##dai', 'start': 624, 'end': 627}, {'entity': 'I-ORG', 'score': 0.99959165, 'index': 257, 'word': 'Samsung', 'start': 652, 'end': 659}, {'entity': 'I-ORG', 'score': 0.99338335, 'index': 269, 'word': 'Lot', 'start': 681, 'end': 684}, {'entity': 'I-ORG', 'score': 0.99869967, 'index': 270, 'word': '##te', 'start': 684, 'end': 686}, {'entity': 'I-ORG', 'score': 0.9996126, 'index': 285, 'word': 'L', 'start': 712, 'end': 713}, {'entity': 'I-ORG', 'score': 0.9987262, 'index': 286, 'word': '##G', 'start': 713, 'end': 714}, {'entity': 'I-ORG', 'score': 0.9881898, 'index': 298, 'word': 'O', 'start': 736, 'end': 737}, {'entity': 'I-ORG', 'score': 0.9573591, 'index': 299, 'word': '##B', 'start': 737, 'end': 738}]
[{'entity': 'I-MISC', 'score': 0.98089635, 'index': 6, 'word': 'F', 'start': 9, 'end': 10}, {'entity': 'I-MISC', 'score': 0.8730954, 'index': 7, 'word': '##RI', 'start': 10, 'end': 12}, {'entity': 'I-MISC', 'score': 0.7688957, 'index': 8, 'word': '##DA', 'start': 12, 'end': 14}, {'entity': 'I-MISC', 'score': 0.9989712, 'index': 21, 'word': 'U', 'start': 36, 'end': 37}, {'entity': 'I-MISC', 'score': 0.9990822, 'index': 23, 'word': 'S', 'start': 38, 'end': 39}, {'entity': 'I-MISC', 'score': 0.9764381, 'index': 24, 'word': '.', 'start': 39, 'end': 40}, {'entity': 'I-MISC', 'score': 0.99769384, 'index': 25, 'word': 'O', 'start': 41, 'end': 42}, {'entity': 'I-MISC', 'score': 0.9825936, 'index': 26, 'word': '##P', 'start': 42, 'end': 43}, {'entity': 'I-MISC', 'score': 0.99153477, 'index': 27, 'word': '##EN', 'start': 43, 'end': 45}, {'entity': 'I-LOC', 'score': 0.9865284, 'index': 33, 'word': 'NE', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.9943057, 'index': 34, 'word': '##W', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.99745065, 'index': 35, 'word': 'Y', 'start': 57, 'end': 58}, {'entity': 'I-MISC', 'score': 0.584699, 'index': 36, 'word': '##OR', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9912142, 'index': 37, 'word': '##K', 'start': 60, 'end': 61}, {'entity': 'I-MISC', 'score': 0.9977175, 'index': 50, 'word': 'U', 'start': 95, 'end': 96}, {'entity': 'I-MISC', 'score': 0.9974974, 'index': 52, 'word': 'S', 'start': 97, 'end': 98}, {'entity': 'I-MISC', 'score': 0.98866487, 'index': 53, 'word': '.', 'start': 98, 'end': 99}, {'entity': 'I-MISC', 'score': 0.9925527, 'index': 54, 'word': 'Open', 'start': 100, 'end': 104}, {'entity': 'I-MISC', 'score': 0.98509824, 'index': 55, 'word': 'Tennis', 'start': 105, 'end': 111}, {'entity': 'I-MISC', 'score': 0.9974654, 'index': 56, 'word': 'Championships', 'start': 112, 'end': 125}, {'entity': 'I-LOC', 'score': 0.9976826, 'index': 59, 'word': 'National', 'start': 133, 'end': 141}, {'entity': 'I-LOC', 'score': 0.9979296, 'index': 60, 'word': 'Tennis', 'start': 142, 'end': 148}, {'entity': 'I-LOC', 'score': 0.998226, 'index': 61, 'word': 'Centre', 'start': 149, 'end': 155}, {'entity': 'I-PER', 'score': 0.99981433, 'index': 87, 'word': 'Sand', 'start': 243, 'end': 247}, {'entity': 'I-PER', 'score': 0.9997571, 'index': 88, 'word': '##rine', 'start': 247, 'end': 251}, {'entity': 'I-PER', 'score': 0.9996525, 'index': 89, 'word': 'Test', 'start': 252, 'end': 256}, {'entity': 'I-PER', 'score': 0.9992624, 'index': 90, 'word': '##ud', 'start': 256, 'end': 258}, {'entity': 'I-LOC', 'score': 0.99988186, 'index': 92, 'word': 'France', 'start': 261, 'end': 267}, {'entity': 'I-PER', 'score': 0.9995995, 'index': 95, 'word': 'In', 'start': 275, 'end': 277}, {'entity': 'I-PER', 'score': 0.9996394, 'index': 96, 'word': '##es', 'start': 277, 'end': 279}, {'entity': 'I-PER', 'score': 0.99972063, 'index': 97, 'word': 'Go', 'start': 280, 'end': 282}, {'entity': 'I-PER', 'score': 0.9988268, 'index': 98, 'word': '##rro', 'start': 282, 'end': 285}, {'entity': 'I-PER', 'score': 0.99682885, 'index': 99, 'word': '##cha', 'start': 285, 'end': 288}, {'entity': 'I-PER', 'score': 0.98446274, 'index': 100, 'word': '##te', 'start': 288, 'end': 290}, {'entity': 'I-PER', 'score': 0.99077773, 'index': 101, 'word': '##gu', 'start': 290, 'end': 292}, {'entity': 'I-PER', 'score': 0.99463755, 'index': 102, 'word': '##i', 'start': 292, 'end': 293}, {'entity': 'I-LOC', 'score': 0.99986625, 'index': 104, 'word': 'Argentina', 'start': 296, 'end': 305}, {'entity': 'I-PER', 'score': 0.99973744, 'index': 132, 'word': 'Go', 'start': 364, 'end': 366}, {'entity': 'I-PER', 'score': 0.999629, 'index': 133, 'word': '##ran', 'start': 366, 'end': 369}, {'entity': 'I-PER', 'score': 0.9996581, 'index': 134, 'word': 'Ivan', 'start': 370, 'end': 374}, {'entity': 'I-PER', 'score': 0.91443044, 'index': 135, 'word': '##ise', 'start': 374, 'end': 377}, {'entity': 'I-PER', 'score': 0.9995683, 'index': 136, 'word': '##vic', 'start': 377, 'end': 380}, {'entity': 'I-LOC', 'score': 0.99980646, 'index': 138, 'word': 'Croatia', 'start': 383, 'end': 390}, {'entity': 'I-PER', 'score': 0.999793, 'index': 141, 'word': 'Scott', 'start': 398, 'end': 403}, {'entity': 'I-PER', 'score': 0.9998024, 'index': 142, 'word': 'Dr', 'start': 404, 'end': 406}, {'entity': 'I-PER', 'score': 0.9997832, 'index': 143, 'word': '##aper', 'start': 406, 'end': 410}, {'entity': 'I-LOC', 'score': 0.999841, 'index': 145, 'word': 'Australia', 'start': 413, 'end': 422}, {'entity': 'I-PER', 'score': 0.99979955, 'index': 168, 'word': 'Tim', 'start': 454, 'end': 457}, {'entity': 'I-PER', 'score': 0.9997265, 'index': 169, 'word': 'He', 'start': 458, 'end': 460}, {'entity': 'I-PER', 'score': 0.9869435, 'index': 170, 'word': '##n', 'start': 460, 'end': 461}, {'entity': 'I-PER', 'score': 0.99922657, 'index': 171, 'word': '##man', 'start': 461, 'end': 464}, {'entity': 'I-LOC', 'score': 0.999821, 'index': 173, 'word': 'Britain', 'start': 467, 'end': 474}, {'entity': 'I-PER', 'score': 0.9997975, 'index': 176, 'word': 'Doug', 'start': 482, 'end': 486}, {'entity': 'I-PER', 'score': 0.9998425, 'index': 177, 'word': 'F', 'start': 487, 'end': 488}, {'entity': 'I-PER', 'score': 0.998393, 'index': 178, 'word': '##la', 'start': 488, 'end': 490}, {'entity': 'I-PER', 'score': 0.9994006, 'index': 179, 'word': '##ch', 'start': 490, 'end': 492}, {'entity': 'I-LOC', 'score': 0.9997826, 'index': 181, 'word': 'U', 'start': 495, 'end': 496}, {'entity': 'I-LOC', 'score': 0.99969625, 'index': 183, 'word': 'S', 'start': 497, 'end': 498}, {'entity': 'I-PER', 'score': 0.9997626, 'index': 199, 'word': 'Mark', 'start': 519, 'end': 523}, {'entity': 'I-PER', 'score': 0.99976104, 'index': 200, 'word': 'Philipp', 'start': 524, 'end': 531}, {'entity': 'I-PER', 'score': 0.9983176, 'index': 201, 'word': '##ous', 'start': 531, 'end': 534}, {'entity': 'I-PER', 'score': 0.9993773, 'index': 202, 'word': '##sis', 'start': 534, 'end': 537}, {'entity': 'I-LOC', 'score': 0.9998684, 'index': 204, 'word': 'Australia', 'start': 540, 'end': 549}, {'entity': 'I-PER', 'score': 0.9997713, 'index': 207, 'word': 'Andrei', 'start': 557, 'end': 563}, {'entity': 'I-PER', 'score': 0.9997466, 'index': 208, 'word': 'O', 'start': 564, 'end': 565}, {'entity': 'I-PER', 'score': 0.9932509, 'index': 209, 'word': '##l', 'start': 565, 'end': 566}, {'entity': 'I-PER', 'score': 0.994603, 'index': 210, 'word': '##hov', 'start': 566, 'end': 569}, {'entity': 'I-PER', 'score': 0.99310416, 'index': 211, 'word': '##ski', 'start': 569, 'end': 572}, {'entity': 'I-PER', 'score': 0.9666868, 'index': 212, 'word': '##y', 'start': 572, 'end': 573}, {'entity': 'I-LOC', 'score': 0.9998927, 'index': 214, 'word': 'Russia', 'start': 576, 'end': 582}, {'entity': 'I-PER', 'score': 0.9996923, 'index': 229, 'word': 'S', 'start': 604, 'end': 605}, {'entity': 'I-PER', 'score': 0.99780184, 'index': 230, 'word': '##je', 'start': 605, 'end': 607}, {'entity': 'I-PER', 'score': 0.99966514, 'index': 231, 'word': '##ng', 'start': 607, 'end': 609}, {'entity': 'I-PER', 'score': 0.99985576, 'index': 232, 'word': 'Sc', 'start': 610, 'end': 612}, {'entity': 'I-PER', 'score': 0.9989103, 'index': 233, 'word': '##hal', 'start': 612, 'end': 615}, {'entity': 'I-PER', 'score': 0.99936634, 'index': 234, 'word': '##ken', 'start': 615, 'end': 618}, {'entity': 'I-LOC', 'score': 0.9998802, 'index': 236, 'word': 'Netherlands', 'start': 621, 'end': 632}, {'entity': 'I-PER', 'score': 0.9998211, 'index': 239, 'word': 'David', 'start': 640, 'end': 645}, {'entity': 'I-PER', 'score': 0.99984777, 'index': 240, 'word': 'R', 'start': 646, 'end': 647}, {'entity': 'I-PER', 'score': 0.99972755, 'index': 241, 'word': '##ik', 'start': 647, 'end': 649}, {'entity': 'I-PER', 'score': 0.9995623, 'index': 242, 'word': '##l', 'start': 649, 'end': 650}, {'entity': 'I-LOC', 'score': 0.99985886, 'index': 244, 'word': 'Czech', 'start': 653, 'end': 658}, {'entity': 'I-LOC', 'score': 0.9998776, 'index': 245, 'word': 'Republic', 'start': 659, 'end': 667}, {'entity': 'I-PER', 'score': 0.99978584, 'index': 260, 'word': 'Guy', 'start': 689, 'end': 692}, {'entity': 'I-PER', 'score': 0.99985886, 'index': 261, 'word': 'Forget', 'start': 693, 'end': 699}, {'entity': 'I-LOC', 'score': 0.99984014, 'index': 263, 'word': 'France', 'start': 702, 'end': 708}, {'entity': 'I-PER', 'score': 0.99975973, 'index': 268, 'word': 'Felix', 'start': 721, 'end': 726}, {'entity': 'I-PER', 'score': 0.9996816, 'index': 269, 'word': 'Man', 'start': 727, 'end': 730}, {'entity': 'I-PER', 'score': 0.99911696, 'index': 270, 'word': '##til', 'start': 730, 'end': 733}, {'entity': 'I-PER', 'score': 0.9982526, 'index': 271, 'word': '##la', 'start': 733, 'end': 735}, {'entity': 'I-LOC', 'score': 0.9998419, 'index': 273, 'word': 'Spain', 'start': 738, 'end': 743}, {'entity': 'I-PER', 'score': 0.9997477, 'index': 299, 'word': 'Alexander', 'start': 798, 'end': 807}, {'entity': 'I-PER', 'score': 0.9997054, 'index': 300, 'word': 'Vol', 'start': 808, 'end': 811}, {'entity': 'I-PER', 'score': 0.9993711, 'index': 301, 'word': '##kov', 'start': 811, 'end': 814}, {'entity': 'I-LOC', 'score': 0.99983037, 'index': 303, 'word': 'Russia', 'start': 817, 'end': 823}, {'entity': 'I-PER', 'score': 0.99979347, 'index': 306, 'word': 'Mi', 'start': 831, 'end': 833}, {'entity': 'I-PER', 'score': 0.99972683, 'index': 307, 'word': '##ka', 'start': 833, 'end': 835}, {'entity': 'I-PER', 'score': 0.9997694, 'index': 308, 'word': '##el', 'start': 835, 'end': 837}, {'entity': 'I-PER', 'score': 0.9997789, 'index': 309, 'word': 'Till', 'start': 838, 'end': 842}, {'entity': 'I-PER', 'score': 0.99923015, 'index': 310, 'word': '##strom', 'start': 842, 'end': 847}, {'entity': 'I-LOC', 'score': 0.9998604, 'index': 312, 'word': 'Sweden', 'start': 850, 'end': 856}, {'entity': 'I-PER', 'score': 0.9997775, 'index': 338, 'word': 'Jonas', 'start': 894, 'end': 899}, {'entity': 'I-PER', 'score': 0.99983275, 'index': 339, 'word': 'B', 'start': 900, 'end': 901}, {'entity': 'I-PER', 'score': 0.99783736, 'index': 340, 'word': '##jo', 'start': 901, 'end': 903}, {'entity': 'I-PER', 'score': 0.996557, 'index': 341, 'word': '##rk', 'start': 903, 'end': 905}, {'entity': 'I-PER', 'score': 0.99931693, 'index': 342, 'word': '##man', 'start': 905, 'end': 908}, {'entity': 'I-LOC', 'score': 0.99988985, 'index': 344, 'word': 'Sweden', 'start': 911, 'end': 917}, {'entity': 'I-PER', 'score': 0.99978787, 'index': 347, 'word': 'David', 'start': 925, 'end': 930}, {'entity': 'I-PER', 'score': 0.9997389, 'index': 348, 'word': 'Na', 'start': 931, 'end': 933}, {'entity': 'I-PER', 'score': 0.998858, 'index': 349, 'word': '##ink', 'start': 933, 'end': 936}, {'entity': 'I-PER', 'score': 0.99673814, 'index': 350, 'word': '##in', 'start': 936, 'end': 938}, {'entity': 'I-LOC', 'score': 0.9998122, 'index': 352, 'word': 'South', 'start': 941, 'end': 946}, {'entity': 'I-LOC', 'score': 0.99987626, 'index': 353, 'word': 'Africa', 'start': 947, 'end': 953}, {'entity': 'I-PER', 'score': 0.9997769, 'index': 382, 'word': 'Lindsay', 'start': 1015, 'end': 1022}, {'entity': 'I-PER', 'score': 0.99984145, 'index': 383, 'word': 'Davenport', 'start': 1023, 'end': 1032}, {'entity': 'I-ORG', 'score': 0.6759238, 'index': 385, 'word': 'U', 'start': 1035, 'end': 1036}, {'entity': 'I-PER', 'score': 0.9775964, 'index': 387, 'word': 'S', 'start': 1037, 'end': 1038}, {'entity': 'I-PER', 'score': 0.99920505, 'index': 391, 'word': 'Anne', 'start': 1047, 'end': 1051}, {'entity': 'I-PER', 'score': 0.94364876, 'index': 393, 'word': 'G', 'start': 1052, 'end': 1053}, {'entity': 'I-PER', 'score': 0.9879332, 'index': 394, 'word': '##ael', 'start': 1053, 'end': 1056}, {'entity': 'I-PER', 'score': 0.6625267, 'index': 395, 'word': '##le', 'start': 1056, 'end': 1058}, {'entity': 'I-PER', 'score': 0.8709792, 'index': 396, 'word': 'Sid', 'start': 1059, 'end': 1062}, {'entity': 'I-PER', 'score': 0.8517274, 'index': 397, 'word': '##ot', 'start': 1062, 'end': 1064}, {'entity': 'I-LOC', 'score': 0.99914706, 'index': 399, 'word': 'France', 'start': 1067, 'end': 1073}, {'entity': 'I-PER', 'score': 0.4101969, 'index': 409, 'word': 'S', 'start': 1086, 'end': 1087}, {'entity': 'I-PER', 'score': 0.9793554, 'index': 413, 'word': 'Con', 'start': 1093, 'end': 1096}, {'entity': 'I-PER', 'score': 0.95206916, 'index': 414, 'word': '##chi', 'start': 1096, 'end': 1099}, {'entity': 'I-PER', 'score': 0.7973792, 'index': 415, 'word': '##ta', 'start': 1099, 'end': 1101}, {'entity': 'I-PER', 'score': 0.9997768, 'index': 416, 'word': 'Martinez', 'start': 1102, 'end': 1110}, {'entity': 'I-LOC', 'score': 0.9993855, 'index': 418, 'word': 'Spain', 'start': 1113, 'end': 1118}, {'entity': 'I-PER', 'score': 0.99965227, 'index': 421, 'word': 'Helena', 'start': 1126, 'end': 1132}, {'entity': 'I-PER', 'score': 0.9915673, 'index': 422, 'word': 'Su', 'start': 1133, 'end': 1135}, {'entity': 'I-PER', 'score': 0.99953234, 'index': 423, 'word': '##kova', 'start': 1135, 'end': 1139}, {'entity': 'I-MISC', 'score': 0.7244387, 'index': 425, 'word': 'Czech', 'start': 1142, 'end': 1147}, {'entity': 'I-LOC', 'score': 0.9992969, 'index': 426, 'word': 'Republic', 'start': 1148, 'end': 1156}, {'entity': 'I-ORG', 'score': 0.48300785, 'index': 436, 'word': 'S', 'start': 1169, 'end': 1170}, {'entity': 'I-PER', 'score': 0.9976311, 'index': 438, 'word': 'Amanda', 'start': 1172, 'end': 1178}, {'entity': 'I-PER', 'score': 0.975574, 'index': 439, 'word': 'Co', 'start': 1179, 'end': 1181}, {'entity': 'I-PER', 'score': 0.6352915, 'index': 440, 'word': '##et', 'start': 1181, 'end': 1183}, {'entity': 'I-PER', 'score': 0.8500245, 'index': 441, 'word': '##zer', 'start': 1183, 'end': 1186}, {'entity': 'I-LOC', 'score': 0.85331774, 'index': 443, 'word': 'South', 'start': 1189, 'end': 1194}, {'entity': 'I-LOC', 'score': 0.9981231, 'index': 444, 'word': 'Africa', 'start': 1195, 'end': 1201}, {'entity': 'I-PER', 'score': 0.87011063, 'index': 447, 'word': 'I', 'start': 1209, 'end': 1210}, {'entity': 'I-PER', 'score': 0.86389065, 'index': 448, 'word': '##rina', 'start': 1210, 'end': 1214}, {'entity': 'I-PER', 'score': 0.55637366, 'index': 449, 'word': 'S', 'start': 1215, 'end': 1216}, {'entity': 'I-PER', 'score': 0.5810353, 'index': 450, 'word': '##pi', 'start': 1216, 'end': 1218}, {'entity': 'I-PER', 'score': 0.5960971, 'index': 451, 'word': '##rle', 'start': 1218, 'end': 1221}, {'entity': 'I-PER', 'score': 0.8037367, 'index': 452, 'word': '##a', 'start': 1221, 'end': 1222}, {'entity': 'I-LOC', 'score': 0.99875295, 'index': 454, 'word': 'Romania', 'start': 1225, 'end': 1232}, {'entity': 'I-PER', 'score': 0.46557668, 'index': 469, 'word': 'S', 'start': 1253, 'end': 1254}, {'entity': 'I-PER', 'score': 0.9027049, 'index': 471, 'word': 'Ad', 'start': 1256, 'end': 1258}, {'entity': 'I-ORG', 'score': 0.5458228, 'index': 472, 'word': '##d', 'start': 1258, 'end': 1259}, {'entity': 'I-PER', 'score': 0.94412166, 'index': 473, 'word': 'Men', 'start': 1260, 'end': 1263}, {'entity': 'I-PER', 'score': 0.9939715, 'index': 482, 'word': 'Ce', 'start': 1295, 'end': 1297}, {'entity': 'I-PER', 'score': 0.9967313, 'index': 483, 'word': '##dric', 'start': 1297, 'end': 1301}, {'entity': 'I-PER', 'score': 0.87215906, 'index': 484, 'word': 'Pi', 'start': 1302, 'end': 1304}, {'entity': 'I-PER', 'score': 0.7489356, 'index': 485, 'word': '##olin', 'start': 1304, 'end': 1308}, {'entity': 'I-PER', 'score': 0.63800097, 'index': 486, 'word': '##e', 'start': 1308, 'end': 1309}, {'entity': 'I-LOC', 'score': 0.9994154, 'index': 488, 'word': 'France', 'start': 1312, 'end': 1318}, {'entity': 'I-PER', 'score': 0.99939144, 'index': 491, 'word': 'Roberto', 'start': 1326, 'end': 1333}, {'entity': 'I-PER', 'score': 0.9985246, 'index': 492, 'word': 'Carr', 'start': 1334, 'end': 1338}, {'entity': 'I-PER', 'score': 0.9837964, 'index': 493, 'word': '##eter', 'start': 1338, 'end': 1342}, {'entity': 'I-PER', 'score': 0.93835527, 'index': 494, 'word': '##o', 'start': 1342, 'end': 1343}, {'entity': 'I-LOC', 'score': 0.9993863, 'index': 496, 'word': 'Spain', 'start': 1346, 'end': 1351}, {'entity': 'I-PER', 'score': 0.99933225, 'index': 510, 'word': 'Alex', 'start': 1372, 'end': 1376}]
[{'entity': 'I-MISC', 'score': 0.99648786, 'index': 6, 'word': 'MA', 'start': 11, 'end': 13}, {'entity': 'I-MISC', 'score': 0.83482444, 'index': 7, 'word': '##J', 'start': 13, 'end': 14}, {'entity': 'I-MISC', 'score': 0.95197254, 'index': 8, 'word': '##OR', 'start': 14, 'end': 16}, {'entity': 'I-MISC', 'score': 0.99703765, 'index': 9, 'word': 'L', 'start': 17, 'end': 18}, {'entity': 'I-MISC', 'score': 0.5587042, 'index': 10, 'word': '##EA', 'start': 18, 'end': 20}, {'entity': 'I-MISC', 'score': 0.73128945, 'index': 11, 'word': '##G', 'start': 20, 'end': 21}, {'entity': 'I-ORG', 'score': 0.6103263, 'index': 14, 'word': '##AN', 'start': 26, 'end': 28}, {'entity': 'I-ORG', 'score': 0.69282746, 'index': 37, 'word': 'NE', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.79643434, 'index': 38, 'word': '##W', 'start': 67, 'end': 68}, {'entity': 'I-LOC', 'score': 0.6466107, 'index': 39, 'word': 'Y', 'start': 69, 'end': 70}, {'entity': 'I-LOC', 'score': 0.7162711, 'index': 40, 'word': '##OR', 'start': 70, 'end': 72}, {'entity': 'I-ORG', 'score': 0.5199933, 'index': 41, 'word': '##K', 'start': 72, 'end': 73}, {'entity': 'I-ORG', 'score': 0.9748488, 'index': 51, 'word': 'Major', 'start': 90, 'end': 95}, {'entity': 'I-ORG', 'score': 0.7558887, 'index': 52, 'word': 'League', 'start': 96, 'end': 102}, {'entity': 'I-ORG', 'score': 0.98006743, 'index': 53, 'word': 'Baseball', 'start': 103, 'end': 111}, {'entity': 'I-MISC', 'score': 0.9985531, 'index': 88, 'word': 'AM', 'start': 238, 'end': 240}, {'entity': 'I-MISC', 'score': 0.9074139, 'index': 89, 'word': '##ER', 'start': 240, 'end': 242}, {'entity': 'I-MISC', 'score': 0.9962698, 'index': 90, 'word': '##IC', 'start': 242, 'end': 244}, {'entity': 'I-MISC', 'score': 0.9980117, 'index': 91, 'word': '##AN', 'start': 244, 'end': 246}, {'entity': 'I-MISC', 'score': 0.7710931, 'index': 92, 'word': 'L', 'start': 247, 'end': 248}, {'entity': 'I-MISC', 'score': 0.5152267, 'index': 94, 'word': '##G', 'start': 250, 'end': 251}, {'entity': 'I-MISC', 'score': 0.8826169, 'index': 100, 'word': 'EA', 'start': 259, 'end': 261}, {'entity': 'I-ORG', 'score': 0.60177886, 'index': 102, 'word': '##ER', 'start': 263, 'end': 265}, {'entity': 'I-MISC', 'score': 0.34863615, 'index': 103, 'word': '##N', 'start': 265, 'end': 266}, {'entity': 'I-ORG', 'score': 0.99940443, 'index': 122, 'word': 'NE', 'start': 297, 'end': 299}, {'entity': 'I-ORG', 'score': 0.99617493, 'index': 123, 'word': '##W', 'start': 299, 'end': 300}, {'entity': 'I-ORG', 'score': 0.9994361, 'index': 124, 'word': 'Y', 'start': 301, 'end': 302}, {'entity': 'I-ORG', 'score': 0.9841015, 'index': 125, 'word': '##OR', 'start': 302, 'end': 304}, {'entity': 'I-ORG', 'score': 0.9987923, 'index': 126, 'word': '##K', 'start': 304, 'end': 305}, {'entity': 'I-ORG', 'score': 0.9973348, 'index': 137, 'word': 'BA', 'start': 324, 'end': 326}, {'entity': 'I-ORG', 'score': 0.9970311, 'index': 138, 'word': '##LT', 'start': 326, 'end': 328}, {'entity': 'I-ORG', 'score': 0.99897027, 'index': 139, 'word': '##IM', 'start': 328, 'end': 330}, {'entity': 'I-ORG', 'score': 0.9939085, 'index': 140, 'word': '##OR', 'start': 330, 'end': 332}, {'entity': 'I-ORG', 'score': 0.997549, 'index': 141, 'word': '##E', 'start': 332, 'end': 333}, {'entity': 'I-ORG', 'score': 0.999295, 'index': 152, 'word': 'B', 'start': 352, 'end': 353}, {'entity': 'I-ORG', 'score': 0.9943481, 'index': 153, 'word': '##OS', 'start': 353, 'end': 355}, {'entity': 'I-ORG', 'score': 0.99750817, 'index': 154, 'word': '##TO', 'start': 355, 'end': 357}, {'entity': 'I-ORG', 'score': 0.99858284, 'index': 155, 'word': '##N', 'start': 357, 'end': 358}, {'entity': 'I-ORG', 'score': 0.9980596, 'index': 169, 'word': 'TO', 'start': 381, 'end': 383}, {'entity': 'I-ORG', 'score': 0.9905096, 'index': 170, 'word': '##RO', 'start': 383, 'end': 385}, {'entity': 'I-ORG', 'score': 0.99711645, 'index': 171, 'word': '##NT', 'start': 385, 'end': 387}, {'entity': 'I-ORG', 'score': 0.99815327, 'index': 172, 'word': '##O', 'start': 387, 'end': 388}, {'entity': 'I-ORG', 'score': 0.9950991, 'index': 185, 'word': 'DE', 'start': 412, 'end': 414}, {'entity': 'I-ORG', 'score': 0.99641293, 'index': 186, 'word': '##TR', 'start': 414, 'end': 416}, {'entity': 'I-ORG', 'score': 0.99723, 'index': 187, 'word': '##O', 'start': 416, 'end': 417}, {'entity': 'I-ORG', 'score': 0.99705374, 'index': 188, 'word': '##IT', 'start': 417, 'end': 419}, {'entity': 'I-ORG', 'score': 0.99886525, 'index': 215, 'word': 'C', 'start': 465, 'end': 466}, {'entity': 'I-ORG', 'score': 0.9875908, 'index': 216, 'word': '##LE', 'start': 466, 'end': 468}, {'entity': 'I-ORG', 'score': 0.9961802, 'index': 217, 'word': '##VE', 'start': 468, 'end': 470}, {'entity': 'I-ORG', 'score': 0.9955794, 'index': 218, 'word': '##LA', 'start': 470, 'end': 472}, {'entity': 'I-ORG', 'score': 0.9955413, 'index': 219, 'word': '##ND', 'start': 472, 'end': 474}, {'entity': 'I-ORG', 'score': 0.99920076, 'index': 230, 'word': 'CH', 'start': 493, 'end': 495}, {'entity': 'I-ORG', 'score': 0.99828374, 'index': 231, 'word': '##IC', 'start': 495, 'end': 497}, {'entity': 'I-ORG', 'score': 0.9983614, 'index': 232, 'word': '##AG', 'start': 497, 'end': 499}, {'entity': 'I-ORG', 'score': 0.99911493, 'index': 233, 'word': '##O', 'start': 499, 'end': 500}, {'entity': 'I-ORG', 'score': 0.9970421, 'index': 244, 'word': 'MI', 'start': 520, 'end': 522}, {'entity': 'I-ORG', 'score': 0.9979235, 'index': 245, 'word': '##N', 'start': 522, 'end': 523}, {'entity': 'I-ORG', 'score': 0.9966059, 'index': 246, 'word': '##NE', 'start': 523, 'end': 525}, {'entity': 'I-ORG', 'score': 0.998252, 'index': 247, 'word': '##SO', 'start': 525, 'end': 527}, {'entity': 'I-ORG', 'score': 0.9989722, 'index': 248, 'word': '##TA', 'start': 527, 'end': 529}, {'entity': 'I-ORG', 'score': 0.9964083, 'index': 261, 'word': 'MI', 'start': 553, 'end': 555}, {'entity': 'I-ORG', 'score': 0.99858725, 'index': 262, 'word': '##L', 'start': 555, 'end': 556}, {'entity': 'I-ORG', 'score': 0.9967182, 'index': 263, 'word': '##WA', 'start': 556, 'end': 558}, {'entity': 'I-ORG', 'score': 0.9975556, 'index': 264, 'word': '##U', 'start': 558, 'end': 559}, {'entity': 'I-ORG', 'score': 0.9972862, 'index': 265, 'word': '##KE', 'start': 559, 'end': 561}, {'entity': 'I-ORG', 'score': 0.99772424, 'index': 266, 'word': '##E', 'start': 561, 'end': 562}, {'entity': 'I-ORG', 'score': 0.9984073, 'index': 277, 'word': 'K', 'start': 582, 'end': 583}, {'entity': 'I-ORG', 'score': 0.9969373, 'index': 278, 'word': '##AN', 'start': 583, 'end': 585}, {'entity': 'I-ORG', 'score': 0.9979532, 'index': 279, 'word': '##SA', 'start': 585, 'end': 587}, {'entity': 'I-ORG', 'score': 0.9984523, 'index': 280, 'word': '##S', 'start': 587, 'end': 588}, {'entity': 'I-ORG', 'score': 0.99907506, 'index': 281, 'word': 'C', 'start': 589, 'end': 590}, {'entity': 'I-ORG', 'score': 0.9963148, 'index': 282, 'word': '##IT', 'start': 590, 'end': 592}, {'entity': 'I-ORG', 'score': 0.99696463, 'index': 283, 'word': '##Y', 'start': 592, 'end': 593}, {'entity': 'I-ORG', 'score': 0.53300387, 'index': 299, 'word': 'D', 'start': 621, 'end': 622}, {'entity': 'I-ORG', 'score': 0.58942765, 'index': 302, 'word': '##SI', 'start': 625, 'end': 627}, {'entity': 'I-ORG', 'score': 0.9677017, 'index': 303, 'word': '##ON', 'start': 627, 'end': 629}, {'entity': 'I-ORG', 'score': 0.9991596, 'index': 308, 'word': 'T', 'start': 635, 'end': 636}, {'entity': 'I-ORG', 'score': 0.9955081, 'index': 309, 'word': '##EX', 'start': 636, 'end': 638}, {'entity': 'I-ORG', 'score': 0.9984843, 'index': 310, 'word': '##AS', 'start': 638, 'end': 640}, {'entity': 'I-ORG', 'score': 0.55305004, 'index': 319, 'word': 'S', 'start': 656, 'end': 657}, {'entity': 'I-ORG', 'score': 0.9986767, 'index': 321, 'word': 'SE', 'start': 659, 'end': 661}, {'entity': 'I-ORG', 'score': 0.9866991, 'index': 322, 'word': '##AT', 'start': 661, 'end': 663}, {'entity': 'I-ORG', 'score': 0.99664634, 'index': 323, 'word': '##TL', 'start': 663, 'end': 665}, {'entity': 'I-ORG', 'score': 0.9965803, 'index': 324, 'word': '##E', 'start': 665, 'end': 666}, {'entity': 'I-ORG', 'score': 0.9982494, 'index': 335, 'word': 'O', 'start': 685, 'end': 686}, {'entity': 'I-ORG', 'score': 0.99348056, 'index': 336, 'word': '##A', 'start': 686, 'end': 687}, {'entity': 'I-ORG', 'score': 0.9912751, 'index': 337, 'word': '##K', 'start': 687, 'end': 688}, {'entity': 'I-ORG', 'score': 0.96765476, 'index': 338, 'word': '##LA', 'start': 688, 'end': 690}, {'entity': 'I-ORG', 'score': 0.9877295, 'index': 339, 'word': '##ND', 'start': 690, 'end': 692}, {'entity': 'I-ORG', 'score': 0.99933296, 'index': 353, 'word': 'CA', 'start': 716, 'end': 718}, {'entity': 'I-ORG', 'score': 0.9978319, 'index': 354, 'word': '##L', 'start': 718, 'end': 719}, {'entity': 'I-ORG', 'score': 0.99914896, 'index': 355, 'word': '##IF', 'start': 719, 'end': 721}, {'entity': 'I-ORG', 'score': 0.9962082, 'index': 356, 'word': '##OR', 'start': 721, 'end': 723}, {'entity': 'I-ORG', 'score': 0.9982493, 'index': 357, 'word': '##NI', 'start': 723, 'end': 725}, {'entity': 'I-ORG', 'score': 0.9990318, 'index': 358, 'word': '##A', 'start': 725, 'end': 726}, {'entity': 'I-ORG', 'score': 0.7102339, 'index': 392, 'word': '##AN', 'start': 784, 'end': 786}, {'entity': 'I-ORG', 'score': 0.9173849, 'index': 396, 'word': '##IT', 'start': 791, 'end': 793}, {'entity': 'I-ORG', 'score': 0.57730556, 'index': 399, 'word': 'DE', 'start': 798, 'end': 800}, {'entity': 'I-ORG', 'score': 0.99002916, 'index': 400, 'word': '##TR', 'start': 800, 'end': 802}, {'entity': 'I-ORG', 'score': 0.96718675, 'index': 401, 'word': '##O', 'start': 802, 'end': 803}, {'entity': 'I-ORG', 'score': 0.9453245, 'index': 402, 'word': '##IT', 'start': 803, 'end': 805}, {'entity': 'I-ORG', 'score': 0.9959778, 'index': 408, 'word': '##IC', 'start': 813, 'end': 815}, {'entity': 'I-ORG', 'score': 0.98863643, 'index': 409, 'word': '##AG', 'start': 815, 'end': 817}, {'entity': 'I-ORG', 'score': 0.9800317, 'index': 410, 'word': '##O', 'start': 817, 'end': 818}, {'entity': 'I-ORG', 'score': 0.62398434, 'index': 413, 'word': '##RO', 'start': 824, 'end': 826}, {'entity': 'I-ORG', 'score': 0.9069625, 'index': 414, 'word': '##NT', 'start': 826, 'end': 828}, {'entity': 'I-ORG', 'score': 0.96932733, 'index': 415, 'word': '##O', 'start': 828, 'end': 829}, {'entity': 'I-ORG', 'score': 0.7172985, 'index': 420, 'word': 'MI', 'start': 835, 'end': 837}, {'entity': 'I-ORG', 'score': 0.9615751, 'index': 424, 'word': '##TA', 'start': 842, 'end': 844}, {'entity': 'I-ORG', 'score': 0.9802603, 'index': 430, 'word': '##KE', 'start': 854, 'end': 856}, {'entity': 'I-ORG', 'score': 0.57912105, 'index': 431, 'word': '##E', 'start': 856, 'end': 857}, {'entity': 'I-ORG', 'score': 0.5310747, 'index': 437, 'word': '##LE', 'start': 864, 'end': 866}, {'entity': 'I-ORG', 'score': 0.85950726, 'index': 438, 'word': '##VE', 'start': 866, 'end': 868}, {'entity': 'I-ORG', 'score': 0.9086404, 'index': 440, 'word': '##ND', 'start': 870, 'end': 872}, {'entity': 'I-ORG', 'score': 0.8173172, 'index': 453, 'word': '##K', 'start': 894, 'end': 895}, {'entity': 'I-ORG', 'score': 0.5899081, 'index': 459, 'word': '##NI', 'start': 906, 'end': 908}, {'entity': 'I-ORG', 'score': 0.99523073, 'index': 460, 'word': '##A', 'start': 908, 'end': 909}, {'entity': 'I-ORG', 'score': 0.9102932, 'index': 465, 'word': 'B', 'start': 915, 'end': 916}, {'entity': 'I-ORG', 'score': 0.5283865, 'index': 467, 'word': '##TO', 'start': 918, 'end': 920}, {'entity': 'I-ORG', 'score': 0.9981951, 'index': 471, 'word': '##A', 'start': 926, 'end': 927}, {'entity': 'I-ORG', 'score': 0.6909686, 'index': 472, 'word': '##K', 'start': 927, 'end': 928}, {'entity': 'I-ORG', 'score': 0.6907934, 'index': 474, 'word': '##ND', 'start': 930, 'end': 932}, {'entity': 'I-ORG', 'score': 0.6278087, 'index': 479, 'word': 'BA', 'start': 938, 'end': 940}, {'entity': 'I-ORG', 'score': 0.4838194, 'index': 481, 'word': '##IM', 'start': 942, 'end': 944}, {'entity': 'I-ORG', 'score': 0.97630763, 'index': 483, 'word': '##E', 'start': 946, 'end': 947}, {'entity': 'I-ORG', 'score': 0.96493775, 'index': 486, 'word': '##AT', 'start': 953, 'end': 955}, {'entity': 'I-ORG', 'score': 0.98805785, 'index': 487, 'word': '##TL', 'start': 955, 'end': 957}, {'entity': 'I-ORG', 'score': 0.962513, 'index': 494, 'word': '##AT', 'start': 965, 'end': 967}, {'entity': 'I-ORG', 'score': 0.83514076, 'index': 497, 'word': 'L', 'start': 973, 'end': 974}]
[{'entity': 'I-MISC', 'score': 0.99734926, 'index': 6, 'word': 'MA', 'start': 11, 'end': 13}, {'entity': 'I-MISC', 'score': 0.8064854, 'index': 7, 'word': '##J', 'start': 13, 'end': 14}, {'entity': 'I-MISC', 'score': 0.99231553, 'index': 8, 'word': '##OR', 'start': 14, 'end': 16}, {'entity': 'I-MISC', 'score': 0.99859494, 'index': 9, 'word': 'L', 'start': 17, 'end': 18}, {'entity': 'I-MISC', 'score': 0.8671924, 'index': 10, 'word': '##EA', 'start': 18, 'end': 20}, {'entity': 'I-MISC', 'score': 0.8870861, 'index': 11, 'word': '##G', 'start': 20, 'end': 21}, {'entity': 'I-MISC', 'score': 0.68788457, 'index': 12, 'word': '##UE', 'start': 21, 'end': 23}, {'entity': 'I-LOC', 'score': 0.9982146, 'index': 29, 'word': 'NE', 'start': 48, 'end': 50}, {'entity': 'I-LOC', 'score': 0.99300814, 'index': 30, 'word': '##W', 'start': 50, 'end': 51}, {'entity': 'I-LOC', 'score': 0.99848396, 'index': 31, 'word': 'Y', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9053277, 'index': 32, 'word': '##OR', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.99852306, 'index': 33, 'word': '##K', 'start': 55, 'end': 56}, {'entity': 'I-MISC', 'score': 0.99811506, 'index': 45, 'word': 'Major', 'start': 84, 'end': 89}, {'entity': 'I-MISC', 'score': 0.99849975, 'index': 46, 'word': 'League', 'start': 90, 'end': 96}, {'entity': 'I-MISC', 'score': 0.9220487, 'index': 49, 'word': 'S', 'start': 99, 'end': 100}, {'entity': 'I-MISC', 'score': 0.5235963, 'index': 68, 'word': 'American', 'start': 165, 'end': 173}, {'entity': 'I-MISC', 'score': 0.5730437, 'index': 69, 'word': 'League', 'start': 174, 'end': 180}, {'entity': 'I-ORG', 'score': 0.99926513, 'index': 74, 'word': 'DE', 'start': 186, 'end': 188}, {'entity': 'I-ORG', 'score': 0.9988017, 'index': 75, 'word': '##TR', 'start': 188, 'end': 190}, {'entity': 'I-ORG', 'score': 0.9985669, 'index': 76, 'word': '##O', 'start': 190, 'end': 191}, {'entity': 'I-ORG', 'score': 0.99904627, 'index': 77, 'word': '##IT', 'start': 191, 'end': 193}, {'entity': 'I-ORG', 'score': 0.999479, 'index': 79, 'word': 'Kansas', 'start': 196, 'end': 202}, {'entity': 'I-ORG', 'score': 0.9996123, 'index': 80, 'word': 'City', 'start': 203, 'end': 207}, {'entity': 'I-ORG', 'score': 0.99967563, 'index': 86, 'word': 'Minnesota', 'start': 215, 'end': 224}, {'entity': 'I-ORG', 'score': 0.99948967, 'index': 88, 'word': 'MI', 'start': 227, 'end': 229}, {'entity': 'I-ORG', 'score': 0.99861336, 'index': 89, 'word': '##L', 'start': 229, 'end': 230}, {'entity': 'I-ORG', 'score': 0.9991615, 'index': 90, 'word': '##WA', 'start': 230, 'end': 232}, {'entity': 'I-ORG', 'score': 0.9987877, 'index': 91, 'word': '##U', 'start': 232, 'end': 233}, {'entity': 'I-ORG', 'score': 0.998563, 'index': 92, 'word': '##KE', 'start': 233, 'end': 235}, {'entity': 'I-ORG', 'score': 0.9987847, 'index': 93, 'word': '##E', 'start': 235, 'end': 236}, {'entity': 'I-ORG', 'score': 0.9992198, 'index': 99, 'word': 'CA', 'start': 244, 'end': 246}, {'entity': 'I-ORG', 'score': 0.996003, 'index': 100, 'word': '##L', 'start': 246, 'end': 247}, {'entity': 'I-ORG', 'score': 0.99912137, 'index': 101, 'word': '##IF', 'start': 247, 'end': 249}, {'entity': 'I-ORG', 'score': 0.99342394, 'index': 102, 'word': '##OR', 'start': 249, 'end': 251}, {'entity': 'I-ORG', 'score': 0.99842274, 'index': 103, 'word': '##NI', 'start': 251, 'end': 253}, {'entity': 'I-ORG', 'score': 0.9994228, 'index': 104, 'word': '##A', 'start': 253, 'end': 254}, {'entity': 'I-ORG', 'score': 0.9997347, 'index': 106, 'word': 'New', 'start': 258, 'end': 261}, {'entity': 'I-ORG', 'score': 0.99972683, 'index': 107, 'word': 'York', 'start': 262, 'end': 266}, {'entity': 'I-ORG', 'score': 0.99099123, 'index': 113, 'word': 'SE', 'start': 274, 'end': 276}, {'entity': 'I-ORG', 'score': 0.8902097, 'index': 114, 'word': '##AT', 'start': 276, 'end': 278}, {'entity': 'I-ORG', 'score': 0.97777486, 'index': 115, 'word': '##TL', 'start': 278, 'end': 280}, {'entity': 'I-ORG', 'score': 0.99634653, 'index': 116, 'word': '##E', 'start': 280, 'end': 281}, {'entity': 'I-ORG', 'score': 0.99969864, 'index': 118, 'word': 'Baltimore', 'start': 284, 'end': 293}, {'entity': 'I-ORG', 'score': 0.99712354, 'index': 124, 'word': 'National', 'start': 301, 'end': 309}, {'entity': 'I-ORG', 'score': 0.97841746, 'index': 125, 'word': 'League', 'start': 310, 'end': 316}, {'entity': 'I-ORG', 'score': 0.99980325, 'index': 130, 'word': 'San', 'start': 322, 'end': 325}, {'entity': 'I-ORG', 'score': 0.9997315, 'index': 131, 'word': 'Diego', 'start': 326, 'end': 331}, {'entity': 'I-ORG', 'score': 0.99947923, 'index': 133, 'word': 'NE', 'start': 334, 'end': 336}, {'entity': 'I-ORG', 'score': 0.98041373, 'index': 134, 'word': '##W', 'start': 336, 'end': 337}, {'entity': 'I-ORG', 'score': 0.9993511, 'index': 135, 'word': 'Y', 'start': 338, 'end': 339}, {'entity': 'I-ORG', 'score': 0.9549129, 'index': 136, 'word': '##OR', 'start': 339, 'end': 341}, {'entity': 'I-ORG', 'score': 0.99866915, 'index': 137, 'word': '##K', 'start': 341, 'end': 342}, {'entity': 'I-ORG', 'score': 0.9997583, 'index': 143, 'word': 'Chicago', 'start': 350, 'end': 357}, {'entity': 'I-ORG', 'score': 0.9990113, 'index': 145, 'word': 'H', 'start': 360, 'end': 361}, {'entity': 'I-ORG', 'score': 0.9968849, 'index': 146, 'word': '##O', 'start': 361, 'end': 362}, {'entity': 'I-ORG', 'score': 0.99752325, 'index': 147, 'word': '##US', 'start': 362, 'end': 364}, {'entity': 'I-ORG', 'score': 0.99750525, 'index': 148, 'word': '##TO', 'start': 364, 'end': 366}, {'entity': 'I-ORG', 'score': 0.99870205, 'index': 149, 'word': '##N', 'start': 366, 'end': 367}, {'entity': 'I-ORG', 'score': 0.99963117, 'index': 155, 'word': 'Cincinnati', 'start': 375, 'end': 385}, {'entity': 'I-ORG', 'score': 0.9993451, 'index': 157, 'word': 'CO', 'start': 389, 'end': 391}, {'entity': 'I-ORG', 'score': 0.9992812, 'index': 158, 'word': '##L', 'start': 391, 'end': 392}, {'entity': 'I-ORG', 'score': 0.9960884, 'index': 159, 'word': '##OR', 'start': 392, 'end': 394}, {'entity': 'I-ORG', 'score': 0.9991916, 'index': 160, 'word': '##AD', 'start': 394, 'end': 396}, {'entity': 'I-ORG', 'score': 0.99908555, 'index': 161, 'word': '##O', 'start': 396, 'end': 397}, {'entity': 'I-ORG', 'score': 0.99936455, 'index': 167, 'word': 'Atlanta', 'start': 405, 'end': 412}, {'entity': 'I-ORG', 'score': 0.9974343, 'index': 169, 'word': 'P', 'start': 415, 'end': 416}, {'entity': 'I-ORG', 'score': 0.9415165, 'index': 170, 'word': '##IT', 'start': 416, 'end': 418}, {'entity': 'I-ORG', 'score': 0.9966035, 'index': 171, 'word': '##TS', 'start': 418, 'end': 420}, {'entity': 'I-ORG', 'score': 0.97434527, 'index': 172, 'word': '##B', 'start': 420, 'end': 421}, {'entity': 'I-ORG', 'score': 0.70445204, 'index': 174, 'word': '##G', 'start': 423, 'end': 424}, {'entity': 'I-ORG', 'score': 0.99608094, 'index': 175, 'word': '##H', 'start': 424, 'end': 425}, {'entity': 'I-ORG', 'score': 0.9994624, 'index': 181, 'word': 'Los', 'start': 433, 'end': 436}, {'entity': 'I-ORG', 'score': 0.9994992, 'index': 182, 'word': 'Angeles', 'start': 437, 'end': 444}, {'entity': 'I-ORG', 'score': 0.9927539, 'index': 184, 'word': 'M', 'start': 447, 'end': 448}, {'entity': 'I-ORG', 'score': 0.9782631, 'index': 185, 'word': '##ON', 'start': 448, 'end': 450}, {'entity': 'I-ORG', 'score': 0.9825051, 'index': 186, 'word': '##TR', 'start': 450, 'end': 452}, {'entity': 'I-ORG', 'score': 0.901983, 'index': 187, 'word': '##EA', 'start': 452, 'end': 454}, {'entity': 'I-ORG', 'score': 0.9977714, 'index': 188, 'word': '##L', 'start': 454, 'end': 455}, {'entity': 'I-ORG', 'score': 0.99857235, 'index': 194, 'word': 'Florida', 'start': 463, 'end': 470}, {'entity': 'I-ORG', 'score': 0.99606425, 'index': 196, 'word': 'ST', 'start': 474, 'end': 476}, {'entity': 'I-ORG', 'score': 0.99667966, 'index': 197, 'word': 'L', 'start': 477, 'end': 478}, {'entity': 'I-ORG', 'score': 0.993178, 'index': 198, 'word': '##O', 'start': 478, 'end': 479}, {'entity': 'I-ORG', 'score': 0.99026066, 'index': 199, 'word': '##UI', 'start': 479, 'end': 481}, {'entity': 'I-ORG', 'score': 0.9955765, 'index': 200, 'word': '##S', 'start': 481, 'end': 482}]
[{'entity': 'I-PER', 'score': 0.9943019, 'index': 6, 'word': 'T', 'start': 9, 'end': 10}, {'entity': 'I-PER', 'score': 0.56881785, 'index': 7, 'word': '##AR', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.57914203, 'index': 8, 'word': '##AN', 'start': 12, 'end': 14}, {'entity': 'I-PER', 'score': 0.6626882, 'index': 9, 'word': '##G', 'start': 14, 'end': 15}, {'entity': 'I-PER', 'score': 0.9416966, 'index': 10, 'word': '##O', 'start': 15, 'end': 16}, {'entity': 'I-PER', 'score': 0.9844392, 'index': 12, 'word': 'O', 'start': 19, 'end': 20}, {'entity': 'I-ORG', 'score': 0.6150104, 'index': 14, 'word': 'BR', 'start': 21, 'end': 23}, {'entity': 'I-ORG', 'score': 0.47842312, 'index': 15, 'word': '##IE', 'start': 23, 'end': 25}, {'entity': 'I-PER', 'score': 0.99949014, 'index': 39, 'word': 'Larry', 'start': 70, 'end': 75}, {'entity': 'I-PER', 'score': 0.9996032, 'index': 40, 'word': 'Fine', 'start': 76, 'end': 80}, {'entity': 'I-LOC', 'score': 0.9988568, 'index': 45, 'word': 'NE', 'start': 86, 'end': 88}, {'entity': 'I-LOC', 'score': 0.99148643, 'index': 46, 'word': '##W', 'start': 88, 'end': 89}, {'entity': 'I-LOC', 'score': 0.998389, 'index': 47, 'word': 'Y', 'start': 90, 'end': 91}, {'entity': 'I-LOC', 'score': 0.9258383, 'index': 48, 'word': '##OR', 'start': 91, 'end': 93}, {'entity': 'I-LOC', 'score': 0.999116, 'index': 49, 'word': '##K', 'start': 93, 'end': 94}, {'entity': 'I-PER', 'score': 0.99962175, 'index': 59, 'word': 'Andre', 'start': 111, 'end': 116}, {'entity': 'I-PER', 'score': 0.9994184, 'index': 60, 'word': 'A', 'start': 117, 'end': 118}, {'entity': 'I-PER', 'score': 0.98333806, 'index': 61, 'word': '##gas', 'start': 118, 'end': 121}, {'entity': 'I-PER', 'score': 0.9912142, 'index': 62, 'word': '##si', 'start': 121, 'end': 123}, {'entity': 'I-MISC', 'score': 0.9985153, 'index': 68, 'word': 'Wimbledon', 'start': 157, 'end': 166}, {'entity': 'I-PER', 'score': 0.99935037, 'index': 70, 'word': 'Mali', 'start': 176, 'end': 180}, {'entity': 'I-PER', 'score': 0.9916535, 'index': 71, 'word': '##V', 'start': 180, 'end': 181}, {'entity': 'I-PER', 'score': 0.99945825, 'index': 72, 'word': '##ai', 'start': 181, 'end': 183}, {'entity': 'I-PER', 'score': 0.9997274, 'index': 73, 'word': 'Washington', 'start': 184, 'end': 194}, {'entity': 'I-PER', 'score': 0.9995982, 'index': 75, 'word': 'Marcel', 'start': 199, 'end': 205}, {'entity': 'I-PER', 'score': 0.99949396, 'index': 76, 'word': '##o', 'start': 205, 'end': 206}, {'entity': 'I-PER', 'score': 0.9995122, 'index': 77, 'word': 'Rio', 'start': 207, 'end': 210}, {'entity': 'I-PER', 'score': 0.9977629, 'index': 78, 'word': '##s', 'start': 210, 'end': 211}, {'entity': 'I-MISC', 'score': 0.99459887, 'index': 91, 'word': 'U', 'start': 262, 'end': 263}, {'entity': 'I-MISC', 'score': 0.99711466, 'index': 93, 'word': 'S', 'start': 264, 'end': 265}, {'entity': 'I-MISC', 'score': 0.98410875, 'index': 94, 'word': '.', 'start': 265, 'end': 266}, {'entity': 'I-MISC', 'score': 0.99820065, 'index': 95, 'word': 'Open', 'start': 267, 'end': 271}, {'entity': 'I-PER', 'score': 0.9994223, 'index': 105, 'word': 'Washington', 'start': 295, 'end': 305}, {'entity': 'I-MISC', 'score': 0.9987469, 'index': 113, 'word': 'Wimbledon', 'start': 334, 'end': 343}, {'entity': 'I-PER', 'score': 0.9996836, 'index': 125, 'word': 'Alex', 'start': 392, 'end': 396}, {'entity': 'I-PER', 'score': 0.9997577, 'index': 126, 'word': 'O', 'start': 397, 'end': 398}, {'entity': 'I-PER', 'score': 0.99556327, 'index': 127, 'word': "'", 'start': 398, 'end': 399}, {'entity': 'I-PER', 'score': 0.9997117, 'index': 128, 'word': 'Brien', 'start': 399, 'end': 404}, {'entity': 'I-LOC', 'score': 0.97155255, 'index': 153, 'word': 'Stadium', 'start': 465, 'end': 472}, {'entity': 'I-PER', 'score': 0.99958795, 'index': 169, 'word': 'Rio', 'start': 526, 'end': 529}, {'entity': 'I-PER', 'score': 0.99565107, 'index': 170, 'word': '##s', 'start': 529, 'end': 530}, {'entity': 'I-MISC', 'score': 0.9984523, 'index': 177, 'word': 'Wimbledon', 'start': 561, 'end': 570}, {'entity': 'I-PER', 'score': 0.9996948, 'index': 183, 'word': 'Jeff', 'start': 593, 'end': 597}, {'entity': 'I-PER', 'score': 0.99931514, 'index': 184, 'word': 'Tara', 'start': 598, 'end': 602}, {'entity': 'I-PER', 'score': 0.9963491, 'index': 185, 'word': '##ngo', 'start': 602, 'end': 605}, {'entity': 'I-MISC', 'score': 0.99848735, 'index': 201, 'word': 'Chilean', 'start': 656, 'end': 663}, {'entity': 'I-PER', 'score': 0.9995908, 'index': 230, 'word': 'A', 'start': 757, 'end': 758}, {'entity': 'I-PER', 'score': 0.98790586, 'index': 231, 'word': '##gas', 'start': 758, 'end': 761}, {'entity': 'I-PER', 'score': 0.99481815, 'index': 232, 'word': '##si', 'start': 761, 'end': 763}, {'entity': 'I-LOC', 'score': 0.99975234, 'index': 258, 'word': 'India', 'start': 853, 'end': 858}, {'entity': 'I-PER', 'score': 0.9996568, 'index': 261, 'word': 'Lea', 'start': 862, 'end': 865}, {'entity': 'I-PER', 'score': 0.99960345, 'index': 262, 'word': '##nder', 'start': 865, 'end': 869}, {'entity': 'I-PER', 'score': 0.9996997, 'index': 263, 'word': 'Pa', 'start': 870, 'end': 872}, {'entity': 'I-PER', 'score': 0.9993063, 'index': 264, 'word': '##es', 'start': 872, 'end': 874}, {'entity': 'I-PER', 'score': 0.9996468, 'index': 284, 'word': 'Washington', 'start': 928, 'end': 938}, {'entity': 'I-PER', 'score': 0.99975723, 'index': 304, 'word': 'Todd', 'start': 1018, 'end': 1022}, {'entity': 'I-PER', 'score': 0.99979097, 'index': 305, 'word': 'Martin', 'start': 1023, 'end': 1029}, {'entity': 'I-MISC', 'score': 0.9983973, 'index': 308, 'word': 'Wimbledon', 'start': 1037, 'end': 1046}, {'entity': 'I-PER', 'score': 0.9997378, 'index': 323, 'word': 'O', 'start': 1114, 'end': 1115}, {'entity': 'I-PER', 'score': 0.9982956, 'index': 324, 'word': "'", 'start': 1115, 'end': 1116}, {'entity': 'I-PER', 'score': 0.9993123, 'index': 325, 'word': 'Brien', 'start': 1116, 'end': 1121}, {'entity': 'I-LOC', 'score': 0.999553, 'index': 333, 'word': 'New', 'start': 1150, 'end': 1153}, {'entity': 'I-LOC', 'score': 0.9992106, 'index': 334, 'word': 'Haven', 'start': 1154, 'end': 1159}, {'entity': 'I-PER', 'score': 0.9984084, 'index': 354, 'word': 'Washington', 'start': 1238, 'end': 1248}, {'entity': 'I-PER', 'score': 0.99154377, 'index': 398, 'word': 'O', 'start': 1427, 'end': 1428}, {'entity': 'I-PER', 'score': 0.99426264, 'index': 400, 'word': 'Brien', 'start': 1429, 'end': 1434}, {'entity': 'I-PER', 'score': 0.9251896, 'index': 446, 'word': 'O', 'start': 1596, 'end': 1597}, {'entity': 'I-PER', 'score': 0.9770785, 'index': 448, 'word': 'Brien', 'start': 1598, 'end': 1603}, {'entity': 'I-LOC', 'score': 0.97202456, 'index': 452, 'word': 'U', 'start': 1615, 'end': 1616}, {'entity': 'I-PER', 'score': 0.9909733, 'index': 475, 'word': 'Washington', 'start': 1707, 'end': 1717}, {'entity': 'I-PER', 'score': 0.990719, 'index': 493, 'word': 'Washington', 'start': 1783, 'end': 1793}]
[{'entity': 'I-MISC', 'score': 0.9395738, 'index': 1, 'word': 'NFL', 'start': 0, 'end': 3}, {'entity': 'I-MISC', 'score': 0.9984022, 'index': 2, 'word': 'AM', 'start': 4, 'end': 6}, {'entity': 'I-MISC', 'score': 0.96537805, 'index': 3, 'word': '##ER', 'start': 6, 'end': 8}, {'entity': 'I-MISC', 'score': 0.99710137, 'index': 4, 'word': '##IC', 'start': 8, 'end': 10}, {'entity': 'I-MISC', 'score': 0.99928457, 'index': 5, 'word': '##AN', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.4131423, 'index': 12, 'word': 'RA', 'start': 22, 'end': 24}, {'entity': 'I-PER', 'score': 0.59100443, 'index': 16, 'word': 'C', 'start': 30, 'end': 31}, {'entity': 'I-MISC', 'score': 0.33716026, 'index': 18, 'word': '##NI', 'start': 33, 'end': 35}, {'entity': 'I-MISC', 'score': 0.496524, 'index': 19, 'word': '##NG', 'start': 35, 'end': 37}, {'entity': 'I-LOC', 'score': 0.9989279, 'index': 31, 'word': 'P', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.97992206, 'index': 32, 'word': '##H', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9905738, 'index': 33, 'word': '##IL', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9971935, 'index': 34, 'word': '##AD', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.99559903, 'index': 35, 'word': '##EL', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.990288, 'index': 36, 'word': '##P', 'start': 64, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9250996, 'index': 37, 'word': '##H', 'start': 65, 'end': 66}, {'entity': 'I-LOC', 'score': 0.99678624, 'index': 38, 'word': '##IA', 'start': 66, 'end': 68}, {'entity': 'I-PER', 'score': 0.9995735, 'index': 48, 'word': 'Randall', 'start': 85, 'end': 92}, {'entity': 'I-PER', 'score': 0.99973685, 'index': 49, 'word': 'Cunningham', 'start': 93, 'end': 103}, {'entity': 'I-MISC', 'score': 0.71229136, 'index': 52, 'word': 'National', 'start': 110, 'end': 118}, {'entity': 'I-ORG', 'score': 0.53698474, 'index': 53, 'word': 'Football', 'start': 119, 'end': 127}, {'entity': 'I-ORG', 'score': 0.60843194, 'index': 54, 'word': 'League', 'start': 128, 'end': 134}, {'entity': 'I-PER', 'score': 0.9997371, 'index': 87, 'word': 'Cunningham', 'start': 270, 'end': 280}, {'entity': 'I-ORG', 'score': 0.9992047, 'index': 97, 'word': 'Philadelphia', 'start': 323, 'end': 335}, {'entity': 'I-ORG', 'score': 0.9993963, 'index': 98, 'word': 'Eagles', 'start': 336, 'end': 342}, {'entity': 'I-MISC', 'score': 0.98837364, 'index': 108, 'word': 'Pro', 'start': 363, 'end': 366}, {'entity': 'I-MISC', 'score': 0.99600226, 'index': 109, 'word': 'Bowl', 'start': 367, 'end': 371}, {'entity': 'I-PER', 'score': 0.99970573, 'index': 112, 'word': 'Cunningham', 'start': 384, 'end': 394}, {'entity': 'I-ORG', 'score': 0.99897146, 'index': 136, 'word': 'Eagles', 'start': 468, 'end': 474}, {'entity': 'I-LOC', 'score': 0.9936512, 'index': 143, 'word': 'Philadelphia', 'start': 514, 'end': 526}, {'entity': 'I-PER', 'score': 0.9996439, 'index': 152, 'word': 'Cunningham', 'start': 570, 'end': 580}, {'entity': 'I-PER', 'score': 0.99975663, 'index': 201, 'word': 'Randall', 'start': 774, 'end': 781}, {'entity': 'I-ORG', 'score': 0.94843954, 'index': 211, 'word': 'NFL', 'start': 827, 'end': 830}, {'entity': 'I-ORG', 'score': 0.9985892, 'index': 216, 'word': 'Eagles', 'start': 848, 'end': 854}, {'entity': 'I-PER', 'score': 0.999108, 'index': 218, 'word': 'Jeffrey', 'start': 861, 'end': 868}, {'entity': 'I-PER', 'score': 0.999466, 'index': 219, 'word': 'Lu', 'start': 869, 'end': 871}, {'entity': 'I-PER', 'score': 0.9964935, 'index': 220, 'word': '##rie', 'start': 871, 'end': 874}, {'entity': 'I-LOC', 'score': 0.9972631, 'index': 232, 'word': 'Philadelphia', 'start': 907, 'end': 919}, {'entity': 'I-PER', 'score': 0.99978024, 'index': 234, 'word': 'Randall', 'start': 922, 'end': 929}, {'entity': 'I-ORG', 'score': 0.99837625, 'index': 241, 'word': 'Eagles', 'start': 957, 'end': 963}, {'entity': 'I-LOC', 'score': 0.99632555, 'index': 252, 'word': 'Philadelphia', 'start': 1018, 'end': 1030}, {'entity': 'I-ORG', 'score': 0.96802795, 'index': 258, 'word': 'NFL', 'start': 1053, 'end': 1056}, {'entity': 'I-PER', 'score': 0.999686, 'index': 273, 'word': 'Cunningham', 'start': 1098, 'end': 1108}, {'entity': 'I-PER', 'score': 0.99962544, 'index': 307, 'word': 'Cunningham', 'start': 1201, 'end': 1211}]
[{'entity': 'I-MISC', 'score': 0.97830224, 'index': 12, 'word': 'G', 'start': 25, 'end': 26}, {'entity': 'I-MISC', 'score': 0.40603322, 'index': 13, 'word': '##RE', 'start': 26, 'end': 28}, {'entity': 'I-MISC', 'score': 0.56172043, 'index': 14, 'word': '##AT', 'start': 28, 'end': 30}, {'entity': 'I-MISC', 'score': 0.902508, 'index': 15, 'word': '##ER', 'start': 30, 'end': 32}, {'entity': 'I-MISC', 'score': 0.99483716, 'index': 16, 'word': 'MI', 'start': 33, 'end': 35}, {'entity': 'I-MISC', 'score': 0.52745056, 'index': 17, 'word': '##L', 'start': 35, 'end': 36}, {'entity': 'I-MISC', 'score': 0.60535485, 'index': 18, 'word': '##WA', 'start': 36, 'end': 38}, {'entity': 'I-MISC', 'score': 0.80203027, 'index': 19, 'word': '##U', 'start': 38, 'end': 39}, {'entity': 'I-MISC', 'score': 0.7725916, 'index': 20, 'word': '##KE', 'start': 39, 'end': 41}, {'entity': 'I-MISC', 'score': 0.99082774, 'index': 21, 'word': '##E', 'start': 41, 'end': 42}, {'entity': 'I-MISC', 'score': 0.99735665, 'index': 22, 'word': 'O', 'start': 43, 'end': 44}, {'entity': 'I-MISC', 'score': 0.9797466, 'index': 23, 'word': '##P', 'start': 44, 'end': 45}, {'entity': 'I-MISC', 'score': 0.9549827, 'index': 24, 'word': '##EN', 'start': 45, 'end': 47}, {'entity': 'I-LOC', 'score': 0.99614173, 'index': 30, 'word': 'MI', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9896443, 'index': 31, 'word': '##L', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.97388, 'index': 32, 'word': '##WA', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.958499, 'index': 33, 'word': '##U', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.98325413, 'index': 34, 'word': '##KE', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.99501145, 'index': 35, 'word': '##E', 'start': 63, 'end': 64}, {'entity': 'I-LOC', 'score': 0.99943477, 'index': 37, 'word': 'Wisconsin', 'start': 67, 'end': 76}, {'entity': 'I-MISC', 'score': 0.9973454, 'index': 60, 'word': 'Greater', 'start': 134, 'end': 141}, {'entity': 'I-MISC', 'score': 0.9967186, 'index': 61, 'word': 'Milwaukee', 'start': 142, 'end': 151}, {'entity': 'I-MISC', 'score': 0.9948114, 'index': 62, 'word': 'Open', 'start': 152, 'end': 156}, {'entity': 'I-LOC', 'score': 0.9166572, 'index': 79, 'word': 'Brown', 'start': 189, 'end': 194}, {'entity': 'I-LOC', 'score': 0.99495596, 'index': 80, 'word': 'Deer', 'start': 195, 'end': 199}, {'entity': 'I-LOC', 'score': 0.9968713, 'index': 81, 'word': 'Park', 'start': 200, 'end': 204}, {'entity': 'I-LOC', 'score': 0.7967907, 'index': 82, 'word': 'Golf', 'start': 205, 'end': 209}, {'entity': 'I-LOC', 'score': 0.9708016, 'index': 83, 'word': 'Course', 'start': 210, 'end': 216}, {'entity': 'I-LOC', 'score': 0.99942017, 'index': 96, 'word': 'U', 'start': 266, 'end': 267}, {'entity': 'I-LOC', 'score': 0.9991033, 'index': 98, 'word': 'S', 'start': 268, 'end': 269}, {'entity': 'I-PER', 'score': 0.9998227, 'index': 109, 'word': 'Nolan', 'start': 297, 'end': 302}, {'entity': 'I-PER', 'score': 0.9997199, 'index': 110, 'word': 'He', 'start': 303, 'end': 305}, {'entity': 'I-PER', 'score': 0.9987066, 'index': 111, 'word': '##nk', 'start': 305, 'end': 307}, {'entity': 'I-PER', 'score': 0.99298155, 'index': 112, 'word': '##e', 'start': 307, 'end': 308}, {'entity': 'I-PER', 'score': 0.9998122, 'index': 118, 'word': 'Bob', 'start': 317, 'end': 320}, {'entity': 'I-PER', 'score': 0.9996567, 'index': 119, 'word': 'E', 'start': 321, 'end': 322}, {'entity': 'I-PER', 'score': 0.99893886, 'index': 120, 'word': '##ste', 'start': 322, 'end': 325}, {'entity': 'I-PER', 'score': 0.9965486, 'index': 121, 'word': '##s', 'start': 325, 'end': 326}, {'entity': 'I-PER', 'score': 0.99980396, 'index': 127, 'word': 'Billy', 'start': 335, 'end': 340}, {'entity': 'I-PER', 'score': 0.99977857, 'index': 128, 'word': 'And', 'start': 341, 'end': 344}, {'entity': 'I-PER', 'score': 0.9996357, 'index': 129, 'word': '##rade', 'start': 344, 'end': 348}, {'entity': 'I-PER', 'score': 0.999762, 'index': 131, 'word': 'Duffy', 'start': 351, 'end': 356}, {'entity': 'I-PER', 'score': 0.9996326, 'index': 132, 'word': 'W', 'start': 357, 'end': 358}, {'entity': 'I-PER', 'score': 0.99407506, 'index': 133, 'word': '##aldo', 'start': 358, 'end': 362}, {'entity': 'I-PER', 'score': 0.99870646, 'index': 134, 'word': '##rf', 'start': 362, 'end': 364}, {'entity': 'I-PER', 'score': 0.99969625, 'index': 136, 'word': 'Je', 'start': 367, 'end': 369}, {'entity': 'I-PER', 'score': 0.9996594, 'index': 137, 'word': '##sper', 'start': 369, 'end': 373}, {'entity': 'I-PER', 'score': 0.9997143, 'index': 138, 'word': 'Pa', 'start': 374, 'end': 376}, {'entity': 'I-PER', 'score': 0.9968533, 'index': 139, 'word': '##rne', 'start': 376, 'end': 379}, {'entity': 'I-PER', 'score': 0.9983235, 'index': 140, 'word': '##vik', 'start': 379, 'end': 382}, {'entity': 'I-LOC', 'score': 0.9998641, 'index': 142, 'word': 'Sweden', 'start': 385, 'end': 391}, {'entity': 'I-PER', 'score': 0.9997801, 'index': 149, 'word': 'Neal', 'start': 402, 'end': 406}, {'entity': 'I-PER', 'score': 0.99984753, 'index': 150, 'word': 'Lancaster', 'start': 407, 'end': 416}, {'entity': 'I-PER', 'score': 0.99982554, 'index': 152, 'word': 'Dave', 'start': 419, 'end': 423}, {'entity': 'I-PER', 'score': 0.99988115, 'index': 153, 'word': 'Barr', 'start': 424, 'end': 428}, {'entity': 'I-LOC', 'score': 0.999828, 'index': 155, 'word': 'Canada', 'start': 431, 'end': 437}, {'entity': 'I-PER', 'score': 0.99981076, 'index': 158, 'word': 'Mike', 'start': 442, 'end': 446}, {'entity': 'I-PER', 'score': 0.9998398, 'index': 159, 'word': 'Sullivan', 'start': 447, 'end': 455}, {'entity': 'I-PER', 'score': 0.9998103, 'index': 161, 'word': 'Willie', 'start': 458, 'end': 464}, {'entity': 'I-PER', 'score': 0.9998398, 'index': 166, 'word': 'Wood', 'start': 470, 'end': 474}, {'entity': 'I-PER', 'score': 0.99974734, 'index': 168, 'word': 'Lo', 'start': 477, 'end': 479}, {'entity': 'I-PER', 'score': 0.99971455, 'index': 169, 'word': '##ren', 'start': 479, 'end': 482}, {'entity': 'I-PER', 'score': 0.9998578, 'index': 170, 'word': 'Roberts', 'start': 483, 'end': 490}, {'entity': 'I-PER', 'score': 0.9997979, 'index': 172, 'word': 'Steve', 'start': 493, 'end': 498}, {'entity': 'I-PER', 'score': 0.9996216, 'index': 173, 'word': 'St', 'start': 499, 'end': 501}, {'entity': 'I-PER', 'score': 0.9945228, 'index': 174, 'word': '##rick', 'start': 501, 'end': 505}, {'entity': 'I-PER', 'score': 0.9693749, 'index': 175, 'word': '##er', 'start': 505, 'end': 507}, {'entity': 'I-PER', 'score': 0.9998318, 'index': 177, 'word': 'Brian', 'start': 510, 'end': 515}, {'entity': 'I-PER', 'score': 0.9997832, 'index': 178, 'word': 'C', 'start': 516, 'end': 517}, {'entity': 'I-PER', 'score': 0.99850154, 'index': 179, 'word': '##la', 'start': 517, 'end': 519}, {'entity': 'I-PER', 'score': 0.99926966, 'index': 180, 'word': '##ar', 'start': 519, 'end': 521}, {'entity': 'I-PER', 'score': 0.99981505, 'index': 182, 'word': 'Russ', 'start': 524, 'end': 528}, {'entity': 'I-PER', 'score': 0.9997303, 'index': 183, 'word': 'Co', 'start': 529, 'end': 531}, {'entity': 'I-PER', 'score': 0.997609, 'index': 184, 'word': '##ch', 'start': 531, 'end': 533}, {'entity': 'I-PER', 'score': 0.99547017, 'index': 185, 'word': '##ran', 'start': 533, 'end': 536}, {'entity': 'I-PER', 'score': 0.9998086, 'index': 191, 'word': 'Mark', 'start': 545, 'end': 549}, {'entity': 'I-PER', 'score': 0.9990325, 'index': 192, 'word': 'Cal', 'start': 550, 'end': 553}, {'entity': 'I-PER', 'score': 0.98347175, 'index': 193, 'word': '##ca', 'start': 553, 'end': 555}, {'entity': 'I-PER', 'score': 0.9954157, 'index': 194, 'word': '##ve', 'start': 555, 'end': 557}, {'entity': 'I-PER', 'score': 0.97146577, 'index': 195, 'word': '##cchi', 'start': 557, 'end': 561}, {'entity': 'I-PER', 'score': 0.9843327, 'index': 196, 'word': '##a', 'start': 561, 'end': 562}, {'entity': 'I-PER', 'score': 0.9997701, 'index': 198, 'word': 'Payne', 'start': 565, 'end': 570}, {'entity': 'I-PER', 'score': 0.99983835, 'index': 199, 'word': 'Stewart', 'start': 571, 'end': 578}, {'entity': 'I-PER', 'score': 0.99977106, 'index': 201, 'word': 'Billy', 'start': 581, 'end': 586}, {'entity': 'I-PER', 'score': 0.9997528, 'index': 202, 'word': 'May', 'start': 587, 'end': 590}, {'entity': 'I-PER', 'score': 0.99081767, 'index': 203, 'word': '##fair', 'start': 590, 'end': 594}, {'entity': 'I-PER', 'score': 0.9997675, 'index': 205, 'word': 'Ken', 'start': 597, 'end': 600}, {'entity': 'I-PER', 'score': 0.9996592, 'index': 210, 'word': 'Green', 'start': 606, 'end': 611}, {'entity': 'I-PER', 'score': 0.99977094, 'index': 212, 'word': 'Jerry', 'start': 614, 'end': 619}, {'entity': 'I-PER', 'score': 0.9998598, 'index': 213, 'word': 'Kelly', 'start': 620, 'end': 625}, {'entity': 'I-PER', 'score': 0.99979264, 'index': 215, 'word': 'Tim', 'start': 628, 'end': 631}, {'entity': 'I-PER', 'score': 0.9998698, 'index': 216, 'word': 'Simpson', 'start': 632, 'end': 639}, {'entity': 'I-PER', 'score': 0.9997459, 'index': 218, 'word': 'O', 'start': 642, 'end': 643}, {'entity': 'I-PER', 'score': 0.99970466, 'index': 219, 'word': '##lin', 'start': 643, 'end': 646}, {'entity': 'I-PER', 'score': 0.9998691, 'index': 220, 'word': 'Browne', 'start': 647, 'end': 653}, {'entity': 'I-PER', 'score': 0.99978715, 'index': 222, 'word': 'Shane', 'start': 656, 'end': 661}, {'entity': 'I-PER', 'score': 0.9997478, 'index': 223, 'word': 'Bo', 'start': 662, 'end': 664}, {'entity': 'I-PER', 'score': 0.99697804, 'index': 224, 'word': '##rts', 'start': 664, 'end': 667}, {'entity': 'I-PER', 'score': 0.982193, 'index': 225, 'word': '##ch', 'start': 667, 'end': 669}, {'entity': 'I-PER', 'score': 0.99976784, 'index': 231, 'word': 'Mike', 'start': 677, 'end': 681}, {'entity': 'I-PER', 'score': 0.99976724, 'index': 232, 'word': 'Hu', 'start': 682, 'end': 684}, {'entity': 'I-PER', 'score': 0.9966151, 'index': 233, 'word': '##lbert', 'start': 684, 'end': 689}, {'entity': 'I-PER', 'score': 0.9998129, 'index': 235, 'word': 'Brian', 'start': 692, 'end': 697}, {'entity': 'I-PER', 'score': 0.9996767, 'index': 236, 'word': 'He', 'start': 698, 'end': 700}, {'entity': 'I-PER', 'score': 0.99891734, 'index': 237, 'word': '##nning', 'start': 700, 'end': 705}, {'entity': 'I-PER', 'score': 0.9817598, 'index': 238, 'word': '##er', 'start': 705, 'end': 707}, {'entity': 'I-PER', 'score': 0.9997774, 'index': 240, 'word': 'Tiger', 'start': 710, 'end': 715}, {'entity': 'I-PER', 'score': 0.99986076, 'index': 241, 'word': 'Woods', 'start': 716, 'end': 721}, {'entity': 'I-PER', 'score': 0.9998073, 'index': 243, 'word': 'Steve', 'start': 724, 'end': 729}, {'entity': 'I-PER', 'score': 0.999806, 'index': 244, 'word': 'Ju', 'start': 730, 'end': 732}, {'entity': 'I-PER', 'score': 0.99913883, 'index': 245, 'word': '##rgen', 'start': 732, 'end': 736}, {'entity': 'I-PER', 'score': 0.9994648, 'index': 246, 'word': '##son', 'start': 736, 'end': 739}, {'entity': 'I-PER', 'score': 0.99979633, 'index': 252, 'word': 'Bryan', 'start': 747, 'end': 752}, {'entity': 'I-PER', 'score': 0.9997125, 'index': 253, 'word': 'Go', 'start': 753, 'end': 755}, {'entity': 'I-PER', 'score': 0.999408, 'index': 254, 'word': '##rman', 'start': 755, 'end': 759}]
[{'entity': 'I-PER', 'score': 0.9756379, 'index': 4, 'word': 'H', 'start': 7, 'end': 8}, {'entity': 'I-PER', 'score': 0.9165179, 'index': 5, 'word': '##EN', 'start': 8, 'end': 10}, {'entity': 'I-PER', 'score': 0.92772496, 'index': 6, 'word': '##KE', 'start': 10, 'end': 12}, {'entity': 'I-MISC', 'score': 0.3604843, 'index': 8, 'word': '##A', 'start': 14, 'end': 15}, {'entity': 'I-LOC', 'score': 0.98703164, 'index': 15, 'word': 'MI', 'start': 27, 'end': 29}, {'entity': 'I-LOC', 'score': 0.98215896, 'index': 16, 'word': '##L', 'start': 29, 'end': 30}, {'entity': 'I-LOC', 'score': 0.9759, 'index': 17, 'word': '##WA', 'start': 30, 'end': 32}, {'entity': 'I-LOC', 'score': 0.94038254, 'index': 18, 'word': '##U', 'start': 32, 'end': 33}, {'entity': 'I-LOC', 'score': 0.97392297, 'index': 19, 'word': '##KE', 'start': 33, 'end': 35}, {'entity': 'I-LOC', 'score': 0.9882365, 'index': 20, 'word': '##E', 'start': 35, 'end': 36}, {'entity': 'I-LOC', 'score': 0.9958806, 'index': 39, 'word': 'MI', 'start': 68, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9933694, 'index': 40, 'word': '##L', 'start': 70, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9836142, 'index': 41, 'word': '##WA', 'start': 71, 'end': 73}, {'entity': 'I-LOC', 'score': 0.96576405, 'index': 42, 'word': '##U', 'start': 73, 'end': 74}, {'entity': 'I-LOC', 'score': 0.98699594, 'index': 43, 'word': '##KE', 'start': 74, 'end': 76}, {'entity': 'I-LOC', 'score': 0.99515235, 'index': 44, 'word': '##E', 'start': 76, 'end': 77}, {'entity': 'I-LOC', 'score': 0.9992667, 'index': 46, 'word': 'Wisconsin', 'start': 80, 'end': 89}, {'entity': 'I-PER', 'score': 0.999592, 'index': 56, 'word': 'Nolan', 'start': 106, 'end': 111}, {'entity': 'I-PER', 'score': 0.9995732, 'index': 57, 'word': 'He', 'start': 112, 'end': 114}, {'entity': 'I-PER', 'score': 0.9966859, 'index': 58, 'word': '##nk', 'start': 114, 'end': 116}, {'entity': 'I-PER', 'score': 0.9932555, 'index': 59, 'word': '##e', 'start': 116, 'end': 117}, {'entity': 'I-MISC', 'score': 0.9970897, 'index': 86, 'word': 'Greater', 'start': 213, 'end': 220}, {'entity': 'I-MISC', 'score': 0.9912676, 'index': 87, 'word': 'Milwaukee', 'start': 221, 'end': 230}, {'entity': 'I-MISC', 'score': 0.99491775, 'index': 88, 'word': 'Open', 'start': 231, 'end': 235}, {'entity': 'I-PER', 'score': 0.99952507, 'index': 96, 'word': 'Tiger', 'start': 260, 'end': 265}, {'entity': 'I-PER', 'score': 0.999826, 'index': 97, 'word': 'Woods', 'start': 266, 'end': 271}, {'entity': 'I-PER', 'score': 0.999288, 'index': 109, 'word': 'He', 'start': 313, 'end': 315}, {'entity': 'I-PER', 'score': 0.99290127, 'index': 110, 'word': '##nk', 'start': 315, 'end': 317}, {'entity': 'I-PER', 'score': 0.9707187, 'index': 111, 'word': '##e', 'start': 317, 'end': 318}, {'entity': 'I-PER', 'score': 0.99967873, 'index': 117, 'word': 'Bob', 'start': 346, 'end': 349}, {'entity': 'I-PER', 'score': 0.99952006, 'index': 118, 'word': 'E', 'start': 350, 'end': 351}, {'entity': 'I-PER', 'score': 0.99576086, 'index': 119, 'word': '##ste', 'start': 351, 'end': 354}, {'entity': 'I-PER', 'score': 0.98718923, 'index': 120, 'word': '##s', 'start': 354, 'end': 355}, {'entity': 'I-PER', 'score': 0.9996735, 'index': 125, 'word': 'Billy', 'start': 372, 'end': 377}, {'entity': 'I-PER', 'score': 0.9997193, 'index': 126, 'word': 'And', 'start': 378, 'end': 381}, {'entity': 'I-PER', 'score': 0.99954057, 'index': 127, 'word': '##rade', 'start': 381, 'end': 385}, {'entity': 'I-PER', 'score': 0.9995073, 'index': 129, 'word': 'Duffy', 'start': 388, 'end': 393}, {'entity': 'I-PER', 'score': 0.9995535, 'index': 130, 'word': 'W', 'start': 394, 'end': 395}, {'entity': 'I-PER', 'score': 0.9727762, 'index': 131, 'word': '##aldo', 'start': 395, 'end': 399}, {'entity': 'I-PER', 'score': 0.99909866, 'index': 132, 'word': '##rf', 'start': 399, 'end': 401}, {'entity': 'I-PER', 'score': 0.99962616, 'index': 134, 'word': 'Je', 'start': 406, 'end': 408}, {'entity': 'I-PER', 'score': 0.99936146, 'index': 135, 'word': '##sper', 'start': 408, 'end': 412}, {'entity': 'I-PER', 'score': 0.99967945, 'index': 136, 'word': 'Pa', 'start': 413, 'end': 415}, {'entity': 'I-PER', 'score': 0.9837526, 'index': 137, 'word': '##rne', 'start': 415, 'end': 418}, {'entity': 'I-PER', 'score': 0.9969302, 'index': 138, 'word': '##vik', 'start': 418, 'end': 421}, {'entity': 'I-PER', 'score': 0.9998149, 'index': 144, 'word': 'Woods', 'start': 429, 'end': 434}, {'entity': 'I-MISC', 'score': 0.99672014, 'index': 156, 'word': 'U', 'start': 508, 'end': 509}, {'entity': 'I-MISC', 'score': 0.9973477, 'index': 158, 'word': 'S', 'start': 510, 'end': 511}, {'entity': 'I-MISC', 'score': 0.9739983, 'index': 159, 'word': '.', 'start': 511, 'end': 512}, {'entity': 'I-MISC', 'score': 0.9915555, 'index': 160, 'word': 'Amateur', 'start': 513, 'end': 520}, {'entity': 'I-MISC', 'score': 0.9945515, 'index': 161, 'word': 'Championship', 'start': 521, 'end': 533}, {'entity': 'I-PER', 'score': 0.9997528, 'index': 217, 'word': 'Woods', 'start': 734, 'end': 739}, {'entity': 'I-PER', 'score': 0.9989743, 'index': 280, 'word': 'He', 'start': 914, 'end': 916}, {'entity': 'I-PER', 'score': 0.9920517, 'index': 281, 'word': '##nk', 'start': 916, 'end': 918}, {'entity': 'I-PER', 'score': 0.9594687, 'index': 282, 'word': '##e', 'start': 918, 'end': 919}, {'entity': 'I-MISC', 'score': 0.9489265, 'index': 396, 'word': 'S', 'start': 1328, 'end': 1329}, {'entity': 'I-PER', 'score': 0.9937423, 'index': 398, 'word': 'He', 'start': 1331, 'end': 1333}, {'entity': 'I-PER', 'score': 0.99926037, 'index': 413, 'word': 'Andrew', 'start': 1392, 'end': 1398}, {'entity': 'I-PER', 'score': 0.8684163, 'index': 414, 'word': 'Ma', 'start': 1399, 'end': 1401}, {'entity': 'I-ORG', 'score': 0.47839433, 'index': 427, 'word': 'PGA', 'start': 1451, 'end': 1454}, {'entity': 'I-MISC', 'score': 0.9635785, 'index': 428, 'word': 'Tour', 'start': 1455, 'end': 1459}, {'entity': 'I-PER', 'score': 0.9955575, 'index': 436, 'word': 'Bell', 'start': 1496, 'end': 1500}, {'entity': 'I-MISC', 'score': 0.975293, 'index': 439, 'word': 'Classic', 'start': 1506, 'end': 1513}, {'entity': 'I-MISC', 'score': 0.92368084, 'index': 443, 'word': 'S', 'start': 1518, 'end': 1519}, {'entity': 'I-MISC', 'score': 0.524339, 'index': 445, 'word': 'E', 'start': 1521, 'end': 1522}, {'entity': 'I-LOC', 'score': 0.74373895, 'index': 456, 'word': 'Texas', 'start': 1561, 'end': 1566}, {'entity': 'I-MISC', 'score': 0.96736723, 'index': 457, 'word': 'Open', 'start': 1567, 'end': 1571}, {'entity': 'I-PER', 'score': 0.7129629, 'index': 472, 'word': 'Norte', 'start': 1633, 'end': 1638}, {'entity': 'I-MISC', 'score': 0.9703269, 'index': 474, 'word': 'Open', 'start': 1640, 'end': 1644}, {'entity': 'I-MISC', 'score': 0.9181821, 'index': 501, 'word': 'S', 'start': 1757, 'end': 1758}]
[{'entity': 'I-ORG', 'score': 0.45937312, 'index': 6, 'word': 'S', 'start': 9, 'end': 10}, {'entity': 'I-ORG', 'score': 0.8467315, 'index': 7, 'word': '##IL', 'start': 10, 'end': 12}, {'entity': 'I-ORG', 'score': 0.89884377, 'index': 8, 'word': '##VA', 'start': 12, 'end': 14}, {'entity': 'I-ORG', 'score': 0.99866927, 'index': 34, 'word': 'FIFA', 'start': 57, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9978561, 'index': 40, 'word': 'MA', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9685971, 'index': 41, 'word': '##DR', 'start': 71, 'end': 73}, {'entity': 'I-LOC', 'score': 0.9902692, 'index': 42, 'word': '##ID', 'start': 73, 'end': 75}, {'entity': 'I-MISC', 'score': 0.9973477, 'index': 52, 'word': 'Spanish', 'start': 92, 'end': 99}, {'entity': 'I-ORG', 'score': 0.9995192, 'index': 56, 'word': 'Deportivo', 'start': 120, 'end': 129}, {'entity': 'I-ORG', 'score': 0.9990914, 'index': 57, 'word': 'Co', 'start': 130, 'end': 132}, {'entity': 'I-ORG', 'score': 0.9892582, 'index': 58, 'word': '##run', 'start': 132, 'end': 135}, {'entity': 'I-ORG', 'score': 0.9964561, 'index': 59, 'word': '##a', 'start': 135, 'end': 136}, {'entity': 'I-PER', 'score': 0.99914396, 'index': 65, 'word': 'Ma', 'start': 168, 'end': 170}, {'entity': 'I-PER', 'score': 0.9990889, 'index': 66, 'word': '##uro', 'start': 170, 'end': 173}, {'entity': 'I-PER', 'score': 0.9997087, 'index': 67, 'word': 'Silva', 'start': 174, 'end': 179}, {'entity': 'I-ORG', 'score': 0.99899584, 'index': 74, 'word': 'Real', 'start': 206, 'end': 210}, {'entity': 'I-ORG', 'score': 0.99461335, 'index': 75, 'word': 'Madrid', 'start': 211, 'end': 217}, {'entity': 'I-ORG', 'score': 0.99826753, 'index': 77, 'word': 'FIFA', 'start': 224, 'end': 228}, {'entity': 'I-MISC', 'score': 0.9977323, 'index': 88, 'word': 'Brazilian', 'start': 278, 'end': 287}, {'entity': 'I-MISC', 'score': 0.9967392, 'index': 99, 'word': 'European', 'start': 334, 'end': 342}, {'entity': 'I-PER', 'score': 0.99965405, 'index': 106, 'word': 'Silva', 'start': 355, 'end': 360}, {'entity': 'I-LOC', 'score': 0.9997161, 'index': 112, 'word': 'Brazil', 'start': 386, 'end': 392}, {'entity': 'I-LOC', 'score': 0.99982065, 'index': 117, 'word': 'Russia', 'start': 409, 'end': 415}, {'entity': 'I-LOC', 'score': 0.9998023, 'index': 129, 'word': 'Netherlands', 'start': 464, 'end': 475}]
[{'entity': 'I-PER', 'score': 0.9772364, 'index': 7, 'word': 'MIT', 'start': 12, 'end': 15}, {'entity': 'I-PER', 'score': 0.91326654, 'index': 8, 'word': '##CH', 'start': 15, 'end': 17}, {'entity': 'I-PER', 'score': 0.828714, 'index': 9, 'word': '##EL', 'start': 17, 'end': 19}, {'entity': 'I-PER', 'score': 0.67954165, 'index': 10, 'word': '##L', 'start': 19, 'end': 20}, {'entity': 'I-ORG', 'score': 0.4579901, 'index': 16, 'word': '##IL', 'start': 31, 'end': 33}, {'entity': 'I-PER', 'score': 0.9996227, 'index': 38, 'word': 'Adrian', 'start': 72, 'end': 78}, {'entity': 'I-PER', 'score': 0.99971086, 'index': 39, 'word': 'Warner', 'start': 79, 'end': 85}, {'entity': 'I-LOC', 'score': 0.9969932, 'index': 44, 'word': 'B', 'start': 91, 'end': 92}, {'entity': 'I-LOC', 'score': 0.96936643, 'index': 45, 'word': '##ER', 'start': 92, 'end': 94}, {'entity': 'I-LOC', 'score': 0.9127093, 'index': 46, 'word': '##L', 'start': 94, 'end': 95}, {'entity': 'I-LOC', 'score': 0.9905929, 'index': 47, 'word': '##IN', 'start': 95, 'end': 97}, {'entity': 'I-MISC', 'score': 0.99849236, 'index': 57, 'word': 'American', 'start': 114, 'end': 122}, {'entity': 'I-PER', 'score': 0.99959785, 'index': 58, 'word': 'Dennis', 'start': 123, 'end': 129}, {'entity': 'I-PER', 'score': 0.9997925, 'index': 59, 'word': 'Mitchell', 'start': 130, 'end': 138}, {'entity': 'I-MISC', 'score': 0.99934846, 'index': 64, 'word': 'Olympic', 'start': 150, 'end': 157}, {'entity': 'I-PER', 'score': 0.9996619, 'index': 68, 'word': 'Donovan', 'start': 178, 'end': 185}, {'entity': 'I-PER', 'score': 0.99978024, 'index': 69, 'word': 'Bailey', 'start': 186, 'end': 192}, {'entity': 'I-MISC', 'score': 0.9979068, 'index': 79, 'word': 'Games', 'start': 228, 'end': 233}, {'entity': 'I-MISC', 'score': 0.9992034, 'index': 107, 'word': 'Olympic', 'start': 351, 'end': 358}, {'entity': 'I-LOC', 'score': 0.9994547, 'index': 112, 'word': 'Berlin', 'start': 383, 'end': 389}, {'entity': 'I-PER', 'score': 0.99974686, 'index': 118, 'word': 'Mitchell', 'start': 411, 'end': 419}, {'entity': 'I-PER', 'score': 0.99963534, 'index': 130, 'word': 'Bailey', 'start': 474, 'end': 480}, {'entity': 'I-PER', 'score': 0.99974483, 'index': 150, 'word': 'Bailey', 'start': 553, 'end': 559}, {'entity': 'I-LOC', 'score': 0.99922574, 'index': 167, 'word': 'Atlanta', 'start': 618, 'end': 625}, {'entity': 'I-MISC', 'score': 0.9994123, 'index': 173, 'word': 'American', 'start': 648, 'end': 656}, {'entity': 'I-LOC', 'score': 0.99962354, 'index': 190, 'word': 'Jamaica', 'start': 716, 'end': 723}, {'entity': 'I-PER', 'score': 0.9997043, 'index': 193, 'word': 'Michael', 'start': 727, 'end': 734}, {'entity': 'I-PER', 'score': 0.9997271, 'index': 194, 'word': 'Green', 'start': 735, 'end': 740}, {'entity': 'I-PER', 'score': 0.99963486, 'index': 202, 'word': 'Bailey', 'start': 768, 'end': 774}, {'entity': 'I-PER', 'score': 0.999783, 'index': 215, 'word': 'Mitchell', 'start': 813, 'end': 821}, {'entity': 'I-MISC', 'score': 0.7041842, 'index': 222, 'word': 'Atlanta', 'start': 851, 'end': 858}, {'entity': 'I-MISC', 'score': 0.9934883, 'index': 223, 'word': 'Games', 'start': 859, 'end': 864}, {'entity': 'I-MISC', 'score': 0.9991861, 'index': 231, 'word': 'Olympic', 'start': 886, 'end': 893}, {'entity': 'I-PER', 'score': 0.9997055, 'index': 234, 'word': 'Bailey', 'start': 914, 'end': 920}, {'entity': 'I-LOC', 'score': 0.99937195, 'index': 240, 'word': 'Brussels', 'start': 939, 'end': 947}, {'entity': 'I-PER', 'score': 0.9997502, 'index': 254, 'word': 'Bailey', 'start': 1002, 'end': 1008}, {'entity': 'I-LOC', 'score': 0.9995426, 'index': 256, 'word': 'Zurich', 'start': 1012, 'end': 1018}, {'entity': 'I-LOC', 'score': 0.99927014, 'index': 262, 'word': 'Berlin', 'start': 1026, 'end': 1032}, {'entity': 'I-LOC', 'score': 0.9989987, 'index': 264, 'word': 'Brussels', 'start': 1035, 'end': 1043}, {'entity': 'I-LOC', 'score': 0.99906677, 'index': 266, 'word': 'Zurich', 'start': 1048, 'end': 1054}, {'entity': 'I-MISC', 'score': 0.99209315, 'index': 279, 'word': 'Golden', 'start': 1114, 'end': 1120}, {'entity': 'I-MISC', 'score': 0.9945809, 'index': 280, 'word': 'Four', 'start': 1121, 'end': 1125}, {'entity': 'I-MISC', 'score': 0.99927217, 'index': 292, 'word': 'Olympic', 'start': 1164, 'end': 1171}, {'entity': 'I-PER', 'score': 0.9992994, 'index': 323, 'word': 'Jesse', 'start': 1313, 'end': 1318}, {'entity': 'I-PER', 'score': 0.9995615, 'index': 324, 'word': 'Owens', 'start': 1319, 'end': 1324}, {'entity': 'I-MISC', 'score': 0.9931466, 'index': 333, 'word': 'Olympics', 'start': 1357, 'end': 1365}, {'entity': 'I-LOC', 'score': 0.9995235, 'index': 337, 'word': 'Berlin', 'start': 1378, 'end': 1384}, {'entity': 'I-PER', 'score': 0.9996772, 'index': 357, 'word': 'Mitchell', 'start': 1466, 'end': 1474}, {'entity': 'I-MISC', 'score': 0.998755, 'index': 369, 'word': 'American', 'start': 1518, 'end': 1526}, {'entity': 'I-MISC', 'score': 0.9979674, 'index': 370, 'word': 'Olympic', 'start': 1527, 'end': 1534}, {'entity': 'I-PER', 'score': 0.9996012, 'index': 372, 'word': 'Gail', 'start': 1544, 'end': 1548}, {'entity': 'I-PER', 'score': 0.99982244, 'index': 373, 'word': 'Dev', 'start': 1549, 'end': 1552}, {'entity': 'I-PER', 'score': 0.9994036, 'index': 374, 'word': '##ers', 'start': 1552, 'end': 1555}, {'entity': 'I-MISC', 'score': 0.997724, 'index': 393, 'word': 'Jamaican', 'start': 1629, 'end': 1637}, {'entity': 'I-PER', 'score': 0.9992894, 'index': 395, 'word': 'Me', 'start': 1644, 'end': 1646}, {'entity': 'I-PER', 'score': 0.7392489, 'index': 396, 'word': '##rlene', 'start': 1646, 'end': 1651}, {'entity': 'I-PER', 'score': 0.9990565, 'index': 397, 'word': 'O', 'start': 1652, 'end': 1653}, {'entity': 'I-PER', 'score': 0.61216193, 'index': 398, 'word': '##tte', 'start': 1653, 'end': 1656}, {'entity': 'I-PER', 'score': 0.98713315, 'index': 411, 'word': 'S', 'start': 1688, 'end': 1689}]
[{'entity': 'I-LOC', 'score': 0.81837267, 'index': 7, 'word': 'B', 'start': 12, 'end': 13}, {'entity': 'I-LOC', 'score': 0.71015424, 'index': 8, 'word': '##ER', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.64187115, 'index': 9, 'word': '##L', 'start': 15, 'end': 16}, {'entity': 'I-MISC', 'score': 0.5015679, 'index': 10, 'word': '##IN', 'start': 16, 'end': 18}, {'entity': 'I-MISC', 'score': 0.99005604, 'index': 11, 'word': 'G', 'start': 19, 'end': 20}, {'entity': 'I-MISC', 'score': 0.903196, 'index': 12, 'word': '##RA', 'start': 20, 'end': 22}, {'entity': 'I-MISC', 'score': 0.9938553, 'index': 13, 'word': '##ND', 'start': 22, 'end': 24}, {'entity': 'I-MISC', 'score': 0.995119, 'index': 14, 'word': 'PR', 'start': 25, 'end': 27}, {'entity': 'I-MISC', 'score': 0.9855532, 'index': 15, 'word': '##IX', 'start': 27, 'end': 29}, {'entity': 'I-LOC', 'score': 0.98361754, 'index': 26, 'word': 'B', 'start': 45, 'end': 46}, {'entity': 'I-LOC', 'score': 0.8646078, 'index': 27, 'word': '##ER', 'start': 46, 'end': 48}, {'entity': 'I-LOC', 'score': 0.82188886, 'index': 28, 'word': '##L', 'start': 48, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9095545, 'index': 29, 'word': '##IN', 'start': 49, 'end': 51}, {'entity': 'I-LOC', 'score': 0.79300356, 'index': 43, 'word': 'Berlin', 'start': 91, 'end': 97}, {'entity': 'I-MISC', 'score': 0.96665156, 'index': 44, 'word': '<', 'start': 98, 'end': 99}, {'entity': 'I-MISC', 'score': 0.9824922, 'index': 46, 'word': 'S', 'start': 100, 'end': 101}, {'entity': 'I-MISC', 'score': 0.91035146, 'index': 48, 'word': 'Grand', 'start': 103, 'end': 108}, {'entity': 'I-MISC', 'score': 0.9985025, 'index': 49, 'word': 'Prix', 'start': 109, 'end': 113}, {'entity': 'I-PER', 'score': 0.9997944, 'index': 71, 'word': 'Michelle', 'start': 185, 'end': 193}, {'entity': 'I-PER', 'score': 0.9998542, 'index': 72, 'word': 'Freeman', 'start': 194, 'end': 201}, {'entity': 'I-LOC', 'score': 0.9998379, 'index': 74, 'word': 'Jamaica', 'start': 204, 'end': 211}, {'entity': 'I-PER', 'score': 0.99979013, 'index': 86, 'word': 'Lu', 'start': 236, 'end': 238}, {'entity': 'I-PER', 'score': 0.998418, 'index': 87, 'word': '##d', 'start': 238, 'end': 239}, {'entity': 'I-PER', 'score': 0.99964046, 'index': 88, 'word': '##mi', 'start': 239, 'end': 241}, {'entity': 'I-PER', 'score': 0.99974245, 'index': 89, 'word': '##la', 'start': 241, 'end': 243}, {'entity': 'I-PER', 'score': 0.9996935, 'index': 90, 'word': 'En', 'start': 244, 'end': 246}, {'entity': 'I-PER', 'score': 0.99895775, 'index': 91, 'word': '##g', 'start': 246, 'end': 247}, {'entity': 'I-PER', 'score': 0.9994079, 'index': 92, 'word': '##quist', 'start': 247, 'end': 252}, {'entity': 'I-LOC', 'score': 0.99989057, 'index': 94, 'word': 'Sweden', 'start': 255, 'end': 261}, {'entity': 'I-PER', 'score': 0.9997428, 'index': 105, 'word': 'Ali', 'start': 278, 'end': 281}, {'entity': 'I-PER', 'score': 0.9996068, 'index': 106, 'word': '##usk', 'start': 281, 'end': 284}, {'entity': 'I-PER', 'score': 0.99958235, 'index': 107, 'word': '##a', 'start': 284, 'end': 285}, {'entity': 'I-PER', 'score': 0.9998642, 'index': 108, 'word': 'Lopez', 'start': 286, 'end': 291}, {'entity': 'I-LOC', 'score': 0.9998266, 'index': 110, 'word': 'Cuba', 'start': 294, 'end': 298}, {'entity': 'I-PER', 'score': 0.9997311, 'index': 121, 'word': 'B', 'start': 315, 'end': 316}, {'entity': 'I-PER', 'score': 0.99948347, 'index': 122, 'word': '##rig', 'start': 316, 'end': 319}, {'entity': 'I-PER', 'score': 0.9996457, 'index': 123, 'word': '##ita', 'start': 319, 'end': 322}, {'entity': 'I-PER', 'score': 0.9996383, 'index': 124, 'word': 'Bo', 'start': 323, 'end': 325}, {'entity': 'I-PER', 'score': 0.998838, 'index': 125, 'word': '##kov', 'start': 325, 'end': 328}, {'entity': 'I-PER', 'score': 0.9989962, 'index': 126, 'word': '##ec', 'start': 328, 'end': 330}, {'entity': 'I-LOC', 'score': 0.9997547, 'index': 128, 'word': 'Slovenia', 'start': 333, 'end': 341}, {'entity': 'I-PER', 'score': 0.99978405, 'index': 139, 'word': 'Dion', 'start': 358, 'end': 362}, {'entity': 'I-PER', 'score': 0.9997316, 'index': 140, 'word': '##ne', 'start': 362, 'end': 364}, {'entity': 'I-PER', 'score': 0.9998215, 'index': 141, 'word': 'Rose', 'start': 365, 'end': 369}, {'entity': 'I-LOC', 'score': 0.99978966, 'index': 143, 'word': 'Jamaica', 'start': 372, 'end': 379}, {'entity': 'I-PER', 'score': 0.999782, 'index': 154, 'word': 'Julie', 'start': 396, 'end': 401}, {'entity': 'I-PER', 'score': 0.9997608, 'index': 155, 'word': 'Ba', 'start': 402, 'end': 404}, {'entity': 'I-PER', 'score': 0.9983632, 'index': 156, 'word': '##uman', 'start': 404, 'end': 408}, {'entity': 'I-PER', 'score': 0.99848807, 'index': 157, 'word': '##n', 'start': 408, 'end': 409}, {'entity': 'I-LOC', 'score': 0.9998853, 'index': 159, 'word': 'Switzerland', 'start': 412, 'end': 423}, {'entity': 'I-PER', 'score': 0.9997913, 'index': 170, 'word': 'Gillian', 'start': 440, 'end': 447}, {'entity': 'I-PER', 'score': 0.9998448, 'index': 171, 'word': 'Russell', 'start': 448, 'end': 455}, {'entity': 'I-LOC', 'score': 0.9997478, 'index': 173, 'word': 'Jamaica', 'start': 458, 'end': 465}, {'entity': 'I-PER', 'score': 0.99967074, 'index': 195, 'word': 'S', 'start': 509, 'end': 510}, {'entity': 'I-PER', 'score': 0.99948335, 'index': 196, 'word': '##vet', 'start': 510, 'end': 513}, {'entity': 'I-PER', 'score': 0.9996394, 'index': 197, 'word': '##lana', 'start': 513, 'end': 517}, {'entity': 'I-PER', 'score': 0.99947375, 'index': 198, 'word': 'Master', 'start': 518, 'end': 524}, {'entity': 'I-PER', 'score': 0.999556, 'index': 199, 'word': '##kova', 'start': 524, 'end': 528}, {'entity': 'I-LOC', 'score': 0.99987054, 'index': 201, 'word': 'Russia', 'start': 531, 'end': 537}, {'entity': 'I-PER', 'score': 0.9998186, 'index': 215, 'word': 'Patricia', 'start': 574, 'end': 582}, {'entity': 'I-PER', 'score': 0.99965143, 'index': 216, 'word': 'D', 'start': 583, 'end': 584}, {'entity': 'I-PER', 'score': 0.9983284, 'index': 217, 'word': '##ja', 'start': 584, 'end': 586}, {'entity': 'I-PER', 'score': 0.9990927, 'index': 218, 'word': '##te', 'start': 586, 'end': 588}, {'entity': 'I-PER', 'score': 0.9740569, 'index': 219, 'word': '-', 'start': 588, 'end': 589}, {'entity': 'I-PER', 'score': 0.9997607, 'index': 220, 'word': 'Tai', 'start': 589, 'end': 592}, {'entity': 'I-PER', 'score': 0.99406, 'index': 221, 'word': '##llar', 'start': 592, 'end': 596}, {'entity': 'I-PER', 'score': 0.99869686, 'index': 222, 'word': '##d', 'start': 596, 'end': 597}, {'entity': 'I-LOC', 'score': 0.9998983, 'index': 224, 'word': 'France', 'start': 600, 'end': 606}, {'entity': 'I-PER', 'score': 0.9998072, 'index': 237, 'word': 'Carla', 'start': 625, 'end': 630}, {'entity': 'I-PER', 'score': 0.9998386, 'index': 238, 'word': 'Sacramento', 'start': 631, 'end': 641}, {'entity': 'I-LOC', 'score': 0.99985814, 'index': 240, 'word': 'Portugal', 'start': 644, 'end': 652}, {'entity': 'I-PER', 'score': 0.9997583, 'index': 253, 'word': 'Ye', 'start': 671, 'end': 673}, {'entity': 'I-PER', 'score': 0.9994898, 'index': 254, 'word': '##kat', 'start': 673, 'end': 676}, {'entity': 'I-PER', 'score': 0.9997092, 'index': 255, 'word': '##erina', 'start': 676, 'end': 681}, {'entity': 'I-PER', 'score': 0.9995728, 'index': 256, 'word': 'Po', 'start': 682, 'end': 684}, {'entity': 'I-PER', 'score': 0.9976584, 'index': 257, 'word': '##d', 'start': 684, 'end': 685}, {'entity': 'I-PER', 'score': 0.9933124, 'index': 258, 'word': '##ko', 'start': 685, 'end': 687}, {'entity': 'I-PER', 'score': 0.99611866, 'index': 259, 'word': '##pa', 'start': 687, 'end': 689}, {'entity': 'I-PER', 'score': 0.99745816, 'index': 260, 'word': '##yev', 'start': 689, 'end': 692}, {'entity': 'I-PER', 'score': 0.979193, 'index': 261, 'word': '##a', 'start': 692, 'end': 693}, {'entity': 'I-LOC', 'score': 0.9997857, 'index': 263, 'word': 'Russia', 'start': 696, 'end': 702}, {'entity': 'I-PER', 'score': 0.99977857, 'index': 276, 'word': 'Leah', 'start': 721, 'end': 725}, {'entity': 'I-PER', 'score': 0.99983084, 'index': 277, 'word': 'P', 'start': 726, 'end': 727}, {'entity': 'I-PER', 'score': 0.99700004, 'index': 278, 'word': '##ell', 'start': 727, 'end': 730}, {'entity': 'I-PER', 'score': 0.9991242, 'index': 279, 'word': '##s', 'start': 730, 'end': 731}, {'entity': 'I-LOC', 'score': 0.9997658, 'index': 281, 'word': 'Canada', 'start': 734, 'end': 740}, {'entity': 'I-PER', 'score': 0.9997862, 'index': 294, 'word': 'Carmen', 'start': 759, 'end': 765}, {'entity': 'I-PER', 'score': 0.9997838, 'index': 295, 'word': 'Wu', 'start': 766, 'end': 768}, {'entity': 'I-PER', 'score': 0.9981059, 'index': 296, 'word': '##este', 'start': 768, 'end': 772}, {'entity': 'I-PER', 'score': 0.9884632, 'index': 297, 'word': '##nh', 'start': 772, 'end': 774}, {'entity': 'I-PER', 'score': 0.9719329, 'index': 298, 'word': '##age', 'start': 774, 'end': 777}, {'entity': 'I-PER', 'score': 0.9915725, 'index': 299, 'word': '##n', 'start': 777, 'end': 778}, {'entity': 'I-LOC', 'score': 0.9998017, 'index': 301, 'word': 'Germany', 'start': 781, 'end': 788}, {'entity': 'I-PER', 'score': 0.9997458, 'index': 314, 'word': 'Mar', 'start': 807, 'end': 810}, {'entity': 'I-PER', 'score': 0.9978922, 'index': 315, 'word': '##gar', 'start': 810, 'end': 813}, {'entity': 'I-PER', 'score': 0.9995974, 'index': 316, 'word': '##ita', 'start': 813, 'end': 816}, {'entity': 'I-PER', 'score': 0.9994716, 'index': 317, 'word': 'Mar', 'start': 817, 'end': 820}, {'entity': 'I-PER', 'score': 0.9622511, 'index': 318, 'word': '##use', 'start': 820, 'end': 823}, {'entity': 'I-PER', 'score': 0.98994994, 'index': 319, 'word': '##va', 'start': 823, 'end': 825}, {'entity': 'I-LOC', 'score': 0.9997954, 'index': 321, 'word': 'Russia', 'start': 828, 'end': 834}, {'entity': 'I-PER', 'score': 0.9997427, 'index': 334, 'word': 'Sara', 'start': 853, 'end': 857}, {'entity': 'I-PER', 'score': 0.9997924, 'index': 335, 'word': 'Thor', 'start': 858, 'end': 862}, {'entity': 'I-PER', 'score': 0.99958545, 'index': 336, 'word': '##sett', 'start': 862, 'end': 866}, {'entity': 'I-LOC', 'score': 0.999678, 'index': 338, 'word': 'U', 'start': 869, 'end': 870}, {'entity': 'I-LOC', 'score': 0.9995796, 'index': 340, 'word': 'S', 'start': 871, 'end': 872}, {'entity': 'I-PER', 'score': 0.99980456, 'index': 364, 'word': 'Mark', 'start': 923, 'end': 927}, {'entity': 'I-PER', 'score': 0.99983525, 'index': 365, 'word': 'C', 'start': 928, 'end': 929}, {'entity': 'I-PER', 'score': 0.9995036, 'index': 366, 'word': '##rea', 'start': 929, 'end': 932}, {'entity': 'I-PER', 'score': 0.999456, 'index': 367, 'word': '##r', 'start': 932, 'end': 933}, {'entity': 'I-LOC', 'score': 0.9997868, 'index': 369, 'word': 'U', 'start': 936, 'end': 937}, {'entity': 'I-LOC', 'score': 0.9996902, 'index': 371, 'word': 'S', 'start': 938, 'end': 939}, {'entity': 'I-PER', 'score': 0.9992324, 'index': 384, 'word': 'Tony', 'start': 965, 'end': 969}, {'entity': 'I-PER', 'score': 0.99759275, 'index': 385, 'word': 'Jarrett', 'start': 970, 'end': 977}, {'entity': 'I-LOC', 'score': 0.9997733, 'index': 387, 'word': 'Britain', 'start': 980, 'end': 987}, {'entity': 'I-PER', 'score': 0.77295613, 'index': 398, 'word': 'F', 'start': 1004, 'end': 1005}, {'entity': 'I-MISC', 'score': 0.41362453, 'index': 400, 'word': '##ian', 'start': 1008, 'end': 1011}, {'entity': 'I-PER', 'score': 0.94705814, 'index': 401, 'word': 'Sc', 'start': 1012, 'end': 1014}, {'entity': 'I-PER', 'score': 0.8141909, 'index': 404, 'word': '##off', 'start': 1020, 'end': 1023}, {'entity': 'I-LOC', 'score': 0.9989858, 'index': 406, 'word': 'Germany', 'start': 1026, 'end': 1033}, {'entity': 'I-PER', 'score': 0.9991918, 'index': 417, 'word': 'Emilio', 'start': 1050, 'end': 1056}, {'entity': 'I-PER', 'score': 0.994145, 'index': 418, 'word': 'Valle', 'start': 1057, 'end': 1062}, {'entity': 'I-LOC', 'score': 0.9992036, 'index': 420, 'word': 'Cuba', 'start': 1065, 'end': 1069}, {'entity': 'I-LOC', 'score': 0.47155327, 'index': 427, 'word': 'S', 'start': 1080, 'end': 1081}, {'entity': 'I-PER', 'score': 0.5600055, 'index': 431, 'word': 'F', 'start': 1086, 'end': 1087}, {'entity': 'I-PER', 'score': 0.7884095, 'index': 432, 'word': '##alk', 'start': 1087, 'end': 1090}, {'entity': 'I-PER', 'score': 0.9914369, 'index': 433, 'word': 'Ba', 'start': 1091, 'end': 1093}, {'entity': 'I-LOC', 'score': 0.99967813, 'index': 437, 'word': 'Germany', 'start': 1100, 'end': 1107}, {'entity': 'I-LOC', 'score': 0.40429, 'index': 444, 'word': 'S', 'start': 1118, 'end': 1119}, {'entity': 'I-PER', 'score': 0.99938905, 'index': 448, 'word': 'Steve', 'start': 1124, 'end': 1129}, {'entity': 'I-PER', 'score': 0.9974081, 'index': 449, 'word': 'Brown', 'start': 1130, 'end': 1135}, {'entity': 'I-PER', 'score': 0.43064478, 'index': 451, 'word': 'U', 'start': 1138, 'end': 1139}, {'entity': 'I-PER', 'score': 0.9991968, 'index': 465, 'word': 'Frank', 'start': 1159, 'end': 1164}, {'entity': 'I-PER', 'score': 0.94861037, 'index': 466, 'word': 'Bus', 'start': 1165, 'end': 1168}, {'entity': 'I-PER', 'score': 0.98240143, 'index': 467, 'word': '##emann', 'start': 1168, 'end': 1173}, {'entity': 'I-LOC', 'score': 0.999113, 'index': 469, 'word': 'Germany', 'start': 1176, 'end': 1183}, {'entity': 'I-PER', 'score': 0.9993339, 'index': 480, 'word': 'Jack', 'start': 1200, 'end': 1204}, {'entity': 'I-PER', 'score': 0.9953157, 'index': 481, 'word': 'Pierce', 'start': 1205, 'end': 1211}, {'entity': 'I-LOC', 'score': 0.4975899, 'index': 483, 'word': 'U', 'start': 1214, 'end': 1215}, {'entity': 'I-PER', 'score': 0.9842456, 'index': 506, 'word': 'Frankie', 'start': 1258, 'end': 1265}, {'entity': 'I-PER', 'score': 0.99331266, 'index': 507, 'word': 'Frederick', 'start': 1266, 'end': 1275}, {'entity': 'I-LOC', 'score': 0.9971156, 'index': 510, 'word': 'Namibia', 'start': 1279, 'end': 1286}]
[{'entity': 'I-LOC', 'score': 0.9971233, 'index': 39, 'word': 'GE', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9850359, 'index': 40, 'word': '##NE', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.9875759, 'index': 41, 'word': '##VA', 'start': 69, 'end': 71}, {'entity': 'I-ORG', 'score': 0.9981749, 'index': 51, 'word': 'UEFA', 'start': 88, 'end': 92}, {'entity': 'I-MISC', 'score': 0.99861825, 'index': 56, 'word': 'Belgian', 'start': 114, 'end': 121}, {'entity': 'I-ORG', 'score': 0.9996822, 'index': 58, 'word': 'Standard', 'start': 127, 'end': 135}, {'entity': 'I-ORG', 'score': 0.9986823, 'index': 59, 'word': 'Lie', 'start': 136, 'end': 139}, {'entity': 'I-ORG', 'score': 0.99937505, 'index': 60, 'word': '##ge', 'start': 139, 'end': 141}, {'entity': 'I-MISC', 'score': 0.99380904, 'index': 74, 'word': 'Inter', 'start': 188, 'end': 193}, {'entity': 'I-MISC', 'score': 0.9631612, 'index': 75, 'word': '##to', 'start': 193, 'end': 195}, {'entity': 'I-MISC', 'score': 0.98329437, 'index': 76, 'word': '##to', 'start': 195, 'end': 197}, {'entity': 'I-ORG', 'score': 0.99823713, 'index': 80, 'word': 'Karl', 'start': 218, 'end': 222}, {'entity': 'I-ORG', 'score': 0.97702163, 'index': 81, 'word': '##s', 'start': 222, 'end': 223}, {'entity': 'I-ORG', 'score': 0.9909566, 'index': 82, 'word': '##ru', 'start': 223, 'end': 225}, {'entity': 'I-ORG', 'score': 0.9980755, 'index': 83, 'word': '##he', 'start': 225, 'end': 227}, {'entity': 'I-LOC', 'score': 0.9997445, 'index': 85, 'word': 'Germany', 'start': 231, 'end': 238}, {'entity': 'I-MISC', 'score': 0.9988336, 'index': 92, 'word': 'Belgian', 'start': 250, 'end': 257}, {'entity': 'I-MISC', 'score': 0.99890995, 'index': 99, 'word': 'Swiss', 'start': 281, 'end': 286}, {'entity': 'I-PER', 'score': 0.9995951, 'index': 116, 'word': 'Guy', 'start': 342, 'end': 345}, {'entity': 'I-PER', 'score': 0.9998012, 'index': 117, 'word': 'Hell', 'start': 346, 'end': 350}, {'entity': 'I-PER', 'score': 0.998329, 'index': 118, 'word': '##ers', 'start': 350, 'end': 353}, {'entity': 'I-PER', 'score': 0.9996655, 'index': 149, 'word': 'Roberto', 'start': 474, 'end': 481}, {'entity': 'I-PER', 'score': 0.99976295, 'index': 150, 'word': 'B', 'start': 482, 'end': 483}, {'entity': 'I-PER', 'score': 0.9973832, 'index': 151, 'word': '##isco', 'start': 483, 'end': 487}, {'entity': 'I-PER', 'score': 0.997715, 'index': 152, 'word': '##nti', 'start': 487, 'end': 490}, {'entity': 'I-MISC', 'score': 0.9991744, 'index': 159, 'word': 'Euro', 'start': 517, 'end': 521}, {'entity': 'I-ORG', 'score': 0.99883467, 'index': 173, 'word': 'Karl', 'start': 589, 'end': 593}, {'entity': 'I-ORG', 'score': 0.9863239, 'index': 174, 'word': '##s', 'start': 593, 'end': 594}, {'entity': 'I-ORG', 'score': 0.9918528, 'index': 175, 'word': '##ru', 'start': 594, 'end': 596}, {'entity': 'I-ORG', 'score': 0.9984475, 'index': 176, 'word': '##he', 'start': 596, 'end': 598}, {'entity': 'I-PER', 'score': 0.9997801, 'index': 180, 'word': 'Did', 'start': 612, 'end': 615}, {'entity': 'I-PER', 'score': 0.9997234, 'index': 181, 'word': '##ier', 'start': 615, 'end': 618}, {'entity': 'I-PER', 'score': 0.9998677, 'index': 182, 'word': 'Ernst', 'start': 619, 'end': 624}, {'entity': 'I-PER', 'score': 0.9996432, 'index': 194, 'word': 'B', 'start': 684, 'end': 685}, {'entity': 'I-PER', 'score': 0.9945269, 'index': 195, 'word': '##isco', 'start': 685, 'end': 689}, {'entity': 'I-PER', 'score': 0.99260795, 'index': 196, 'word': '##nti', 'start': 689, 'end': 692}, {'entity': 'I-ORG', 'score': 0.99909854, 'index': 205, 'word': 'Karl', 'start': 719, 'end': 723}, {'entity': 'I-ORG', 'score': 0.98910797, 'index': 206, 'word': '##s', 'start': 723, 'end': 724}, {'entity': 'I-ORG', 'score': 0.99439335, 'index': 207, 'word': '##ru', 'start': 724, 'end': 726}, {'entity': 'I-ORG', 'score': 0.99868673, 'index': 208, 'word': '##he', 'start': 726, 'end': 728}, {'entity': 'I-MISC', 'score': 0.9967367, 'index': 240, 'word': 'UEFA', 'start': 846, 'end': 850}, {'entity': 'I-MISC', 'score': 0.9978624, 'index': 241, 'word': 'Cup', 'start': 851, 'end': 854}]
[{'entity': 'I-PER', 'score': 0.9282139, 'index': 7, 'word': 'H', 'start': 12, 'end': 13}, {'entity': 'I-LOC', 'score': 0.5490447, 'index': 8, 'word': '##AR', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.3656469, 'index': 9, 'word': '##RI', 'start': 15, 'end': 17}, {'entity': 'I-PER', 'score': 0.31780392, 'index': 10, 'word': '##SO', 'start': 17, 'end': 19}, {'entity': 'I-LOC', 'score': 0.9958319, 'index': 22, 'word': 'SA', 'start': 42, 'end': 44}, {'entity': 'I-LOC', 'score': 0.98220783, 'index': 23, 'word': '##RA', 'start': 44, 'end': 46}, {'entity': 'I-LOC', 'score': 0.95037764, 'index': 24, 'word': '##J', 'start': 46, 'end': 47}, {'entity': 'I-LOC', 'score': 0.6316927, 'index': 25, 'word': '##E', 'start': 47, 'end': 48}, {'entity': 'I-LOC', 'score': 0.7638145, 'index': 26, 'word': '##VO', 'start': 48, 'end': 50}, {'entity': 'I-LOC', 'score': 0.9745942, 'index': 32, 'word': 'M', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.8446458, 'index': 33, 'word': '##ON', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.8318099, 'index': 34, 'word': '##TE', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9777003, 'index': 35, 'word': 'CA', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.55686325, 'index': 36, 'word': '##RL', 'start': 66, 'end': 68}, {'entity': 'I-LOC', 'score': 0.9433042, 'index': 37, 'word': '##O', 'start': 68, 'end': 69}, {'entity': 'I-MISC', 'score': 0.9982273, 'index': 47, 'word': 'Olympic', 'start': 86, 'end': 93}, {'entity': 'I-PER', 'score': 0.99970406, 'index': 49, 'word': 'Kenny', 'start': 103, 'end': 108}, {'entity': 'I-PER', 'score': 0.9998018, 'index': 50, 'word': 'Harrison', 'start': 109, 'end': 117}, {'entity': 'I-PER', 'score': 0.9996457, 'index': 55, 'word': 'Jonathan', 'start': 142, 'end': 150}, {'entity': 'I-PER', 'score': 0.9997652, 'index': 56, 'word': 'Edwards', 'start': 151, 'end': 158}, {'entity': 'I-MISC', 'score': 0.98008233, 'index': 68, 'word': 'Solid', 'start': 215, 'end': 220}, {'entity': 'I-MISC', 'score': 0.9738661, 'index': 69, 'word': '##arity', 'start': 220, 'end': 225}, {'entity': 'I-MISC', 'score': 0.9959669, 'index': 70, 'word': 'Meeting', 'start': 226, 'end': 233}, {'entity': 'I-LOC', 'score': 0.99784803, 'index': 72, 'word': 'Sarajevo', 'start': 238, 'end': 246}, {'entity': 'I-ORG', 'score': 0.998522, 'index': 82, 'word': 'International', 'start': 273, 'end': 286}, {'entity': 'I-ORG', 'score': 0.9988471, 'index': 83, 'word': 'Amateur', 'start': 287, 'end': 294}, {'entity': 'I-ORG', 'score': 0.9956655, 'index': 84, 'word': 'Athletic', 'start': 295, 'end': 303}, {'entity': 'I-ORG', 'score': 0.9966342, 'index': 85, 'word': 'Federation', 'start': 304, 'end': 314}, {'entity': 'I-LOC', 'score': 0.99783665, 'index': 128, 'word': 'Ko', 'start': 493, 'end': 495}, {'entity': 'I-LOC', 'score': 0.8922669, 'index': 129, 'word': '##se', 'start': 495, 'end': 497}, {'entity': 'I-LOC', 'score': 0.9942374, 'index': 130, 'word': '##vo', 'start': 497, 'end': 499}, {'entity': 'I-MISC', 'score': 0.9201186, 'index': 137, 'word': 'Atlanta', 'start': 515, 'end': 522}, {'entity': 'I-MISC', 'score': 0.9975847, 'index': 138, 'word': 'Games', 'start': 523, 'end': 528}, {'entity': 'I-PER', 'score': 0.9997669, 'index': 142, 'word': 'Edwards', 'start': 549, 'end': 556}, {'entity': 'I-LOC', 'score': 0.9993237, 'index': 154, 'word': 'Sarajevo', 'start': 614, 'end': 622}, {'entity': 'I-LOC', 'score': 0.99986196, 'index': 163, 'word': 'Bosnia', 'start': 661, 'end': 667}, {'entity': 'I-LOC', 'score': 0.99612623, 'index': 173, 'word': 'Balkans', 'start': 703, 'end': 710}, {'entity': 'I-LOC', 'score': 0.9992569, 'index': 185, 'word': 'Milan', 'start': 753, 'end': 758}, {'entity': 'I-PER', 'score': 0.9996803, 'index': 191, 'word': 'Edwards', 'start': 766, 'end': 773}, {'entity': 'I-MISC', 'score': 0.9961843, 'index': 209, 'word': 'IAAF', 'start': 849, 'end': 853}, {'entity': 'I-MISC', 'score': 0.94552726, 'index': 210, 'word': 'Grand', 'start': 854, 'end': 859}, {'entity': 'I-MISC', 'score': 0.9963632, 'index': 211, 'word': 'Prix', 'start': 860, 'end': 864}, {'entity': 'I-MISC', 'score': 0.99019426, 'index': 212, 'word': 'Final', 'start': 865, 'end': 870}, {'entity': 'I-LOC', 'score': 0.9988943, 'index': 214, 'word': 'Milan', 'start': 874, 'end': 879}, {'entity': 'I-LOC', 'score': 0.9998356, 'index': 231, 'word': 'Sarajevo', 'start': 951, 'end': 959}]
[{'entity': 'I-LOC', 'score': 0.99062526, 'index': 6, 'word': 'BA', 'start': 9, 'end': 11}, {'entity': 'I-LOC', 'score': 0.98738664, 'index': 7, 'word': '##RA', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.90370023, 'index': 8, 'word': '##TE', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.9289659, 'index': 9, 'word': '##LL', 'start': 15, 'end': 17}, {'entity': 'I-LOC', 'score': 0.97882915, 'index': 10, 'word': '##I', 'start': 17, 'end': 18}, {'entity': 'I-LOC', 'score': 0.99258256, 'index': 23, 'word': 'N', 'start': 40, 'end': 41}, {'entity': 'I-LOC', 'score': 0.9757037, 'index': 24, 'word': '##IC', 'start': 41, 'end': 43}, {'entity': 'I-LOC', 'score': 0.9819865, 'index': 25, 'word': '##E', 'start': 43, 'end': 44}, {'entity': 'I-LOC', 'score': 0.99984384, 'index': 27, 'word': 'France', 'start': 47, 'end': 53}, {'entity': 'I-PER', 'score': 0.9993231, 'index': 40, 'word': 'Dominique', 'start': 102, 'end': 111}, {'entity': 'I-PER', 'score': 0.99957365, 'index': 41, 'word': 'Bar', 'start': 112, 'end': 115}, {'entity': 'I-PER', 'score': 0.9978751, 'index': 42, 'word': '##ate', 'start': 115, 'end': 118}, {'entity': 'I-PER', 'score': 0.9989912, 'index': 43, 'word': '##lli', 'start': 118, 'end': 121}, {'entity': 'I-MISC', 'score': 0.9989436, 'index': 48, 'word': 'French', 'start': 145, 'end': 151}, {'entity': 'I-ORG', 'score': 0.99877733, 'index': 52, 'word': 'Nice', 'start': 172, 'end': 176}, {'entity': 'I-PER', 'score': 0.9997681, 'index': 64, 'word': 'Bar', 'start': 210, 'end': 213}, {'entity': 'I-PER', 'score': 0.99853194, 'index': 65, 'word': '##ate', 'start': 213, 'end': 216}, {'entity': 'I-PER', 'score': 0.99811375, 'index': 66, 'word': '##lli', 'start': 216, 'end': 219}, {'entity': 'I-ORG', 'score': 0.9989133, 'index': 71, 'word': 'Nice', 'start': 237, 'end': 241}, {'entity': 'I-ORG', 'score': 0.99933904, 'index': 73, 'word': 'Paris', 'start': 246, 'end': 251}, {'entity': 'I-ORG', 'score': 0.99940515, 'index': 74, 'word': 'St', 'start': 252, 'end': 254}, {'entity': 'I-ORG', 'score': 0.9991819, 'index': 75, 'word': 'Germain', 'start': 255, 'end': 262}, {'entity': 'I-PER', 'score': 0.9994073, 'index': 80, 'word': 'Albert', 'start': 281, 'end': 287}, {'entity': 'I-PER', 'score': 0.9997147, 'index': 81, 'word': 'Em', 'start': 288, 'end': 290}, {'entity': 'I-PER', 'score': 0.9985147, 'index': 82, 'word': '##on', 'start': 290, 'end': 292}, {'entity': 'I-ORG', 'score': 0.99922955, 'index': 89, 'word': 'Nice', 'start': 325, 'end': 329}, {'entity': 'I-ORG', 'score': 0.99848783, 'index': 95, 'word': 'G', 'start': 348, 'end': 349}, {'entity': 'I-ORG', 'score': 0.97592574, 'index': 96, 'word': '##uing', 'start': 349, 'end': 353}, {'entity': 'I-ORG', 'score': 0.9981926, 'index': 97, 'word': '##amp', 'start': 353, 'end': 356}, {'entity': 'I-ORG', 'score': 0.99956423, 'index': 109, 'word': 'Nice', 'start': 382, 'end': 386}]
[{'entity': 'I-ORG', 'score': 0.54385954, 'index': 6, 'word': 'MI', 'start': 9, 'end': 11}, {'entity': 'I-ORG', 'score': 0.87278026, 'index': 7, 'word': '##LA', 'start': 11, 'end': 13}, {'entity': 'I-ORG', 'score': 0.7973796, 'index': 8, 'word': '##N', 'start': 13, 'end': 14}, {'entity': 'I-ORG', 'score': 0.8566708, 'index': 11, 'word': 'L', 'start': 18, 'end': 19}, {'entity': 'I-ORG', 'score': 0.59332925, 'index': 12, 'word': '##EN', 'start': 19, 'end': 21}, {'entity': 'I-ORG', 'score': 0.57087266, 'index': 13, 'word': '##TI', 'start': 21, 'end': 23}, {'entity': 'I-ORG', 'score': 0.5362487, 'index': 14, 'word': '##NI', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.9947061, 'index': 20, 'word': 'AT', 'start': 35, 'end': 37}, {'entity': 'I-LOC', 'score': 0.9931619, 'index': 21, 'word': '##AL', 'start': 37, 'end': 39}, {'entity': 'I-LOC', 'score': 0.99548185, 'index': 22, 'word': '##AN', 'start': 39, 'end': 41}, {'entity': 'I-LOC', 'score': 0.99616516, 'index': 23, 'word': '##TA', 'start': 41, 'end': 43}, {'entity': 'I-LOC', 'score': 0.9975805, 'index': 29, 'word': 'MI', 'start': 51, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9849268, 'index': 30, 'word': '##LA', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.99410313, 'index': 31, 'word': '##N', 'start': 55, 'end': 56}, {'entity': 'I-MISC', 'score': 0.99888915, 'index': 42, 'word': 'Italian', 'start': 80, 'end': 87}, {'entity': 'I-PER', 'score': 0.9995388, 'index': 45, 'word': 'G', 'start': 109, 'end': 110}, {'entity': 'I-PER', 'score': 0.99904376, 'index': 46, 'word': '##ian', 'start': 110, 'end': 113}, {'entity': 'I-PER', 'score': 0.99719787, 'index': 47, 'word': '##lu', 'start': 113, 'end': 115}, {'entity': 'I-PER', 'score': 0.9992601, 'index': 48, 'word': '##igi', 'start': 115, 'end': 118}, {'entity': 'I-PER', 'score': 0.99946016, 'index': 49, 'word': 'Len', 'start': 119, 'end': 122}, {'entity': 'I-PER', 'score': 0.9955943, 'index': 50, 'word': '##tin', 'start': 122, 'end': 125}, {'entity': 'I-PER', 'score': 0.99865866, 'index': 51, 'word': '##i', 'start': 125, 'end': 126}, {'entity': 'I-ORG', 'score': 0.99612635, 'index': 55, 'word': 'Milan', 'start': 144, 'end': 149}, {'entity': 'I-MISC', 'score': 0.967128, 'index': 73, 'word': 'se', 'start': 226, 'end': 228}, {'entity': 'I-MISC', 'score': 0.9017584, 'index': 74, 'word': '##rie', 'start': 228, 'end': 231}, {'entity': 'I-MISC', 'score': 0.94618315, 'index': 75, 'word': 'A', 'start': 232, 'end': 233}, {'entity': 'I-ORG', 'score': 0.9993186, 'index': 77, 'word': 'At', 'start': 239, 'end': 241}, {'entity': 'I-ORG', 'score': 0.99810743, 'index': 78, 'word': '##alan', 'start': 241, 'end': 245}, {'entity': 'I-ORG', 'score': 0.9990262, 'index': 79, 'word': '##ta', 'start': 245, 'end': 247}, {'entity': 'I-ORG', 'score': 0.9992667, 'index': 94, 'word': 'G', 'start': 302, 'end': 303}, {'entity': 'I-ORG', 'score': 0.99079436, 'index': 95, 'word': '##az', 'start': 303, 'end': 305}, {'entity': 'I-ORG', 'score': 0.99355656, 'index': 96, 'word': '##ze', 'start': 305, 'end': 307}, {'entity': 'I-ORG', 'score': 0.9984415, 'index': 97, 'word': '##tta', 'start': 307, 'end': 310}, {'entity': 'I-ORG', 'score': 0.9973418, 'index': 98, 'word': 'dell', 'start': 311, 'end': 315}, {'entity': 'I-ORG', 'score': 0.9970631, 'index': 99, 'word': '##o', 'start': 315, 'end': 316}, {'entity': 'I-ORG', 'score': 0.99832493, 'index': 100, 'word': 'Sport', 'start': 317, 'end': 322}, {'entity': 'I-ORG', 'score': 0.9974728, 'index': 106, 'word': 'At', 'start': 348, 'end': 350}, {'entity': 'I-ORG', 'score': 0.99800676, 'index': 107, 'word': '##alan', 'start': 350, 'end': 354}, {'entity': 'I-ORG', 'score': 0.998324, 'index': 108, 'word': '##ta', 'start': 354, 'end': 356}, {'entity': 'I-PER', 'score': 0.9994879, 'index': 119, 'word': 'Len', 'start': 381, 'end': 384}, {'entity': 'I-PER', 'score': 0.99740857, 'index': 120, 'word': '##tin', 'start': 384, 'end': 387}, {'entity': 'I-PER', 'score': 0.99833727, 'index': 121, 'word': '##i', 'start': 387, 'end': 388}, {'entity': 'I-ORG', 'score': 0.9983329, 'index': 126, 'word': 'Milan', 'start': 403, 'end': 408}, {'entity': 'I-ORG', 'score': 0.99838185, 'index': 128, 'word': 'Torino', 'start': 414, 'end': 420}, {'entity': 'I-LOC', 'score': 0.9984549, 'index': 194, 'word': 'Turin', 'start': 766, 'end': 771}, {'entity': 'I-MISC', 'score': 0.9968257, 'index': 203, 'word': 'Berg', 'start': 791, 'end': 795}, {'entity': 'I-MISC', 'score': 0.98012954, 'index': 204, 'word': '##amo', 'start': 795, 'end': 798}, {'entity': 'I-ORG', 'score': 0.9884045, 'index': 207, 'word': 'At', 'start': 805, 'end': 807}, {'entity': 'I-ORG', 'score': 0.99031645, 'index': 208, 'word': '##alan', 'start': 807, 'end': 811}, {'entity': 'I-ORG', 'score': 0.9953713, 'index': 209, 'word': '##ta', 'start': 811, 'end': 813}, {'entity': 'I-PER', 'score': 0.9994686, 'index': 213, 'word': 'Len', 'start': 823, 'end': 826}, {'entity': 'I-PER', 'score': 0.9955686, 'index': 214, 'word': '##tin', 'start': 826, 'end': 829}, {'entity': 'I-PER', 'score': 0.99579984, 'index': 215, 'word': '##i', 'start': 829, 'end': 830}, {'entity': 'I-ORG', 'score': 0.9989166, 'index': 223, 'word': 'Milan', 'start': 854, 'end': 859}, {'entity': 'I-PER', 'score': 0.998004, 'index': 225, 'word': 'F', 'start': 866, 'end': 867}, {'entity': 'I-PER', 'score': 0.9978089, 'index': 226, 'word': '##abi', 'start': 867, 'end': 870}, {'entity': 'I-PER', 'score': 0.9985852, 'index': 227, 'word': '##o', 'start': 870, 'end': 871}, {'entity': 'I-PER', 'score': 0.99936336, 'index': 228, 'word': 'Cape', 'start': 872, 'end': 876}, {'entity': 'I-PER', 'score': 0.9885182, 'index': 229, 'word': '##llo', 'start': 876, 'end': 879}, {'entity': 'I-ORG', 'score': 0.99678814, 'index': 238, 'word': 'Torino', 'start': 919, 'end': 925}, {'entity': 'I-PER', 'score': 0.9989749, 'index': 240, 'word': 'Emilia', 'start': 928, 'end': 934}, {'entity': 'I-PER', 'score': 0.998868, 'index': 241, 'word': '##no', 'start': 934, 'end': 936}, {'entity': 'I-PER', 'score': 0.9987658, 'index': 242, 'word': 'Mon', 'start': 937, 'end': 940}, {'entity': 'I-PER', 'score': 0.9466988, 'index': 243, 'word': '##don', 'start': 940, 'end': 943}, {'entity': 'I-PER', 'score': 0.9922684, 'index': 244, 'word': '##ico', 'start': 943, 'end': 946}]
[{'entity': 'I-LOC', 'score': 0.99742377, 'index': 6, 'word': 'SR', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.998248, 'index': 7, 'word': '##I', 'start': 12, 'end': 13}, {'entity': 'I-LOC', 'score': 0.99901855, 'index': 8, 'word': 'LA', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.9811056, 'index': 9, 'word': '##N', 'start': 16, 'end': 17}, {'entity': 'I-LOC', 'score': 0.9982222, 'index': 10, 'word': '##KA', 'start': 17, 'end': 19}, {'entity': 'I-LOC', 'score': 0.9994734, 'index': 14, 'word': 'AU', 'start': 25, 'end': 27}, {'entity': 'I-LOC', 'score': 0.9982992, 'index': 15, 'word': '##ST', 'start': 27, 'end': 29}, {'entity': 'I-LOC', 'score': 0.9983602, 'index': 16, 'word': '##RA', 'start': 29, 'end': 31}, {'entity': 'I-LOC', 'score': 0.9921767, 'index': 17, 'word': '##L', 'start': 31, 'end': 32}, {'entity': 'I-LOC', 'score': 0.99933463, 'index': 18, 'word': '##IA', 'start': 32, 'end': 34}, {'entity': 'I-MISC', 'score': 0.6309088, 'index': 25, 'word': '##IC', 'start': 44, 'end': 46}, {'entity': 'I-LOC', 'score': 0.998808, 'index': 33, 'word': 'CO', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.97449964, 'index': 34, 'word': '##L', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9555699, 'index': 35, 'word': '##OM', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.99711967, 'index': 36, 'word': '##BO', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.99972874, 'index': 46, 'word': 'Sri', 'start': 82, 'end': 85}, {'entity': 'I-LOC', 'score': 0.99980634, 'index': 47, 'word': 'Lanka', 'start': 86, 'end': 91}, {'entity': 'I-LOC', 'score': 0.9998023, 'index': 49, 'word': 'Australia', 'start': 97, 'end': 106}, {'entity': 'I-MISC', 'score': 0.9983298, 'index': 59, 'word': 'Singer', 'start': 149, 'end': 155}, {'entity': 'I-MISC', 'score': 0.9951344, 'index': 60, 'word': 'World', 'start': 156, 'end': 161}, {'entity': 'I-MISC', 'score': 0.99751544, 'index': 61, 'word': 'Series', 'start': 162, 'end': 168}, {'entity': 'I-LOC', 'score': 0.99975604, 'index': 81, 'word': 'Australia', 'start': 235, 'end': 244}, {'entity': 'I-LOC', 'score': 0.99972504, 'index': 89, 'word': 'Sri', 'start': 265, 'end': 268}, {'entity': 'I-LOC', 'score': 0.9998123, 'index': 90, 'word': 'Lanka', 'start': 269, 'end': 274}]
[{'entity': 'I-LOC', 'score': 0.99848855, 'index': 6, 'word': 'AU', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.9947351, 'index': 7, 'word': '##ST', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.9900844, 'index': 8, 'word': '##RA', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.96153474, 'index': 9, 'word': '##L', 'start': 16, 'end': 17}, {'entity': 'I-LOC', 'score': 0.9942228, 'index': 10, 'word': '##IA', 'start': 17, 'end': 19}, {'entity': 'I-LOC', 'score': 0.8602048, 'index': 12, 'word': 'SR', 'start': 22, 'end': 24}, {'entity': 'I-LOC', 'score': 0.6135389, 'index': 13, 'word': '##I', 'start': 24, 'end': 25}, {'entity': 'I-LOC', 'score': 0.55897236, 'index': 14, 'word': 'LA', 'start': 26, 'end': 28}, {'entity': 'I-ORG', 'score': 0.5644237, 'index': 15, 'word': '##N', 'start': 28, 'end': 29}, {'entity': 'I-ORG', 'score': 0.60022473, 'index': 16, 'word': '##KA', 'start': 29, 'end': 31}, {'entity': 'I-LOC', 'score': 0.79666376, 'index': 28, 'word': 'CO', 'start': 50, 'end': 52}, {'entity': 'I-ORG', 'score': 0.40178007, 'index': 29, 'word': '##L', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.70039135, 'index': 30, 'word': '##OM', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.82265943, 'index': 31, 'word': '##BO', 'start': 55, 'end': 57}, {'entity': 'I-MISC', 'score': 0.99584156, 'index': 46, 'word': 'Singer', 'start': 98, 'end': 104}, {'entity': 'I-MISC', 'score': 0.85671264, 'index': 47, 'word': '<', 'start': 105, 'end': 106}, {'entity': 'I-MISC', 'score': 0.48408052, 'index': 49, 'word': 'S', 'start': 107, 'end': 108}, {'entity': 'I-MISC', 'score': 0.8854327, 'index': 50, 'word': '>', 'start': 108, 'end': 109}, {'entity': 'I-MISC', 'score': 0.99321824, 'index': 51, 'word': 'World', 'start': 110, 'end': 115}, {'entity': 'I-MISC', 'score': 0.99743503, 'index': 52, 'word': 'Series', 'start': 116, 'end': 122}, {'entity': 'I-LOC', 'score': 0.9998161, 'index': 56, 'word': 'Australia', 'start': 145, 'end': 154}, {'entity': 'I-LOC', 'score': 0.9997913, 'index': 58, 'word': 'Sri', 'start': 159, 'end': 162}, {'entity': 'I-LOC', 'score': 0.99984837, 'index': 59, 'word': 'Lanka', 'start': 163, 'end': 168}, {'entity': 'I-LOC', 'score': 0.9995789, 'index': 71, 'word': 'Australia', 'start': 191, 'end': 200}, {'entity': 'I-PER', 'score': 0.9996251, 'index': 76, 'word': 'M', 'start': 206, 'end': 207}, {'entity': 'I-PER', 'score': 0.99212825, 'index': 77, 'word': '.', 'start': 207, 'end': 208}, {'entity': 'I-PER', 'score': 0.99940014, 'index': 78, 'word': 'W', 'start': 209, 'end': 210}, {'entity': 'I-PER', 'score': 0.9994134, 'index': 79, 'word': '##augh', 'start': 210, 'end': 214}, {'entity': 'I-PER', 'score': 0.99960953, 'index': 83, 'word': 'Jaya', 'start': 223, 'end': 227}, {'entity': 'I-PER', 'score': 0.99745613, 'index': 84, 'word': '##su', 'start': 227, 'end': 229}, {'entity': 'I-PER', 'score': 0.99717283, 'index': 85, 'word': '##riya', 'start': 229, 'end': 233}, {'entity': 'I-PER', 'score': 0.9995041, 'index': 91, 'word': 'M', 'start': 242, 'end': 243}, {'entity': 'I-PER', 'score': 0.9726465, 'index': 92, 'word': '.', 'start': 243, 'end': 244}, {'entity': 'I-PER', 'score': 0.9997421, 'index': 93, 'word': 'Slater', 'start': 245, 'end': 251}, {'entity': 'I-PER', 'score': 0.99963, 'index': 101, 'word': 'S', 'start': 267, 'end': 268}, {'entity': 'I-PER', 'score': 0.95565146, 'index': 102, 'word': '.', 'start': 268, 'end': 269}, {'entity': 'I-PER', 'score': 0.99979025, 'index': 103, 'word': 'Law', 'start': 270, 'end': 273}, {'entity': 'I-PER', 'score': 0.9995521, 'index': 105, 'word': 'Till', 'start': 276, 'end': 280}, {'entity': 'I-PER', 'score': 0.9987275, 'index': 106, 'word': '##ek', 'start': 280, 'end': 282}, {'entity': 'I-PER', 'score': 0.99745506, 'index': 107, 'word': '##era', 'start': 282, 'end': 285}, {'entity': 'I-PER', 'score': 0.97517234, 'index': 108, 'word': '##t', 'start': 285, 'end': 286}, {'entity': 'I-PER', 'score': 0.9709372, 'index': 109, 'word': '##ne', 'start': 286, 'end': 288}, {'entity': 'I-PER', 'score': 0.99957913, 'index': 111, 'word': 'Dharma', 'start': 291, 'end': 297}, {'entity': 'I-PER', 'score': 0.9930019, 'index': 112, 'word': '##sen', 'start': 297, 'end': 300}, {'entity': 'I-PER', 'score': 0.9616213, 'index': 113, 'word': '##a', 'start': 300, 'end': 301}, {'entity': 'I-PER', 'score': 0.9996666, 'index': 119, 'word': 'M', 'start': 310, 'end': 311}, {'entity': 'I-PER', 'score': 0.9888319, 'index': 120, 'word': '.', 'start': 311, 'end': 312}, {'entity': 'I-PER', 'score': 0.9992448, 'index': 121, 'word': 'Be', 'start': 313, 'end': 315}, {'entity': 'I-PER', 'score': 0.9985072, 'index': 122, 'word': '##van', 'start': 315, 'end': 318}, {'entity': 'I-PER', 'score': 0.99931335, 'index': 124, 'word': 'V', 'start': 321, 'end': 322}, {'entity': 'I-PER', 'score': 0.99770796, 'index': 125, 'word': '##aa', 'start': 322, 'end': 324}, {'entity': 'I-PER', 'score': 0.99688196, 'index': 126, 'word': '##s', 'start': 324, 'end': 325}, {'entity': 'I-PER', 'score': 0.9995384, 'index': 128, 'word': 'Chan', 'start': 328, 'end': 332}, {'entity': 'I-PER', 'score': 0.99083483, 'index': 129, 'word': '##dan', 'start': 332, 'end': 335}, {'entity': 'I-PER', 'score': 0.98741525, 'index': 130, 'word': '##a', 'start': 335, 'end': 336}, {'entity': 'I-PER', 'score': 0.99961036, 'index': 136, 'word': 'S', 'start': 345, 'end': 346}, {'entity': 'I-PER', 'score': 0.95547193, 'index': 137, 'word': '.', 'start': 346, 'end': 347}, {'entity': 'I-PER', 'score': 0.9991054, 'index': 138, 'word': 'W', 'start': 348, 'end': 349}, {'entity': 'I-PER', 'score': 0.99897975, 'index': 139, 'word': '##augh', 'start': 349, 'end': 353}, {'entity': 'I-PER', 'score': 0.9997607, 'index': 141, 'word': 'Mu', 'start': 356, 'end': 358}, {'entity': 'I-PER', 'score': 0.9985965, 'index': 142, 'word': '##ral', 'start': 358, 'end': 361}, {'entity': 'I-PER', 'score': 0.98706985, 'index': 143, 'word': '##ith', 'start': 361, 'end': 364}, {'entity': 'I-PER', 'score': 0.9969428, 'index': 144, 'word': '##aran', 'start': 364, 'end': 368}, {'entity': 'I-PER', 'score': 0.99966586, 'index': 150, 'word': 'R', 'start': 377, 'end': 378}, {'entity': 'I-PER', 'score': 0.9808348, 'index': 151, 'word': '.', 'start': 378, 'end': 379}, {'entity': 'I-PER', 'score': 0.9991906, 'index': 152, 'word': 'Pont', 'start': 380, 'end': 384}, {'entity': 'I-PER', 'score': 0.9911341, 'index': 153, 'word': '##ing', 'start': 384, 'end': 387}, {'entity': 'I-PER', 'score': 0.9996933, 'index': 161, 'word': 'D', 'start': 404, 'end': 405}, {'entity': 'I-PER', 'score': 0.9971807, 'index': 162, 'word': '.', 'start': 405, 'end': 406}, {'entity': 'I-PER', 'score': 0.9995178, 'index': 163, 'word': 'Le', 'start': 407, 'end': 409}, {'entity': 'I-PER', 'score': 0.9995449, 'index': 164, 'word': '##hmann', 'start': 409, 'end': 414}, {'entity': 'I-PER', 'score': 0.9997285, 'index': 167, 'word': 'Ka', 'start': 418, 'end': 420}, {'entity': 'I-PER', 'score': 0.9974382, 'index': 168, 'word': '##lu', 'start': 420, 'end': 422}, {'entity': 'I-PER', 'score': 0.9963625, 'index': 169, 'word': '##with', 'start': 422, 'end': 426}, {'entity': 'I-PER', 'score': 0.97564393, 'index': 170, 'word': '##aran', 'start': 426, 'end': 430}, {'entity': 'I-PER', 'score': 0.9789296, 'index': 171, 'word': '##a', 'start': 430, 'end': 431}, {'entity': 'I-PER', 'score': 0.9995234, 'index': 173, 'word': 'Chan', 'start': 434, 'end': 438}, {'entity': 'I-PER', 'score': 0.99233, 'index': 174, 'word': '##dan', 'start': 438, 'end': 441}, {'entity': 'I-PER', 'score': 0.9809795, 'index': 175, 'word': '##a', 'start': 441, 'end': 442}, {'entity': 'I-PER', 'score': 0.9996879, 'index': 181, 'word': 'I', 'start': 450, 'end': 451}, {'entity': 'I-PER', 'score': 0.9985399, 'index': 182, 'word': '.', 'start': 451, 'end': 452}, {'entity': 'I-PER', 'score': 0.9996531, 'index': 183, 'word': 'He', 'start': 453, 'end': 455}, {'entity': 'I-PER', 'score': 0.99872166, 'index': 184, 'word': '##aly', 'start': 455, 'end': 458}, {'entity': 'I-PER', 'score': 0.9995389, 'index': 186, 'word': 'Rana', 'start': 461, 'end': 465}, {'entity': 'I-PER', 'score': 0.9732539, 'index': 187, 'word': '##tun', 'start': 465, 'end': 468}, {'entity': 'I-PER', 'score': 0.98746175, 'index': 188, 'word': '##ga', 'start': 468, 'end': 470}, {'entity': 'I-PER', 'score': 0.99972147, 'index': 190, 'word': 'Mu', 'start': 473, 'end': 475}, {'entity': 'I-PER', 'score': 0.9980465, 'index': 191, 'word': '##ral', 'start': 475, 'end': 478}, {'entity': 'I-PER', 'score': 0.98557055, 'index': 192, 'word': '##ith', 'start': 478, 'end': 481}, {'entity': 'I-PER', 'score': 0.99568945, 'index': 193, 'word': '##aran', 'start': 481, 'end': 485}, {'entity': 'I-PER', 'score': 0.9995548, 'index': 199, 'word': 'J', 'start': 493, 'end': 494}, {'entity': 'I-PER', 'score': 0.98173517, 'index': 200, 'word': '.', 'start': 494, 'end': 495}, {'entity': 'I-PER', 'score': 0.9996294, 'index': 201, 'word': 'Gillespie', 'start': 496, 'end': 505}, {'entity': 'I-PER', 'score': 0.9997261, 'index': 204, 'word': 'Ka', 'start': 509, 'end': 511}, {'entity': 'I-PER', 'score': 0.9961467, 'index': 205, 'word': '##lu', 'start': 511, 'end': 513}, {'entity': 'I-PER', 'score': 0.9947989, 'index': 206, 'word': '##with', 'start': 513, 'end': 517}, {'entity': 'I-PER', 'score': 0.96019596, 'index': 207, 'word': '##aran', 'start': 517, 'end': 521}, {'entity': 'I-PER', 'score': 0.97807515, 'index': 208, 'word': '##a', 'start': 521, 'end': 522}, {'entity': 'I-PER', 'score': 0.9994648, 'index': 210, 'word': 'Chan', 'start': 525, 'end': 529}, {'entity': 'I-PER', 'score': 0.97997874, 'index': 211, 'word': '##dan', 'start': 529, 'end': 532}, {'entity': 'I-PER', 'score': 0.973579, 'index': 212, 'word': '##a', 'start': 532, 'end': 533}, {'entity': 'I-PER', 'score': 0.99959236, 'index': 218, 'word': 'D', 'start': 541, 'end': 542}, {'entity': 'I-PER', 'score': 0.97016406, 'index': 219, 'word': '.', 'start': 542, 'end': 543}, {'entity': 'I-PER', 'score': 0.99970704, 'index': 220, 'word': 'Fleming', 'start': 544, 'end': 551}, {'entity': 'I-PER', 'score': 0.9995227, 'index': 222, 'word': 'Chan', 'start': 554, 'end': 558}, {'entity': 'I-PER', 'score': 0.99553645, 'index': 223, 'word': '##dan', 'start': 558, 'end': 561}, {'entity': 'I-PER', 'score': 0.98424006, 'index': 224, 'word': '##a', 'start': 561, 'end': 562}, {'entity': 'I-PER', 'score': 0.99959475, 'index': 226, 'word': 'Jaya', 'start': 565, 'end': 569}, {'entity': 'I-PER', 'score': 0.9964437, 'index': 227, 'word': '##su', 'start': 569, 'end': 571}, {'entity': 'I-PER', 'score': 0.9935993, 'index': 228, 'word': '##riya', 'start': 571, 'end': 575}, {'entity': 'I-PER', 'score': 0.99925345, 'index': 234, 'word': 'G', 'start': 583, 'end': 584}, {'entity': 'I-PER', 'score': 0.6540101, 'index': 235, 'word': '.', 'start': 584, 'end': 585}, {'entity': 'I-PER', 'score': 0.9997546, 'index': 236, 'word': 'McGrath', 'start': 586, 'end': 593}, {'entity': 'I-PER', 'score': 0.99906546, 'index': 315, 'word': 'V', 'start': 771, 'end': 772}, {'entity': 'I-PER', 'score': 0.9497377, 'index': 316, 'word': '##ass', 'start': 772, 'end': 775}, {'entity': 'I-PER', 'score': 0.99903905, 'index': 325, 'word': 'de', 'start': 787, 'end': 789}, {'entity': 'I-PER', 'score': 0.9993742, 'index': 326, 'word': 'Silva', 'start': 790, 'end': 795}, {'entity': 'I-PER', 'score': 0.9997284, 'index': 335, 'word': 'Dharma', 'start': 807, 'end': 813}, {'entity': 'I-PER', 'score': 0.99174106, 'index': 336, 'word': '##sen', 'start': 813, 'end': 816}, {'entity': 'I-PER', 'score': 0.97480595, 'index': 337, 'word': '##a', 'start': 816, 'end': 817}, {'entity': 'I-PER', 'score': 0.99974793, 'index': 350, 'word': 'Mu', 'start': 834, 'end': 836}, {'entity': 'I-PER', 'score': 0.9969332, 'index': 351, 'word': '##ral', 'start': 836, 'end': 839}, {'entity': 'I-PER', 'score': 0.9120977, 'index': 352, 'word': '##ith', 'start': 839, 'end': 842}, {'entity': 'I-PER', 'score': 0.99157906, 'index': 353, 'word': '##aran', 'start': 842, 'end': 846}, {'entity': 'I-PER', 'score': 0.9996604, 'index': 362, 'word': 'Jaya', 'start': 859, 'end': 863}, {'entity': 'I-PER', 'score': 0.9961138, 'index': 363, 'word': '##su', 'start': 863, 'end': 865}, {'entity': 'I-PER', 'score': 0.9959377, 'index': 364, 'word': '##riya', 'start': 865, 'end': 869}, {'entity': 'I-PER', 'score': 0.99950564, 'index': 373, 'word': 'Chan', 'start': 882, 'end': 886}, {'entity': 'I-PER', 'score': 0.9909388, 'index': 374, 'word': '##dan', 'start': 886, 'end': 889}, {'entity': 'I-PER', 'score': 0.9833044, 'index': 375, 'word': '##a', 'start': 889, 'end': 890}, {'entity': 'I-PER', 'score': 0.9975188, 'index': 392, 'word': 'Sri', 'start': 913, 'end': 916}, {'entity': 'I-LOC', 'score': 0.9985537, 'index': 393, 'word': 'Lanka', 'start': 917, 'end': 922}, {'entity': 'I-PER', 'score': 0.99760014, 'index': 400, 'word': 'Jaya', 'start': 931, 'end': 935}, {'entity': 'I-PER', 'score': 0.5672273, 'index': 401, 'word': '##su', 'start': 935, 'end': 937}, {'entity': 'I-PER', 'score': 0.9928731, 'index': 402, 'word': '##riya', 'start': 937, 'end': 941}, {'entity': 'I-PER', 'score': 0.9986082, 'index': 404, 'word': 'He', 'start': 944, 'end': 946}, {'entity': 'I-PER', 'score': 0.8051004, 'index': 405, 'word': '##aly', 'start': 946, 'end': 949}, {'entity': 'I-PER', 'score': 0.9995826, 'index': 407, 'word': 'Fleming', 'start': 952, 'end': 959}, {'entity': 'I-PER', 'score': 0.99929535, 'index': 413, 'word': 'R', 'start': 968, 'end': 969}, {'entity': 'I-PER', 'score': 0.9995546, 'index': 415, 'word': 'Ka', 'start': 971, 'end': 973}, {'entity': 'I-PER', 'score': 0.9769861, 'index': 416, 'word': '##lu', 'start': 973, 'end': 975}, {'entity': 'I-PER', 'score': 0.98425055, 'index': 418, 'word': '##aran', 'start': 979, 'end': 983}, {'entity': 'I-PER', 'score': 0.9983563, 'index': 423, 'word': 'W', 'start': 990, 'end': 991}, {'entity': 'I-PER', 'score': 0.9970534, 'index': 424, 'word': '##augh', 'start': 991, 'end': 995}, {'entity': 'I-PER', 'score': 0.99953735, 'index': 432, 'word': 'Guru', 'start': 1006, 'end': 1010}, {'entity': 'I-PER', 'score': 0.99080455, 'index': 433, 'word': '##sin', 'start': 1010, 'end': 1013}, {'entity': 'I-PER', 'score': 0.9931798, 'index': 434, 'word': '##ha', 'start': 1013, 'end': 1015}, {'entity': 'I-PER', 'score': 0.9995472, 'index': 445, 'word': 'Silva', 'start': 1037, 'end': 1042}, {'entity': 'I-PER', 'score': 0.9995241, 'index': 455, 'word': 'Rana', 'start': 1062, 'end': 1066}, {'entity': 'I-PER', 'score': 0.9106745, 'index': 456, 'word': '##tun', 'start': 1066, 'end': 1069}, {'entity': 'I-PER', 'score': 0.9385036, 'index': 457, 'word': '##ga', 'start': 1069, 'end': 1071}, {'entity': 'I-PER', 'score': 0.9996556, 'index': 461, 'word': 'Fleming', 'start': 1078, 'end': 1085}, {'entity': 'I-PER', 'score': 0.6195, 'index': 470, 'word': '##ek', 'start': 1100, 'end': 1102}, {'entity': 'I-PER', 'score': 0.9767736, 'index': 471, 'word': '##era', 'start': 1102, 'end': 1105}, {'entity': 'I-PER', 'score': 0.9742551, 'index': 473, 'word': '##ne', 'start': 1106, 'end': 1108}, {'entity': 'I-PER', 'score': 0.99952126, 'index': 477, 'word': 'Fleming', 'start': 1115, 'end': 1122}, {'entity': 'I-PER', 'score': 0.9996686, 'index': 483, 'word': 'R', 'start': 1130, 'end': 1131}, {'entity': 'I-PER', 'score': 0.99887794, 'index': 485, 'word': 'Ma', 'start': 1133, 'end': 1135}, {'entity': 'I-PER', 'score': 0.9937098, 'index': 486, 'word': '##hana', 'start': 1135, 'end': 1139}, {'entity': 'I-PER', 'score': 0.99338716, 'index': 487, 'word': '##ma', 'start': 1139, 'end': 1141}, {'entity': 'I-PER', 'score': 0.9995957, 'index': 489, 'word': 'McGrath', 'start': 1144, 'end': 1151}, {'entity': 'I-PER', 'score': 0.99935323, 'index': 497, 'word': 'Chan', 'start': 1163, 'end': 1167}, {'entity': 'I-PER', 'score': 0.8560648, 'index': 498, 'word': '##dan', 'start': 1167, 'end': 1170}]
[{'entity': 'I-MISC', 'score': 0.53206426, 'index': 2, 'word': '##IC', 'start': 2, 'end': 4}, {'entity': 'I-LOC', 'score': 0.99941933, 'index': 6, 'word': 'AU', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.998466, 'index': 7, 'word': '##ST', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.99850804, 'index': 8, 'word': '##RA', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.9960031, 'index': 9, 'word': '##L', 'start': 16, 'end': 17}, {'entity': 'I-LOC', 'score': 0.99916303, 'index': 10, 'word': '##IA', 'start': 17, 'end': 19}, {'entity': 'I-LOC', 'score': 0.9965411, 'index': 20, 'word': 'SR', 'start': 40, 'end': 42}, {'entity': 'I-LOC', 'score': 0.993982, 'index': 21, 'word': '##I', 'start': 42, 'end': 43}, {'entity': 'I-LOC', 'score': 0.9982679, 'index': 22, 'word': 'LA', 'start': 44, 'end': 46}, {'entity': 'I-LOC', 'score': 0.97355664, 'index': 23, 'word': '##N', 'start': 46, 'end': 47}, {'entity': 'I-LOC', 'score': 0.99787664, 'index': 24, 'word': '##KA', 'start': 47, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9985663, 'index': 30, 'word': 'CO', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9737195, 'index': 31, 'word': '##L', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9447201, 'index': 32, 'word': '##OM', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9965411, 'index': 33, 'word': '##BO', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.99977857, 'index': 43, 'word': 'Australia', 'start': 81, 'end': 90}, {'entity': 'I-LOC', 'score': 0.9998167, 'index': 54, 'word': 'Sri', 'start': 145, 'end': 148}, {'entity': 'I-LOC', 'score': 0.9998242, 'index': 55, 'word': 'Lanka', 'start': 149, 'end': 154}, {'entity': 'I-MISC', 'score': 0.99765766, 'index': 67, 'word': 'Singer', 'start': 205, 'end': 211}, {'entity': 'I-MISC', 'score': 0.9942696, 'index': 68, 'word': 'World', 'start': 212, 'end': 217}, {'entity': 'I-MISC', 'score': 0.99613863, 'index': 69, 'word': 'Series', 'start': 218, 'end': 224}]
[{'entity': 'I-LOC', 'score': 0.99908316, 'index': 6, 'word': 'AU', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.997221, 'index': 7, 'word': '##ST', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.99698704, 'index': 8, 'word': '##RA', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.98093915, 'index': 9, 'word': '##L', 'start': 16, 'end': 17}, {'entity': 'I-LOC', 'score': 0.9984805, 'index': 10, 'word': '##IA', 'start': 17, 'end': 19}, {'entity': 'I-LOC', 'score': 0.9969227, 'index': 28, 'word': 'CO', 'start': 54, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9095892, 'index': 29, 'word': '##L', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9339421, 'index': 30, 'word': '##OM', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.99220604, 'index': 31, 'word': '##BO', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.99978787, 'index': 41, 'word': 'Australia', 'start': 78, 'end': 87}, {'entity': 'I-LOC', 'score': 0.99979407, 'index': 54, 'word': 'Sri', 'start': 133, 'end': 136}, {'entity': 'I-LOC', 'score': 0.999795, 'index': 55, 'word': 'Lanka', 'start': 137, 'end': 142}, {'entity': 'I-MISC', 'score': 0.9980263, 'index': 72, 'word': 'Singer', 'start': 206, 'end': 212}, {'entity': 'I-LOC', 'score': 0.9993624, 'index': 93, 'word': 'Australia', 'start': 272, 'end': 281}, {'entity': 'I-PER', 'score': 0.9997968, 'index': 95, 'word': 'Ian', 'start': 284, 'end': 287}, {'entity': 'I-PER', 'score': 0.9997185, 'index': 96, 'word': 'He', 'start': 288, 'end': 290}, {'entity': 'I-PER', 'score': 0.9995735, 'index': 97, 'word': '##aly', 'start': 290, 'end': 293}, {'entity': 'I-PER', 'score': 0.9997893, 'index': 102, 'word': 'Michael', 'start': 308, 'end': 315}, {'entity': 'I-PER', 'score': 0.9995734, 'index': 103, 'word': 'Be', 'start': 316, 'end': 318}, {'entity': 'I-PER', 'score': 0.9995043, 'index': 104, 'word': '##van', 'start': 318, 'end': 321}, {'entity': 'I-PER', 'score': 0.99982905, 'index': 106, 'word': 'Damien', 'start': 324, 'end': 330}, {'entity': 'I-PER', 'score': 0.9997727, 'index': 111, 'word': 'F', 'start': 336, 'end': 337}, {'entity': 'I-PER', 'score': 0.9976172, 'index': 112, 'word': '##lem', 'start': 337, 'end': 340}, {'entity': 'I-PER', 'score': 0.9993955, 'index': 113, 'word': '##ming', 'start': 340, 'end': 344}, {'entity': 'I-PER', 'score': 0.99979216, 'index': 115, 'word': 'Jason', 'start': 347, 'end': 352}, {'entity': 'I-PER', 'score': 0.9998547, 'index': 116, 'word': 'Gillespie', 'start': 353, 'end': 362}, {'entity': 'I-PER', 'score': 0.9997812, 'index': 118, 'word': 'Stuart', 'start': 365, 'end': 371}, {'entity': 'I-PER', 'score': 0.99984443, 'index': 119, 'word': 'Law', 'start': 372, 'end': 375}, {'entity': 'I-PER', 'score': 0.9998037, 'index': 121, 'word': 'Glenn', 'start': 378, 'end': 383}, {'entity': 'I-PER', 'score': 0.9998565, 'index': 122, 'word': 'McGrath', 'start': 384, 'end': 391}, {'entity': 'I-PER', 'score': 0.9998332, 'index': 124, 'word': 'Ricky', 'start': 394, 'end': 399}, {'entity': 'I-PER', 'score': 0.99928683, 'index': 129, 'word': 'Pont', 'start': 405, 'end': 409}, {'entity': 'I-PER', 'score': 0.9991904, 'index': 130, 'word': '##ing', 'start': 409, 'end': 412}, {'entity': 'I-PER', 'score': 0.9998012, 'index': 132, 'word': 'Michael', 'start': 415, 'end': 422}, {'entity': 'I-PER', 'score': 0.9998361, 'index': 133, 'word': 'Slater', 'start': 423, 'end': 429}, {'entity': 'I-PER', 'score': 0.99981266, 'index': 135, 'word': 'Darren', 'start': 432, 'end': 438}, {'entity': 'I-PER', 'score': 0.99959606, 'index': 136, 'word': 'Le', 'start': 439, 'end': 441}, {'entity': 'I-PER', 'score': 0.99972254, 'index': 137, 'word': '##hmann', 'start': 441, 'end': 446}, {'entity': 'I-PER', 'score': 0.99979824, 'index': 139, 'word': 'Mark', 'start': 449, 'end': 453}, {'entity': 'I-PER', 'score': 0.9994917, 'index': 140, 'word': 'W', 'start': 454, 'end': 455}, {'entity': 'I-PER', 'score': 0.9995433, 'index': 141, 'word': '##augh', 'start': 455, 'end': 459}, {'entity': 'I-PER', 'score': 0.99980456, 'index': 143, 'word': 'Steve', 'start': 462, 'end': 467}, {'entity': 'I-PER', 'score': 0.998995, 'index': 148, 'word': 'W', 'start': 473, 'end': 474}, {'entity': 'I-PER', 'score': 0.99914074, 'index': 149, 'word': '##augh', 'start': 474, 'end': 478}, {'entity': 'I-LOC', 'score': 0.9991352, 'index': 155, 'word': 'Sri', 'start': 486, 'end': 489}, {'entity': 'I-LOC', 'score': 0.99954057, 'index': 156, 'word': 'Lanka', 'start': 490, 'end': 495}, {'entity': 'I-PER', 'score': 0.999705, 'index': 158, 'word': 'A', 'start': 498, 'end': 499}, {'entity': 'I-PER', 'score': 0.9932203, 'index': 159, 'word': '##r', 'start': 499, 'end': 500}, {'entity': 'I-PER', 'score': 0.9995321, 'index': 160, 'word': '##jun', 'start': 500, 'end': 503}, {'entity': 'I-PER', 'score': 0.99957186, 'index': 161, 'word': '##a', 'start': 503, 'end': 504}, {'entity': 'I-PER', 'score': 0.99939096, 'index': 162, 'word': 'Rana', 'start': 505, 'end': 509}, {'entity': 'I-PER', 'score': 0.9485056, 'index': 163, 'word': '##tun', 'start': 509, 'end': 512}, {'entity': 'I-PER', 'score': 0.9946514, 'index': 164, 'word': '##ga', 'start': 512, 'end': 514}, {'entity': 'I-PER', 'score': 0.9997502, 'index': 169, 'word': 'San', 'start': 529, 'end': 532}, {'entity': 'I-PER', 'score': 0.9996867, 'index': 170, 'word': '##ath', 'start': 532, 'end': 535}, {'entity': 'I-PER', 'score': 0.99949884, 'index': 171, 'word': 'Jaya', 'start': 536, 'end': 540}, {'entity': 'I-PER', 'score': 0.9941247, 'index': 172, 'word': '##su', 'start': 540, 'end': 542}, {'entity': 'I-PER', 'score': 0.9947306, 'index': 173, 'word': '##riya', 'start': 542, 'end': 546}, {'entity': 'I-PER', 'score': 0.9997547, 'index': 179, 'word': 'Rome', 'start': 554, 'end': 558}, {'entity': 'I-PER', 'score': 0.999627, 'index': 180, 'word': '##sh', 'start': 558, 'end': 560}, {'entity': 'I-PER', 'score': 0.99966264, 'index': 181, 'word': 'Ka', 'start': 561, 'end': 563}, {'entity': 'I-PER', 'score': 0.99850696, 'index': 182, 'word': '##lu', 'start': 563, 'end': 565}, {'entity': 'I-PER', 'score': 0.9929397, 'index': 183, 'word': '##with', 'start': 565, 'end': 569}, {'entity': 'I-PER', 'score': 0.9845708, 'index': 184, 'word': '##aran', 'start': 569, 'end': 573}, {'entity': 'I-PER', 'score': 0.9907018, 'index': 185, 'word': '##a', 'start': 573, 'end': 574}, {'entity': 'I-PER', 'score': 0.9996277, 'index': 187, 'word': 'As', 'start': 577, 'end': 579}, {'entity': 'I-PER', 'score': 0.9618784, 'index': 188, 'word': '##an', 'start': 579, 'end': 581}, {'entity': 'I-PER', 'score': 0.99938154, 'index': 189, 'word': '##ka', 'start': 581, 'end': 583}, {'entity': 'I-PER', 'score': 0.9996691, 'index': 190, 'word': 'Guru', 'start': 584, 'end': 588}, {'entity': 'I-PER', 'score': 0.9968515, 'index': 191, 'word': '##sin', 'start': 588, 'end': 591}, {'entity': 'I-PER', 'score': 0.9942563, 'index': 192, 'word': '##ha', 'start': 591, 'end': 593}, {'entity': 'I-PER', 'score': 0.9996215, 'index': 194, 'word': 'Ara', 'start': 596, 'end': 599}, {'entity': 'I-PER', 'score': 0.99905354, 'index': 195, 'word': '##vin', 'start': 599, 'end': 602}, {'entity': 'I-PER', 'score': 0.9995957, 'index': 196, 'word': '##da', 'start': 602, 'end': 604}, {'entity': 'I-PER', 'score': 0.9995732, 'index': 197, 'word': 'de', 'start': 605, 'end': 607}, {'entity': 'I-PER', 'score': 0.99975425, 'index': 198, 'word': 'Silva', 'start': 608, 'end': 613}, {'entity': 'I-PER', 'score': 0.999676, 'index': 204, 'word': 'Has', 'start': 621, 'end': 624}, {'entity': 'I-PER', 'score': 0.9995927, 'index': 205, 'word': '##han', 'start': 624, 'end': 627}, {'entity': 'I-PER', 'score': 0.99936134, 'index': 206, 'word': 'Till', 'start': 628, 'end': 632}, {'entity': 'I-PER', 'score': 0.99297744, 'index': 207, 'word': '##ek', 'start': 632, 'end': 634}, {'entity': 'I-PER', 'score': 0.9872897, 'index': 208, 'word': '##era', 'start': 634, 'end': 637}, {'entity': 'I-PER', 'score': 0.6719711, 'index': 209, 'word': '##t', 'start': 637, 'end': 638}, {'entity': 'I-PER', 'score': 0.94064796, 'index': 210, 'word': '##ne', 'start': 638, 'end': 640}, {'entity': 'I-PER', 'score': 0.99972826, 'index': 212, 'word': 'R', 'start': 643, 'end': 644}, {'entity': 'I-PER', 'score': 0.9992964, 'index': 213, 'word': '##osh', 'start': 644, 'end': 647}, {'entity': 'I-PER', 'score': 0.999635, 'index': 214, 'word': '##an', 'start': 647, 'end': 649}, {'entity': 'I-PER', 'score': 0.9995881, 'index': 215, 'word': 'Ma', 'start': 650, 'end': 652}, {'entity': 'I-PER', 'score': 0.99618185, 'index': 216, 'word': '##hana', 'start': 652, 'end': 656}, {'entity': 'I-PER', 'score': 0.9958884, 'index': 217, 'word': '##ma', 'start': 656, 'end': 658}, {'entity': 'I-PER', 'score': 0.9997056, 'index': 219, 'word': 'Kumar', 'start': 661, 'end': 666}, {'entity': 'I-PER', 'score': 0.99948335, 'index': 220, 'word': '##a', 'start': 666, 'end': 667}, {'entity': 'I-PER', 'score': 0.99952686, 'index': 221, 'word': 'Dharma', 'start': 668, 'end': 674}, {'entity': 'I-PER', 'score': 0.9986356, 'index': 222, 'word': '##sen', 'start': 674, 'end': 677}, {'entity': 'I-PER', 'score': 0.99660444, 'index': 223, 'word': '##a', 'start': 677, 'end': 678}, {'entity': 'I-PER', 'score': 0.9997613, 'index': 229, 'word': 'Cha', 'start': 686, 'end': 689}, {'entity': 'I-PER', 'score': 0.9988668, 'index': 230, 'word': '##mind', 'start': 689, 'end': 693}, {'entity': 'I-PER', 'score': 0.99928206, 'index': 231, 'word': '##a', 'start': 693, 'end': 694}, {'entity': 'I-PER', 'score': 0.99926823, 'index': 232, 'word': 'V', 'start': 695, 'end': 696}, {'entity': 'I-PER', 'score': 0.9561046, 'index': 233, 'word': '##aa', 'start': 696, 'end': 698}, {'entity': 'I-PER', 'score': 0.9935551, 'index': 234, 'word': '##s', 'start': 698, 'end': 699}, {'entity': 'I-PER', 'score': 0.9997075, 'index': 236, 'word': 'Mu', 'start': 702, 'end': 704}, {'entity': 'I-PER', 'score': 0.9987949, 'index': 237, 'word': '##thi', 'start': 704, 'end': 707}, {'entity': 'I-PER', 'score': 0.9995789, 'index': 238, 'word': '##ah', 'start': 707, 'end': 709}, {'entity': 'I-PER', 'score': 0.9997887, 'index': 239, 'word': 'Mu', 'start': 710, 'end': 712}, {'entity': 'I-PER', 'score': 0.9860634, 'index': 240, 'word': '##ral', 'start': 712, 'end': 715}, {'entity': 'I-PER', 'score': 0.72353315, 'index': 241, 'word': '##ith', 'start': 715, 'end': 718}, {'entity': 'I-PER', 'score': 0.9794867, 'index': 242, 'word': '##aran', 'start': 718, 'end': 722}, {'entity': 'I-PER', 'score': 0.9994492, 'index': 244, 'word': 'Up', 'start': 725, 'end': 727}, {'entity': 'I-PER', 'score': 0.99949694, 'index': 245, 'word': '##ul', 'start': 727, 'end': 729}, {'entity': 'I-PER', 'score': 0.99959546, 'index': 246, 'word': 'Chan', 'start': 730, 'end': 734}, {'entity': 'I-PER', 'score': 0.9923265, 'index': 247, 'word': '##dan', 'start': 734, 'end': 737}, {'entity': 'I-PER', 'score': 0.99322504, 'index': 248, 'word': '##a', 'start': 737, 'end': 738}]
[{'entity': 'I-ORG', 'score': 0.629855, 'index': 1, 'word': 'ROM', 'start': 0, 'end': 3}, {'entity': 'I-ORG', 'score': 0.61111194, 'index': 2, 'word': '##AN', 'start': 3, 'end': 5}, {'entity': 'I-ORG', 'score': 0.97197556, 'index': 3, 'word': '##IA', 'start': 5, 'end': 7}, {'entity': 'I-ORG', 'score': 0.9595006, 'index': 4, 'word': 'CO', 'start': 8, 'end': 10}, {'entity': 'I-ORG', 'score': 0.72747, 'index': 5, 'word': '##ME', 'start': 10, 'end': 12}, {'entity': 'I-ORG', 'score': 0.90232104, 'index': 6, 'word': '##LF', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.9884371, 'index': 28, 'word': 'B', 'start': 50, 'end': 51}, {'entity': 'I-LOC', 'score': 0.557334, 'index': 29, 'word': '##UC', 'start': 51, 'end': 53}, {'entity': 'I-LOC', 'score': 0.6964963, 'index': 30, 'word': '##HA', 'start': 53, 'end': 55}, {'entity': 'I-MISC', 'score': 0.9987281, 'index': 42, 'word': 'Romanian', 'start': 76, 'end': 84}, {'entity': 'I-ORG', 'score': 0.9018506, 'index': 46, 'word': 'Come', 'start': 107, 'end': 111}, {'entity': 'I-ORG', 'score': 0.9940614, 'index': 47, 'word': '##lf', 'start': 111, 'end': 113}, {'entity': 'I-ORG', 'score': 0.9988067, 'index': 116, 'word': 'Come', 'start': 398, 'end': 402}, {'entity': 'I-ORG', 'score': 0.99565876, 'index': 117, 'word': '##lf', 'start': 402, 'end': 404}, {'entity': 'I-LOC', 'score': 0.9974618, 'index': 151, 'word': 'Bucharest', 'start': 538, 'end': 547}, {'entity': 'I-ORG', 'score': 0.9988022, 'index': 160, 'word': 'Come', 'start': 577, 'end': 581}, {'entity': 'I-ORG', 'score': 0.9962943, 'index': 161, 'word': '##lf', 'start': 581, 'end': 583}, {'entity': 'I-MISC', 'score': 0.6903344, 'index': 167, 'word': 'Transylvania', 'start': 607, 'end': 619}, {'entity': 'I-MISC', 'score': 0.9949352, 'index': 168, 'word': '##n', 'start': 619, 'end': 620}, {'entity': 'I-LOC', 'score': 0.99813217, 'index': 171, 'word': 'B', 'start': 629, 'end': 630}, {'entity': 'I-LOC', 'score': 0.99186593, 'index': 172, 'word': '##ist', 'start': 630, 'end': 633}, {'entity': 'I-LOC', 'score': 0.9959437, 'index': 173, 'word': '##rita', 'start': 633, 'end': 637}, {'entity': 'I-ORG', 'score': 0.9987649, 'index': 237, 'word': 'Come', 'start': 955, 'end': 959}, {'entity': 'I-ORG', 'score': 0.99431807, 'index': 238, 'word': '##lf', 'start': 959, 'end': 961}, {'entity': 'I-LOC', 'score': 0.9223426, 'index': 397, 'word': 'Bucharest', 'start': 1613, 'end': 1622}]
[{'entity': 'I-MISC', 'score': 0.628098, 'index': 1, 'word': 'P', 'start': 0, 'end': 1}, {'entity': 'I-MISC', 'score': 0.62403077, 'index': 2, 'word': '##OL', 'start': 1, 'end': 3}, {'entity': 'I-ORG', 'score': 0.8125768, 'index': 5, 'word': 'N', 'start': 7, 'end': 8}, {'entity': 'I-ORG', 'score': 0.39107242, 'index': 16, 'word': 'R', 'start': 25, 'end': 26}, {'entity': 'I-ORG', 'score': 0.57206094, 'index': 21, 'word': 'R', 'start': 33, 'end': 34}, {'entity': 'I-ORG', 'score': 0.4629909, 'index': 22, 'word': '##EP', 'start': 34, 'end': 36}, {'entity': 'I-LOC', 'score': 0.9961659, 'index': 34, 'word': 'WA', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.96440303, 'index': 35, 'word': '##RS', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.7720475, 'index': 36, 'word': '##A', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.992141, 'index': 37, 'word': '##W', 'start': 60, 'end': 61}, {'entity': 'I-ORG', 'score': 0.99940705, 'index': 48, 'word': 'National', 'start': 82, 'end': 90}, {'entity': 'I-ORG', 'score': 0.9988931, 'index': 49, 'word': 'Bank', 'start': 91, 'end': 95}, {'entity': 'I-ORG', 'score': 0.99781656, 'index': 50, 'word': 'of', 'start': 96, 'end': 98}, {'entity': 'I-ORG', 'score': 0.99315226, 'index': 51, 'word': 'Poland', 'start': 99, 'end': 105}, {'entity': 'I-ORG', 'score': 0.99967134, 'index': 82, 'word': 'Warsaw', 'start': 200, 'end': 206}, {'entity': 'I-ORG', 'score': 0.99965537, 'index': 83, 'word': 'News', 'start': 207, 'end': 211}, {'entity': 'I-ORG', 'score': 0.9992065, 'index': 84, 'word': '##room', 'start': 211, 'end': 215}]
[{'entity': 'I-LOC', 'score': 0.99930775, 'index': 1, 'word': 'Canada', 'start': 0, 'end': 6}, {'entity': 'I-LOC', 'score': 0.9837863, 'index': 14, 'word': 'O', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.79815704, 'index': 15, 'word': '##TT', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.789581, 'index': 16, 'word': '##A', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9770224, 'index': 17, 'word': '##WA', 'start': 56, 'end': 58}, {'entity': 'I-ORG', 'score': 0.99506617, 'index': 30, 'word': 'Canada', 'start': 93, 'end': 99}, {'entity': 'I-ORG', 'score': 0.9988996, 'index': 46, 'word': 'Bank', 'start': 161, 'end': 165}, {'entity': 'I-ORG', 'score': 0.99875677, 'index': 47, 'word': 'of', 'start': 166, 'end': 168}, {'entity': 'I-ORG', 'score': 0.9987991, 'index': 48, 'word': 'Canada', 'start': 169, 'end': 175}, {'entity': 'I-ORG', 'score': 0.97085446, 'index': 135, 'word': 'Treasury', 'start': 387, 'end': 395}, {'entity': 'I-LOC', 'score': 0.97071236, 'index': 152, 'word': 'Canada', 'start': 430, 'end': 436}, {'entity': 'I-MISC', 'score': 0.99853206, 'index': 208, 'word': 'Canadian', 'start': 598, 'end': 606}, {'entity': 'I-MISC', 'score': 0.9985031, 'index': 223, 'word': 'Canadian', 'start': 639, 'end': 647}, {'entity': 'I-ORG', 'score': 0.99946135, 'index': 317, 'word': 'Re', 'start': 859, 'end': 861}, {'entity': 'I-ORG', 'score': 0.9968669, 'index': 318, 'word': '##uters', 'start': 861, 'end': 866}, {'entity': 'I-ORG', 'score': 0.9955966, 'index': 319, 'word': 'Ottawa', 'start': 867, 'end': 873}, {'entity': 'I-ORG', 'score': 0.99652797, 'index': 320, 'word': 'Bureau', 'start': 874, 'end': 880}]
[{'entity': 'I-ORG', 'score': 0.9995005, 'index': 1, 'word': 'Jones', 'start': 0, 'end': 5}, {'entity': 'I-ORG', 'score': 0.9986156, 'index': 2, 'word': 'Medical', 'start': 6, 'end': 13}, {'entity': 'I-LOC', 'score': 0.6756492, 'index': 11, 'word': 'ST', 'start': 43, 'end': 45}, {'entity': 'I-LOC', 'score': 0.8096022, 'index': 13, 'word': 'L', 'start': 47, 'end': 48}, {'entity': 'I-LOC', 'score': 0.54548347, 'index': 14, 'word': '##O', 'start': 48, 'end': 49}, {'entity': 'I-ORG', 'score': 0.52278376, 'index': 15, 'word': '##UI', 'start': 49, 'end': 51}, {'entity': 'I-LOC', 'score': 0.9658206, 'index': 16, 'word': '##S', 'start': 51, 'end': 52}, {'entity': 'I-ORG', 'score': 0.99964476, 'index': 26, 'word': 'Jones', 'start': 69, 'end': 74}, {'entity': 'I-ORG', 'score': 0.9993899, 'index': 27, 'word': 'Medical', 'start': 75, 'end': 82}, {'entity': 'I-ORG', 'score': 0.99903417, 'index': 28, 'word': 'Industries', 'start': 83, 'end': 93}, {'entity': 'I-ORG', 'score': 0.99938583, 'index': 29, 'word': 'Inc', 'start': 94, 'end': 97}, {'entity': 'I-ORG', 'score': 0.999716, 'index': 37, 'word': 'Daniels', 'start': 142, 'end': 149}, {'entity': 'I-ORG', 'score': 0.9994205, 'index': 38, 'word': 'Ph', 'start': 150, 'end': 152}, {'entity': 'I-ORG', 'score': 0.9990921, 'index': 39, 'word': '##arma', 'start': 152, 'end': 156}, {'entity': 'I-ORG', 'score': 0.9975017, 'index': 40, 'word': '##ce', 'start': 156, 'end': 158}, {'entity': 'I-ORG', 'score': 0.9993518, 'index': 41, 'word': '##utical', 'start': 158, 'end': 164}, {'entity': 'I-ORG', 'score': 0.99914324, 'index': 42, 'word': '##s', 'start': 164, 'end': 165}, {'entity': 'I-ORG', 'score': 0.99942327, 'index': 43, 'word': 'Inc', 'start': 166, 'end': 169}, {'entity': 'I-LOC', 'score': 0.99875104, 'index': 45, 'word': 'St', 'start': 173, 'end': 175}, {'entity': 'I-LOC', 'score': 0.99846184, 'index': 47, 'word': 'Petersburg', 'start': 177, 'end': 187}, {'entity': 'I-LOC', 'score': 0.99722445, 'index': 49, 'word': 'F', 'start': 190, 'end': 191}, {'entity': 'I-LOC', 'score': 0.9705483, 'index': 50, 'word': '##la', 'start': 191, 'end': 193}, {'entity': 'I-ORG', 'score': 0.96002334, 'index': 63, 'word': 'Jones', 'start': 227, 'end': 232}, {'entity': 'I-ORG', 'score': 0.99833614, 'index': 71, 'word': 'Jones', 'start': 253, 'end': 258}, {'entity': 'I-ORG', 'score': 0.9993868, 'index': 86, 'word': 'Daniels', 'start': 301, 'end': 308}, {'entity': 'I-ORG', 'score': 0.9988519, 'index': 87, 'word': 'Ph', 'start': 309, 'end': 311}, {'entity': 'I-ORG', 'score': 0.99672663, 'index': 88, 'word': '##arma', 'start': 311, 'end': 315}, {'entity': 'I-ORG', 'score': 0.99603796, 'index': 89, 'word': '##ce', 'start': 315, 'end': 317}, {'entity': 'I-ORG', 'score': 0.9981293, 'index': 90, 'word': '##utical', 'start': 317, 'end': 323}, {'entity': 'I-ORG', 'score': 0.9663852, 'index': 91, 'word': '##s', 'start': 323, 'end': 324}, {'entity': 'I-MISC', 'score': 0.966724, 'index': 102, 'word': 'Lev', 'start': 401, 'end': 404}, {'entity': 'I-MISC', 'score': 0.87484676, 'index': 103, 'word': '##ox', 'start': 404, 'end': 406}, {'entity': 'I-LOC', 'score': 0.998285, 'index': 126, 'word': 'Chicago', 'start': 477, 'end': 484}]
[{'entity': 'I-ORG', 'score': 0.98169553, 'index': 1, 'word': 'NY', 'start': 0, 'end': 2}, {'entity': 'I-ORG', 'score': 0.9852047, 'index': 2, 'word': '##ME', 'start': 2, 'end': 4}, {'entity': 'I-ORG', 'score': 0.88135916, 'index': 3, 'word': '##X', 'start': 4, 'end': 5}, {'entity': 'I-LOC', 'score': 0.9995215, 'index': 19, 'word': 'NE', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.99811006, 'index': 20, 'word': '##W', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.999539, 'index': 21, 'word': 'Y', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.96706635, 'index': 22, 'word': '##OR', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9995347, 'index': 23, 'word': '##K', 'start': 63, 'end': 64}, {'entity': 'I-ORG', 'score': 0.97179157, 'index': 33, 'word': 'NY', 'start': 81, 'end': 83}, {'entity': 'I-ORG', 'score': 0.9842828, 'index': 34, 'word': '##ME', 'start': 83, 'end': 85}, {'entity': 'I-ORG', 'score': 0.78961813, 'index': 35, 'word': '##X', 'start': 85, 'end': 86}, {'entity': 'I-ORG', 'score': 0.99783105, 'index': 59, 'word': 'U', 'start': 224, 'end': 225}, {'entity': 'I-ORG', 'score': 0.9842843, 'index': 61, 'word': 'S', 'start': 226, 'end': 227}, {'entity': 'I-MISC', 'score': 0.9954333, 'index': 63, 'word': 'Labor', 'start': 229, 'end': 234}, {'entity': 'I-MISC', 'score': 0.9981287, 'index': 64, 'word': 'Day', 'start': 235, 'end': 238}, {'entity': 'I-LOC', 'score': 0.999445, 'index': 94, 'word': 'Texas', 'start': 346, 'end': 351}, {'entity': 'I-MISC', 'score': 0.9970823, 'index': 319, 'word': 'Labor', 'start': 1214, 'end': 1219}, {'entity': 'I-MISC', 'score': 0.9987865, 'index': 320, 'word': 'Day', 'start': 1220, 'end': 1223}, {'entity': 'I-ORG', 'score': 0.9849281, 'index': 331, 'word': 'NY', 'start': 1262, 'end': 1264}, {'entity': 'I-ORG', 'score': 0.98765266, 'index': 332, 'word': '##ME', 'start': 1264, 'end': 1266}, {'entity': 'I-ORG', 'score': 0.8325584, 'index': 333, 'word': '##X', 'start': 1266, 'end': 1267}, {'entity': 'I-MISC', 'score': 0.99675673, 'index': 340, 'word': 'Labor', 'start': 1297, 'end': 1302}, {'entity': 'I-MISC', 'score': 0.99855036, 'index': 341, 'word': 'Day', 'start': 1303, 'end': 1306}, {'entity': 'I-PER', 'score': 0.99853563, 'index': 349, 'word': 'Harry', 'start': 1317, 'end': 1322}, {'entity': 'I-PER', 'score': 0.99936134, 'index': 350, 'word': 'Mill', 'start': 1323, 'end': 1327}, {'entity': 'I-PER', 'score': 0.9943901, 'index': 351, 'word': '##ing', 'start': 1327, 'end': 1330}, {'entity': 'I-ORG', 'score': 0.9997341, 'index': 353, 'word': 'New', 'start': 1333, 'end': 1336}, {'entity': 'I-ORG', 'score': 0.9996612, 'index': 354, 'word': 'York', 'start': 1337, 'end': 1341}, {'entity': 'I-ORG', 'score': 0.9994629, 'index': 355, 'word': 'Energy', 'start': 1342, 'end': 1348}, {'entity': 'I-ORG', 'score': 0.99955124, 'index': 356, 'word': 'Des', 'start': 1349, 'end': 1352}, {'entity': 'I-ORG', 'score': 0.99914956, 'index': 357, 'word': '##k', 'start': 1352, 'end': 1353}]
[{'entity': 'I-LOC', 'score': 0.99896646, 'index': 1, 'word': 'U', 'start': 0, 'end': 1}, {'entity': 'I-LOC', 'score': 0.9958754, 'index': 3, 'word': 'S', 'start': 2, 'end': 3}, {'entity': 'I-LOC', 'score': 0.8462856, 'index': 4, 'word': '.', 'start': 3, 'end': 4}, {'entity': 'I-LOC', 'score': 0.8063002, 'index': 13, 'word': 'Chicago', 'start': 40, 'end': 47}, {'entity': 'I-MISC', 'score': 0.98594576, 'index': 14, 'word': 'N', 'start': 48, 'end': 49}, {'entity': 'I-MISC', 'score': 0.6100316, 'index': 15, 'word': '##AP', 'start': 49, 'end': 51}, {'entity': 'I-MISC', 'score': 0.703827, 'index': 16, 'word': '##M', 'start': 51, 'end': 52}, {'entity': 'I-LOC', 'score': 0.9982205, 'index': 22, 'word': 'CH', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.97003335, 'index': 23, 'word': '##IC', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.94101745, 'index': 24, 'word': '##AG', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.9969728, 'index': 25, 'word': '##O', 'start': 66, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9987399, 'index': 35, 'word': 'U', 'start': 84, 'end': 85}, {'entity': 'I-LOC', 'score': 0.9949816, 'index': 37, 'word': 'S', 'start': 86, 'end': 87}, {'entity': 'I-LOC', 'score': 0.723354, 'index': 38, 'word': '.', 'start': 87, 'end': 88}, {'entity': 'I-ORG', 'score': 0.9974312, 'index': 66, 'word': 'National', 'start': 233, 'end': 241}, {'entity': 'I-ORG', 'score': 0.999286, 'index': 67, 'word': 'Association', 'start': 242, 'end': 253}, {'entity': 'I-ORG', 'score': 0.999424, 'index': 68, 'word': 'of', 'start': 254, 'end': 256}, {'entity': 'I-ORG', 'score': 0.9989949, 'index': 69, 'word': 'P', 'start': 257, 'end': 258}, {'entity': 'I-ORG', 'score': 0.7251966, 'index': 70, 'word': '##ur', 'start': 258, 'end': 260}, {'entity': 'I-ORG', 'score': 0.87420005, 'index': 71, 'word': '##cha', 'start': 260, 'end': 263}, {'entity': 'I-ORG', 'score': 0.9963476, 'index': 72, 'word': '##sing', 'start': 263, 'end': 267}, {'entity': 'I-ORG', 'score': 0.99852717, 'index': 73, 'word': 'Management', 'start': 268, 'end': 278}, {'entity': 'I-ORG', 'score': 0.86227494, 'index': 75, 'word': 'N', 'start': 281, 'end': 282}, {'entity': 'I-ORG', 'score': 0.9507194, 'index': 76, 'word': '##AP', 'start': 282, 'end': 284}, {'entity': 'I-ORG', 'score': 0.822211, 'index': 77, 'word': '##M', 'start': 284, 'end': 285}, {'entity': 'I-LOC', 'score': 0.9991509, 'index': 82, 'word': 'Chicago', 'start': 302, 'end': 309}, {'entity': 'I-LOC', 'score': 0.88418305, 'index': 96, 'word': 'Chicago', 'start': 361, 'end': 368}, {'entity': 'I-MISC', 'score': 0.93085164, 'index': 97, 'word': 'N', 'start': 369, 'end': 370}, {'entity': 'I-MISC', 'score': 0.99021685, 'index': 137, 'word': 'Euro', 'start': 535, 'end': 539}, {'entity': 'I-MISC', 'score': 0.99865603, 'index': 178, 'word': 'Japanese', 'start': 687, 'end': 695}, {'entity': 'I-MISC', 'score': 0.9939837, 'index': 185, 'word': 'Euro', 'start': 726, 'end': 730}, {'entity': 'I-MISC', 'score': 0.9874443, 'index': 202, 'word': 'Euro', 'start': 803, 'end': 807}, {'entity': 'I-LOC', 'score': 0.9988863, 'index': 217, 'word': 'U', 'start': 859, 'end': 860}, {'entity': 'I-LOC', 'score': 0.9822092, 'index': 219, 'word': 'S', 'start': 861, 'end': 862}, {'entity': 'I-LOC', 'score': 0.4643216, 'index': 220, 'word': '.', 'start': 862, 'end': 863}, {'entity': 'I-MISC', 'score': 0.99892884, 'index': 253, 'word': 'French', 'start': 989, 'end': 995}, {'entity': 'I-ORG', 'score': 0.99960345, 'index': 322, 'word': 'Federal', 'start': 1251, 'end': 1258}, {'entity': 'I-ORG', 'score': 0.9990834, 'index': 323, 'word': 'Reserve', 'start': 1259, 'end': 1266}, {'entity': 'I-ORG', 'score': 0.7868807, 'index': 401, 'word': 'S', 'start': 1588, 'end': 1589}, {'entity': 'I-ORG', 'score': 0.86904347, 'index': 431, 'word': 'S', 'start': 1715, 'end': 1716}, {'entity': 'I-ORG', 'score': 0.83527964, 'index': 454, 'word': 'S', 'start': 1827, 'end': 1828}, {'entity': 'I-ORG', 'score': 0.9928889, 'index': 465, 'word': 'U', 'start': 1876, 'end': 1877}, {'entity': 'I-ORG', 'score': 0.6096242, 'index': 467, 'word': 'S', 'start': 1878, 'end': 1879}, {'entity': 'I-ORG', 'score': 0.993972, 'index': 481, 'word': 'Federal', 'start': 1949, 'end': 1956}, {'entity': 'I-ORG', 'score': 0.99652344, 'index': 482, 'word': 'Reserve', 'start': 1957, 'end': 1964}, {'entity': 'I-ORG', 'score': 0.9969258, 'index': 489, 'word': 'Federal', 'start': 2001, 'end': 2008}, {'entity': 'I-ORG', 'score': 0.9868689, 'index': 492, 'word': 'Committee', 'start': 2021, 'end': 2030}, {'entity': 'I-ORG', 'score': 0.90613186, 'index': 500, 'word': 'S', 'start': 2059, 'end': 2060}, {'entity': 'I-ORG', 'score': 0.9978016, 'index': 502, 'word': 'Federal', 'start': 2062, 'end': 2069}, {'entity': 'I-ORG', 'score': 0.9973105, 'index': 503, 'word': 'Reserve', 'start': 2070, 'end': 2077}, {'entity': 'I-ORG', 'score': 0.7834788, 'index': 505, 'word': 'Lawrence', 'start': 2087, 'end': 2095}, {'entity': 'I-ORG', 'score': 0.6093698, 'index': 506, 'word': 'Lindsey', 'start': 2096, 'end': 2103}, {'entity': 'I-ORG', 'score': 0.9958157, 'index': 510, 'word': 'U', 'start': 2118, 'end': 2119}]
[{'entity': 'I-ORG', 'score': 0.99977213, 'index': 1, 'word': 'Douglas', 'start': 0, 'end': 7}, {'entity': 'I-ORG', 'score': 0.9993969, 'index': 2, 'word': '&', 'start': 8, 'end': 9}, {'entity': 'I-ORG', 'score': 0.99955636, 'index': 3, 'word': 'Lo', 'start': 10, 'end': 12}, {'entity': 'I-ORG', 'score': 0.9991146, 'index': 4, 'word': '##mas', 'start': 12, 'end': 15}, {'entity': 'I-ORG', 'score': 0.9986406, 'index': 5, 'word': '##on', 'start': 15, 'end': 17}, {'entity': 'I-LOC', 'score': 0.97086763, 'index': 15, 'word': 'FA', 'start': 47, 'end': 49}, {'entity': 'I-ORG', 'score': 0.56396943, 'index': 16, 'word': '##R', 'start': 49, 'end': 50}, {'entity': 'I-LOC', 'score': 0.8910277, 'index': 17, 'word': '##MI', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.89941955, 'index': 18, 'word': '##NG', 'start': 52, 'end': 54}, {'entity': 'I-LOC', 'score': 0.92028606, 'index': 19, 'word': '##TO', 'start': 54, 'end': 56}, {'entity': 'I-LOC', 'score': 0.87748545, 'index': 20, 'word': '##N', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.85992324, 'index': 21, 'word': 'H', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.6460454, 'index': 22, 'word': '##IL', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.83140236, 'index': 23, 'word': '##LS', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9777038, 'index': 25, 'word': 'Mi', 'start': 66, 'end': 68}, {'entity': 'I-LOC', 'score': 0.96160144, 'index': 26, 'word': '##ch', 'start': 68, 'end': 70}, {'entity': 'I-ORG', 'score': 0.99979013, 'index': 45, 'word': 'Douglas', 'start': 104, 'end': 111}, {'entity': 'I-ORG', 'score': 0.99949074, 'index': 46, 'word': '&', 'start': 112, 'end': 113}, {'entity': 'I-ORG', 'score': 0.9996575, 'index': 47, 'word': 'Lo', 'start': 114, 'end': 116}, {'entity': 'I-ORG', 'score': 0.9995322, 'index': 48, 'word': '##mas', 'start': 116, 'end': 119}, {'entity': 'I-ORG', 'score': 0.9995524, 'index': 49, 'word': '##on', 'start': 119, 'end': 121}, {'entity': 'I-ORG', 'score': 0.9991509, 'index': 50, 'word': 'Co', 'start': 122, 'end': 124}, {'entity': 'I-ORG', 'score': 0.9996761, 'index': 82, 'word': 'Ma', 'start': 254, 'end': 256}, {'entity': 'I-ORG', 'score': 0.9995658, 'index': 83, 'word': '##gna', 'start': 256, 'end': 259}, {'entity': 'I-ORG', 'score': 0.99960715, 'index': 84, 'word': 'International', 'start': 260, 'end': 273}, {'entity': 'I-ORG', 'score': 0.9995943, 'index': 85, 'word': 'Inc', 'start': 274, 'end': 277}, {'entity': 'I-ORG', 'score': 0.99783796, 'index': 101, 'word': 'Ma', 'start': 321, 'end': 323}, {'entity': 'I-ORG', 'score': 0.99883026, 'index': 102, 'word': '##gna', 'start': 323, 'end': 326}, {'entity': 'I-ORG', 'score': 0.99655735, 'index': 116, 'word': 'New', 'start': 355, 'end': 358}, {'entity': 'I-ORG', 'score': 0.9990773, 'index': 117, 'word': 'York', 'start': 359, 'end': 363}, {'entity': 'I-ORG', 'score': 0.99826884, 'index': 118, 'word': 'Stock', 'start': 364, 'end': 369}, {'entity': 'I-ORG', 'score': 0.9977188, 'index': 119, 'word': 'Exchange', 'start': 370, 'end': 378}, {'entity': 'I-ORG', 'score': 0.99981505, 'index': 125, 'word': 'Douglas', 'start': 386, 'end': 393}, {'entity': 'I-ORG', 'score': 0.9990126, 'index': 126, 'word': '&', 'start': 394, 'end': 395}, {'entity': 'I-ORG', 'score': 0.99959236, 'index': 127, 'word': 'Lo', 'start': 396, 'end': 398}, {'entity': 'I-ORG', 'score': 0.9992926, 'index': 128, 'word': '##mas', 'start': 398, 'end': 401}, {'entity': 'I-ORG', 'score': 0.9979455, 'index': 129, 'word': '##on', 'start': 401, 'end': 403}, {'entity': 'I-LOC', 'score': 0.6255279, 'index': 168, 'word': 'Mark', 'start': 585, 'end': 589}, {'entity': 'I-LOC', 'score': 0.72701997, 'index': 169, 'word': '##ham', 'start': 589, 'end': 592}, {'entity': 'I-MISC', 'score': 0.9913669, 'index': 171, 'word': 'Ontario', 'start': 595, 'end': 602}, {'entity': 'I-ORG', 'score': 0.9981139, 'index': 174, 'word': 'Ma', 'start': 609, 'end': 611}, {'entity': 'I-ORG', 'score': 0.99881494, 'index': 175, 'word': '##gna', 'start': 611, 'end': 614}, {'entity': 'I-LOC', 'score': 0.50548065, 'index': 178, 'word': 'North', 'start': 618, 'end': 623}, {'entity': 'I-MISC', 'score': 0.94967127, 'index': 179, 'word': 'American', 'start': 624, 'end': 632}, {'entity': 'I-ORG', 'score': 0.9996488, 'index': 192, 'word': 'Johnson', 'start': 701, 'end': 708}, {'entity': 'I-ORG', 'score': 0.9997009, 'index': 193, 'word': 'Control', 'start': 709, 'end': 716}, {'entity': 'I-ORG', 'score': 0.9995285, 'index': 194, 'word': '##s', 'start': 716, 'end': 717}, {'entity': 'I-ORG', 'score': 0.999613, 'index': 195, 'word': 'Inc', 'start': 718, 'end': 721}, {'entity': 'I-ORG', 'score': 0.9996258, 'index': 197, 'word': 'Lea', 'start': 726, 'end': 729}, {'entity': 'I-ORG', 'score': 0.99956137, 'index': 198, 'word': '##r', 'start': 729, 'end': 730}, {'entity': 'I-ORG', 'score': 0.99960214, 'index': 199, 'word': 'Corp', 'start': 731, 'end': 735}, {'entity': 'I-ORG', 'score': 0.9997962, 'index': 208, 'word': 'Douglas', 'start': 761, 'end': 768}, {'entity': 'I-ORG', 'score': 0.99911743, 'index': 209, 'word': '&', 'start': 769, 'end': 770}, {'entity': 'I-ORG', 'score': 0.99954563, 'index': 210, 'word': 'Lo', 'start': 771, 'end': 773}, {'entity': 'I-ORG', 'score': 0.99928623, 'index': 211, 'word': '##mas', 'start': 773, 'end': 776}, {'entity': 'I-ORG', 'score': 0.998917, 'index': 212, 'word': '##on', 'start': 776, 'end': 778}, {'entity': 'I-PER', 'score': 0.9992879, 'index': 240, 'word': 'James', 'start': 917, 'end': 922}, {'entity': 'I-PER', 'score': 0.9996228, 'index': 241, 'word': 'Ho', 'start': 923, 'end': 925}, {'entity': 'I-PER', 'score': 0.99417734, 'index': 242, 'word': '##ey', 'start': 925, 'end': 927}, {'entity': 'I-PER', 'score': 0.9988194, 'index': 275, 'word': 'Ho', 'start': 1070, 'end': 1072}, {'entity': 'I-PER', 'score': 0.8598682, 'index': 276, 'word': '##ey', 'start': 1072, 'end': 1074}, {'entity': 'I-ORG', 'score': 0.9997009, 'index': 300, 'word': 'Douglas', 'start': 1155, 'end': 1162}, {'entity': 'I-ORG', 'score': 0.9980736, 'index': 301, 'word': '&', 'start': 1163, 'end': 1164}, {'entity': 'I-ORG', 'score': 0.9994153, 'index': 302, 'word': 'Lo', 'start': 1165, 'end': 1167}, {'entity': 'I-ORG', 'score': 0.9991233, 'index': 303, 'word': '##mas', 'start': 1167, 'end': 1170}, {'entity': 'I-ORG', 'score': 0.99661875, 'index': 304, 'word': '##on', 'start': 1170, 'end': 1172}, {'entity': 'I-ORG', 'score': 0.99583566, 'index': 316, 'word': 'Ma', 'start': 1223, 'end': 1225}, {'entity': 'I-ORG', 'score': 0.99352115, 'index': 317, 'word': '##gna', 'start': 1225, 'end': 1228}, {'entity': 'I-ORG', 'score': 0.99975747, 'index': 336, 'word': 'Douglas', 'start': 1307, 'end': 1314}, {'entity': 'I-ORG', 'score': 0.9986858, 'index': 337, 'word': '&', 'start': 1315, 'end': 1316}, {'entity': 'I-ORG', 'score': 0.9994961, 'index': 338, 'word': 'Lo', 'start': 1317, 'end': 1319}, {'entity': 'I-ORG', 'score': 0.99934405, 'index': 339, 'word': '##mas', 'start': 1319, 'end': 1322}, {'entity': 'I-ORG', 'score': 0.9980311, 'index': 340, 'word': '##on', 'start': 1322, 'end': 1324}, {'entity': 'I-ORG', 'score': 0.99729985, 'index': 424, 'word': 'Ford', 'start': 1667, 'end': 1671}, {'entity': 'I-PER', 'score': 0.9051934, 'index': 471, 'word': 'John', 'start': 1860, 'end': 1864}, {'entity': 'I-ORG', 'score': 0.9279025, 'index': 472, 'word': 'Case', 'start': 1865, 'end': 1869}, {'entity': 'I-ORG', 'score': 0.9574877, 'index': 483, 'word': 'Co', 'start': 1895, 'end': 1897}, {'entity': 'I-ORG', 'score': 0.816821, 'index': 493, 'word': 'Ma', 'start': 1922, 'end': 1924}, {'entity': 'I-ORG', 'score': 0.9094092, 'index': 494, 'word': '##gna', 'start': 1924, 'end': 1927}]
[{'entity': 'I-LOC', 'score': 0.99968207, 'index': 1, 'word': 'UK', 'start': 0, 'end': 2}, {'entity': 'I-LOC', 'score': 0.99863714, 'index': 6, 'word': 'Chicago', 'start': 24, 'end': 31}, {'entity': 'I-LOC', 'score': 0.9989317, 'index': 16, 'word': 'L', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9982672, 'index': 17, 'word': '##ON', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9841171, 'index': 18, 'word': '##D', 'start': 62, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9990324, 'index': 19, 'word': '##ON', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9996432, 'index': 29, 'word': 'UK', 'start': 82, 'end': 84}, {'entity': 'I-LOC', 'score': 0.99948704, 'index': 58, 'word': 'Chicago', 'start': 196, 'end': 203}, {'entity': 'I-PER', 'score': 0.99956685, 'index': 161, 'word': 'Jim', 'start': 575, 'end': 578}, {'entity': 'I-PER', 'score': 0.99960107, 'index': 162, 'word': 'Ball', 'start': 579, 'end': 583}, {'entity': 'I-PER', 'score': 0.95501107, 'index': 163, 'word': '##ant', 'start': 583, 'end': 586}, {'entity': 'I-PER', 'score': 0.9989243, 'index': 164, 'word': '##yne', 'start': 586, 'end': 589}, {'entity': 'I-ORG', 'score': 0.9997812, 'index': 166, 'word': 'London', 'start': 592, 'end': 598}, {'entity': 'I-ORG', 'score': 0.9995764, 'index': 167, 'word': 'News', 'start': 599, 'end': 603}, {'entity': 'I-ORG', 'score': 0.9989945, 'index': 168, 'word': '##room', 'start': 603, 'end': 607}]
[{'entity': 'I-MISC', 'score': 0.99660337, 'index': 1, 'word': 'Iraqi', 'start': 0, 'end': 5}, {'entity': 'I-MISC', 'score': 0.9965276, 'index': 5, 'word': 'Sudan', 'start': 17, 'end': 22}, {'entity': 'I-MISC', 'score': 0.99600035, 'index': 6, 'word': '##ese', 'start': 22, 'end': 25}, {'entity': 'I-LOC', 'score': 0.99905986, 'index': 17, 'word': 'L', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9986985, 'index': 18, 'word': '##ON', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.98443985, 'index': 19, 'word': '##D', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.99937505, 'index': 20, 'word': '##ON', 'start': 61, 'end': 63}, {'entity': 'I-MISC', 'score': 0.9944199, 'index': 31, 'word': 'Iraqi', 'start': 86, 'end': 91}, {'entity': 'I-MISC', 'score': 0.9972766, 'index': 36, 'word': 'Sudan', 'start': 106, 'end': 111}, {'entity': 'I-MISC', 'score': 0.9971233, 'index': 37, 'word': '##ese', 'start': 111, 'end': 114}, {'entity': 'I-LOC', 'score': 0.9996854, 'index': 50, 'word': 'London', 'start': 171, 'end': 177}, {'entity': 'I-LOC', 'score': 0.99986064, 'index': 69, 'word': 'Britain', 'start': 281, 'end': 288}, {'entity': 'I-LOC', 'score': 0.9991998, 'index': 91, 'word': 'Stan', 'start': 379, 'end': 383}, {'entity': 'I-LOC', 'score': 0.9980215, 'index': 92, 'word': '##sted', 'start': 383, 'end': 387}, {'entity': 'I-MISC', 'score': 0.99603915, 'index': 114, 'word': 'Iraqi', 'start': 483, 'end': 488}, {'entity': 'I-PER', 'score': 0.9975594, 'index': 129, 'word': 'Saddam', 'start': 554, 'end': 560}, {'entity': 'I-PER', 'score': 0.9986816, 'index': 131, 'word': 'Hussein', 'start': 563, 'end': 570}, {'entity': 'I-ORG', 'score': 0.76624656, 'index': 135, 'word': 'interior', 'start': 579, 'end': 587}, {'entity': 'I-ORG', 'score': 0.73005044, 'index': 136, 'word': 'ministry', 'start': 588, 'end': 596}, {'entity': 'I-MISC', 'score': 0.9990067, 'index': 165, 'word': 'English', 'start': 737, 'end': 744}, {'entity': 'I-LOC', 'score': 0.99984515, 'index': 202, 'word': 'Iraq', 'start': 950, 'end': 954}, {'entity': 'I-MISC', 'score': 0.99171185, 'index': 216, 'word': 'Am', 'start': 997, 'end': 999}, {'entity': 'I-MISC', 'score': 0.8513434, 'index': 217, 'word': '##man', 'start': 999, 'end': 1002}, {'entity': 'I-LOC', 'score': 0.9996209, 'index': 230, 'word': 'K', 'start': 1061, 'end': 1062}, {'entity': 'I-LOC', 'score': 0.9993125, 'index': 231, 'word': '##hart', 'start': 1062, 'end': 1066}, {'entity': 'I-LOC', 'score': 0.98341537, 'index': 232, 'word': '##ou', 'start': 1066, 'end': 1068}, {'entity': 'I-LOC', 'score': 0.99966335, 'index': 233, 'word': '##m', 'start': 1068, 'end': 1069}, {'entity': 'I-LOC', 'score': 0.9998499, 'index': 255, 'word': 'Cyprus', 'start': 1144, 'end': 1150}, {'entity': 'I-LOC', 'score': 0.99942195, 'index': 261, 'word': 'London', 'start': 1177, 'end': 1183}]
[{'entity': 'I-LOC', 'score': 0.9987324, 'index': 10, 'word': 'L', 'start': 31, 'end': 32}, {'entity': 'I-LOC', 'score': 0.9922794, 'index': 11, 'word': '##ON', 'start': 32, 'end': 34}, {'entity': 'I-LOC', 'score': 0.9075313, 'index': 12, 'word': '##D', 'start': 34, 'end': 35}, {'entity': 'I-LOC', 'score': 0.99807787, 'index': 13, 'word': '##ON', 'start': 35, 'end': 37}, {'entity': 'I-MISC', 'score': 0.9988034, 'index': 34, 'word': 'European', 'start': 112, 'end': 120}, {'entity': 'I-MISC', 'score': 0.7762714, 'index': 43, 'word': 'GE', 'start': 147, 'end': 149}, {'entity': 'I-MISC', 'score': 0.47198924, 'index': 49, 'word': 'B', 'start': 157, 'end': 158}, {'entity': 'I-LOC', 'score': 0.99859744, 'index': 65, 'word': 'U', 'start': 247, 'end': 248}, {'entity': 'I-LOC', 'score': 0.97497797, 'index': 67, 'word': 'S', 'start': 249, 'end': 250}, {'entity': 'I-LOC', 'score': 0.3626762, 'index': 68, 'word': '.', 'start': 250, 'end': 251}, {'entity': 'I-MISC', 'score': 0.7872641, 'index': 87, 'word': 'September', 'start': 338, 'end': 347}, {'entity': 'I-MISC', 'score': 0.9733069, 'index': 88, 'word': 'B', 'start': 348, 'end': 349}, {'entity': 'I-MISC', 'score': 0.71884936, 'index': 89, 'word': '##und', 'start': 349, 'end': 352}, {'entity': 'I-ORG', 'score': 0.9993837, 'index': 93, 'word': 'London', 'start': 367, 'end': 373}, {'entity': 'I-ORG', 'score': 0.9993449, 'index': 94, 'word': 'International', 'start': 374, 'end': 387}, {'entity': 'I-ORG', 'score': 0.9992434, 'index': 95, 'word': 'Financial', 'start': 388, 'end': 397}, {'entity': 'I-ORG', 'score': 0.9987828, 'index': 96, 'word': 'Future', 'start': 398, 'end': 404}, {'entity': 'I-ORG', 'score': 0.99930656, 'index': 97, 'word': '##s', 'start': 404, 'end': 405}, {'entity': 'I-ORG', 'score': 0.99919134, 'index': 98, 'word': 'and', 'start': 406, 'end': 409}, {'entity': 'I-ORG', 'score': 0.9993604, 'index': 99, 'word': 'Op', 'start': 410, 'end': 412}, {'entity': 'I-ORG', 'score': 0.9987184, 'index': 100, 'word': '##tions', 'start': 412, 'end': 417}, {'entity': 'I-ORG', 'score': 0.9989837, 'index': 101, 'word': 'Exchange', 'start': 418, 'end': 426}, {'entity': 'I-ORG', 'score': 0.9968359, 'index': 103, 'word': 'L', 'start': 429, 'end': 430}, {'entity': 'I-ORG', 'score': 0.98892236, 'index': 104, 'word': '##IF', 'start': 430, 'end': 432}, {'entity': 'I-ORG', 'score': 0.99668795, 'index': 105, 'word': '##F', 'start': 432, 'end': 433}, {'entity': 'I-ORG', 'score': 0.99060494, 'index': 106, 'word': '##E', 'start': 433, 'end': 434}, {'entity': 'I-MISC', 'score': 0.5782824, 'index': 130, 'word': 'BR', 'start': 511, 'end': 513}, {'entity': 'I-ORG', 'score': 0.79859924, 'index': 135, 'word': 'Gil', 'start': 521, 'end': 524}, {'entity': 'I-ORG', 'score': 0.9967692, 'index': 165, 'word': 'U', 'start': 614, 'end': 615}, {'entity': 'I-ORG', 'score': 0.9983083, 'index': 167, 'word': 'S', 'start': 616, 'end': 617}, {'entity': 'I-ORG', 'score': 0.9931371, 'index': 168, 'word': '.', 'start': 617, 'end': 618}, {'entity': 'I-ORG', 'score': 0.99852175, 'index': 169, 'word': 'T', 'start': 619, 'end': 620}, {'entity': 'I-ORG', 'score': 0.99209726, 'index': 170, 'word': '##rea', 'start': 620, 'end': 623}, {'entity': 'I-ORG', 'score': 0.9743506, 'index': 171, 'word': '##su', 'start': 623, 'end': 625}, {'entity': 'I-ORG', 'score': 0.99732214, 'index': 172, 'word': '##ries', 'start': 625, 'end': 629}, {'entity': 'I-LOC', 'score': 0.9501598, 'index': 179, 'word': 'Chicago', 'start': 656, 'end': 663}, {'entity': 'I-MISC', 'score': 0.36965576, 'index': 180, 'word': 'PM', 'start': 664, 'end': 666}, {'entity': 'I-MISC', 'score': 0.8661564, 'index': 204, 'word': 'PM', 'start': 768, 'end': 770}, {'entity': 'I-ORG', 'score': 0.9904851, 'index': 222, 'word': 'L', 'start': 834, 'end': 835}, {'entity': 'I-ORG', 'score': 0.978778, 'index': 223, 'word': '##IF', 'start': 835, 'end': 837}, {'entity': 'I-ORG', 'score': 0.98528105, 'index': 224, 'word': '##F', 'start': 837, 'end': 838}, {'entity': 'I-ORG', 'score': 0.9756386, 'index': 225, 'word': '##E', 'start': 838, 'end': 839}, {'entity': 'I-ORG', 'score': 0.5035565, 'index': 257, 'word': 'P', 'start': 935, 'end': 936}, {'entity': 'I-ORG', 'score': 0.6271085, 'index': 258, 'word': '##IB', 'start': 936, 'end': 938}, {'entity': 'I-LOC', 'score': 0.93107986, 'index': 271, 'word': 'U', 'start': 1006, 'end': 1007}, {'entity': 'I-LOC', 'score': 0.98679304, 'index': 273, 'word': 'S', 'start': 1008, 'end': 1009}, {'entity': 'I-ORG', 'score': 0.72120893, 'index': 289, 'word': 'MA', 'start': 1065, 'end': 1067}, {'entity': 'I-ORG', 'score': 0.7746738, 'index': 290, 'word': '##TI', 'start': 1067, 'end': 1069}, {'entity': 'I-ORG', 'score': 0.792361, 'index': 291, 'word': '##F', 'start': 1069, 'end': 1070}, {'entity': 'I-LOC', 'score': 0.9964108, 'index': 293, 'word': 'Paris', 'start': 1074, 'end': 1079}, {'entity': 'I-ORG', 'score': 0.99761534, 'index': 334, 'word': 'T', 'start': 1234, 'end': 1235}, {'entity': 'I-ORG', 'score': 0.98584557, 'index': 335, 'word': '##rea', 'start': 1235, 'end': 1238}, {'entity': 'I-ORG', 'score': 0.9497491, 'index': 336, 'word': '##su', 'start': 1238, 'end': 1240}, {'entity': 'I-ORG', 'score': 0.9963104, 'index': 337, 'word': '##ries', 'start': 1240, 'end': 1244}, {'entity': 'I-ORG', 'score': 0.6325848, 'index': 348, 'word': 'BT', 'start': 1281, 'end': 1283}, {'entity': 'I-ORG', 'score': 0.9828378, 'index': 361, 'word': 'L', 'start': 1328, 'end': 1329}, {'entity': 'I-ORG', 'score': 0.9785483, 'index': 362, 'word': '##IF', 'start': 1329, 'end': 1331}, {'entity': 'I-ORG', 'score': 0.97707236, 'index': 363, 'word': '##F', 'start': 1331, 'end': 1332}, {'entity': 'I-ORG', 'score': 0.9550553, 'index': 364, 'word': '##E', 'start': 1332, 'end': 1333}, {'entity': 'I-ORG', 'score': 0.98110574, 'index': 387, 'word': 'UN', 'start': 1409, 'end': 1411}, {'entity': 'I-ORG', 'score': 0.5926291, 'index': 388, 'word': '##IT', 'start': 1411, 'end': 1413}, {'entity': 'I-ORG', 'score': 0.6903519, 'index': 397, 'word': 'U', 'start': 1435, 'end': 1436}, {'entity': 'I-ORG', 'score': 0.9928463, 'index': 401, 'word': 'Treasury', 'start': 1440, 'end': 1448}, {'entity': 'I-LOC', 'score': 0.9444815, 'index': 414, 'word': 'Chicago', 'start': 1527, 'end': 1534}, {'entity': 'I-ORG', 'score': 0.9967332, 'index': 440, 'word': 'Treasury', 'start': 1640, 'end': 1648}, {'entity': 'I-LOC', 'score': 0.9747965, 'index': 445, 'word': 'Chicago', 'start': 1668, 'end': 1675}, {'entity': 'I-ORG', 'score': 0.99522626, 'index': 446, 'word': 'Board', 'start': 1676, 'end': 1681}]
[{'entity': 'I-PER', 'score': 0.9994261, 'index': 3, 'word': 'Bruno', 'start': 7, 'end': 12}, {'entity': 'I-LOC', 'score': 0.9987494, 'index': 16, 'word': 'L', 'start': 46, 'end': 47}, {'entity': 'I-LOC', 'score': 0.9966683, 'index': 17, 'word': '##ON', 'start': 47, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9635288, 'index': 18, 'word': '##D', 'start': 49, 'end': 50}, {'entity': 'I-LOC', 'score': 0.9985487, 'index': 19, 'word': '##ON', 'start': 50, 'end': 52}, {'entity': 'I-PER', 'score': 0.998743, 'index': 33, 'word': 'Frank', 'start': 103, 'end': 108}, {'entity': 'I-PER', 'score': 0.9993364, 'index': 34, 'word': 'Bruno', 'start': 109, 'end': 114}, {'entity': 'I-LOC', 'score': 0.99979514, 'index': 43, 'word': 'Britain', 'start': 153, 'end': 160}, {'entity': 'I-ORG', 'score': 0.99761236, 'index': 46, 'word': 'Sun', 'start': 164, 'end': 167}, {'entity': 'I-PER', 'score': 0.9994413, 'index': 66, 'word': 'Bruno', 'start': 243, 'end': 248}, {'entity': 'I-MISC', 'score': 0.99534935, 'index': 90, 'word': 'B', 'start': 335, 'end': 336}, {'entity': 'I-MISC', 'score': 0.98936486, 'index': 91, 'word': '##rito', 'start': 336, 'end': 340}, {'entity': 'I-MISC', 'score': 0.9830079, 'index': 92, 'word': '##n', 'start': 340, 'end': 341}, {'entity': 'I-ORG', 'score': 0.9781397, 'index': 97, 'word': 'World', 'start': 357, 'end': 362}, {'entity': 'I-ORG', 'score': 0.9876094, 'index': 98, 'word': 'Boxing', 'start': 363, 'end': 369}, {'entity': 'I-ORG', 'score': 0.98618674, 'index': 99, 'word': 'Council', 'start': 370, 'end': 377}, {'entity': 'I-ORG', 'score': 0.9845062, 'index': 101, 'word': 'W', 'start': 380, 'end': 381}, {'entity': 'I-ORG', 'score': 0.9948437, 'index': 102, 'word': '##BC', 'start': 381, 'end': 383}, {'entity': 'I-PER', 'score': 0.9995091, 'index': 106, 'word': 'Mike', 'start': 395, 'end': 399}, {'entity': 'I-PER', 'score': 0.99954504, 'index': 107, 'word': 'Tyson', 'start': 400, 'end': 405}, {'entity': 'I-PER', 'score': 0.9995498, 'index': 169, 'word': 'Bruno', 'start': 606, 'end': 611}, {'entity': 'I-LOC', 'score': 0.999759, 'index': 175, 'word': 'Britain', 'start': 631, 'end': 638}, {'entity': 'I-PER', 'score': 0.9995939, 'index': 218, 'word': 'David', 'start': 835, 'end': 840}, {'entity': 'I-PER', 'score': 0.9997602, 'index': 219, 'word': 'M', 'start': 841, 'end': 842}, {'entity': 'I-PER', 'score': 0.9983386, 'index': 220, 'word': '##c', 'start': 842, 'end': 843}, {'entity': 'I-PER', 'score': 0.99963105, 'index': 221, 'word': '##Leod', 'start': 843, 'end': 847}, {'entity': 'I-PER', 'score': 0.99947757, 'index': 225, 'word': 'Bruno', 'start': 863, 'end': 868}, {'entity': 'I-ORG', 'score': 0.99445665, 'index': 229, 'word': 'Sun', 'start': 880, 'end': 883}, {'entity': 'I-PER', 'score': 0.999476, 'index': 282, 'word': 'Bruno', 'start': 1081, 'end': 1086}, {'entity': 'I-MISC', 'score': 0.9989794, 'index': 295, 'word': 'American', 'start': 1161, 'end': 1169}, {'entity': 'I-PER', 'score': 0.9996643, 'index': 296, 'word': 'Oliver', 'start': 1170, 'end': 1176}, {'entity': 'I-PER', 'score': 0.99981815, 'index': 297, 'word': 'M', 'start': 1177, 'end': 1178}, {'entity': 'I-PER', 'score': 0.9977957, 'index': 298, 'word': '##c', 'start': 1178, 'end': 1179}, {'entity': 'I-PER', 'score': 0.9990559, 'index': 299, 'word': '##C', 'start': 1179, 'end': 1180}, {'entity': 'I-PER', 'score': 0.9986388, 'index': 300, 'word': '##all', 'start': 1180, 'end': 1183}, {'entity': 'I-LOC', 'score': 0.9953165, 'index': 307, 'word': 'Wembley', 'start': 1218, 'end': 1225}, {'entity': 'I-MISC', 'score': 0.99547887, 'index': 321, 'word': 'B', 'start': 1273, 'end': 1274}, {'entity': 'I-MISC', 'score': 0.99184096, 'index': 322, 'word': '##rito', 'start': 1274, 'end': 1278}, {'entity': 'I-MISC', 'score': 0.97648096, 'index': 323, 'word': '##n', 'start': 1278, 'end': 1279}, {'entity': 'I-PER', 'score': 0.99935716, 'index': 337, 'word': 'Bruno', 'start': 1330, 'end': 1335}, {'entity': 'I-MISC', 'score': 0.978937, 'index': 348, 'word': 'American', 'start': 1387, 'end': 1395}, {'entity': 'I-PER', 'score': 0.99933773, 'index': 349, 'word': 'Tyson', 'start': 1396, 'end': 1401}, {'entity': 'I-LOC', 'score': 0.9996209, 'index': 351, 'word': 'Las', 'start': 1405, 'end': 1408}, {'entity': 'I-LOC', 'score': 0.9994803, 'index': 352, 'word': 'Vegas', 'start': 1409, 'end': 1414}, {'entity': 'I-PER', 'score': 0.99947923, 'index': 358, 'word': 'Bruno', 'start': 1422, 'end': 1427}, {'entity': 'I-MISC', 'score': 0.9969699, 'index': 378, 'word': 'B', 'start': 1522, 'end': 1523}, {'entity': 'I-MISC', 'score': 0.9900034, 'index': 379, 'word': '##rito', 'start': 1523, 'end': 1527}, {'entity': 'I-MISC', 'score': 0.953936, 'index': 380, 'word': '##n', 'start': 1527, 'end': 1528}]
[{'entity': 'I-PER', 'score': 0.999579, 'index': 3, 'word': 'McCarthy', 'start': 9, 'end': 17}, {'entity': 'I-LOC', 'score': 0.9997565, 'index': 8, 'word': 'Lie', 'start': 37, 'end': 40}, {'entity': 'I-LOC', 'score': 0.9997967, 'index': 9, 'word': '##chtenstein', 'start': 40, 'end': 50}, {'entity': 'I-LOC', 'score': 0.99802125, 'index': 15, 'word': 'D', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9959776, 'index': 16, 'word': '##U', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9872542, 'index': 17, 'word': '##BL', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.998071, 'index': 18, 'word': '##IN', 'start': 62, 'end': 64}, {'entity': 'I-MISC', 'score': 0.9984542, 'index': 28, 'word': 'Irish', 'start': 81, 'end': 86}, {'entity': 'I-PER', 'score': 0.9993642, 'index': 31, 'word': 'Mick', 'start': 102, 'end': 106}, {'entity': 'I-PER', 'score': 0.9996604, 'index': 32, 'word': 'McCarthy', 'start': 107, 'end': 115}, {'entity': 'I-LOC', 'score': 0.99977344, 'index': 40, 'word': 'Lie', 'start': 153, 'end': 156}, {'entity': 'I-LOC', 'score': 0.9998381, 'index': 41, 'word': '##chtenstein', 'start': 156, 'end': 166}, {'entity': 'I-MISC', 'score': 0.99256986, 'index': 46, 'word': 'World', 'start': 182, 'end': 187}, {'entity': 'I-MISC', 'score': 0.99875987, 'index': 47, 'word': 'Cup', 'start': 188, 'end': 191}, {'entity': 'I-ORG', 'score': 0.99838734, 'index': 55, 'word': 'Birmingham', 'start': 216, 'end': 226}, {'entity': 'I-PER', 'score': 0.9997162, 'index': 58, 'word': 'Gary', 'start': 230, 'end': 234}, {'entity': 'I-PER', 'score': 0.99969447, 'index': 59, 'word': 'Bree', 'start': 235, 'end': 239}, {'entity': 'I-PER', 'score': 0.9986307, 'index': 60, 'word': '##n', 'start': 239, 'end': 240}, {'entity': 'I-PER', 'score': 0.9995777, 'index': 65, 'word': 'Phil', 'start': 263, 'end': 267}, {'entity': 'I-PER', 'score': 0.9995384, 'index': 66, 'word': 'Ba', 'start': 268, 'end': 270}, {'entity': 'I-PER', 'score': 0.9974667, 'index': 67, 'word': '##bb', 'start': 270, 'end': 272}, {'entity': 'I-PER', 'score': 0.99969864, 'index': 77, 'word': 'Ian', 'start': 304, 'end': 307}, {'entity': 'I-PER', 'score': 0.99978167, 'index': 78, 'word': 'Hart', 'start': 308, 'end': 312}, {'entity': 'I-PER', 'score': 0.9964573, 'index': 79, 'word': '##e', 'start': 312, 'end': 313}, {'entity': 'I-PER', 'score': 0.9997265, 'index': 90, 'word': 'Keith', 'start': 363, 'end': 368}, {'entity': 'I-PER', 'score': 0.9997719, 'index': 91, 'word': 'O', 'start': 369, 'end': 370}, {'entity': 'I-PER', 'score': 0.99785835, 'index': 92, 'word': "'", 'start': 370, 'end': 371}, {'entity': 'I-PER', 'score': 0.99963856, 'index': 93, 'word': 'Neill', 'start': 371, 'end': 376}, {'entity': 'I-ORG', 'score': 0.9981536, 'index': 95, 'word': 'Norwich', 'start': 380, 'end': 387}, {'entity': 'I-ORG', 'score': 0.9992078, 'index': 96, 'word': 'City', 'start': 388, 'end': 392}, {'entity': 'I-PER', 'score': 0.99969983, 'index': 98, 'word': 'Niall', 'start': 399, 'end': 404}, {'entity': 'I-PER', 'score': 0.99982053, 'index': 99, 'word': 'Quinn', 'start': 405, 'end': 410}, {'entity': 'I-PER', 'score': 0.9855773, 'index': 117, 'word': 'Given', 'start': 457, 'end': 462}, {'entity': 'I-PER', 'score': 0.9994199, 'index': 119, 'word': 'Bree', 'start': 465, 'end': 469}, {'entity': 'I-PER', 'score': 0.91435796, 'index': 120, 'word': '##n', 'start': 469, 'end': 470}, {'entity': 'I-PER', 'score': 0.99893993, 'index': 122, 'word': 'St', 'start': 473, 'end': 475}, {'entity': 'I-PER', 'score': 0.9578654, 'index': 123, 'word': '##aunt', 'start': 475, 'end': 479}, {'entity': 'I-PER', 'score': 0.9891054, 'index': 124, 'word': '##on', 'start': 479, 'end': 481}, {'entity': 'I-PER', 'score': 0.99975985, 'index': 126, 'word': 'Irwin', 'start': 484, 'end': 489}, {'entity': 'I-PER', 'score': 0.9995548, 'index': 128, 'word': 'M', 'start': 492, 'end': 493}, {'entity': 'I-PER', 'score': 0.98585576, 'index': 129, 'word': '##c', 'start': 493, 'end': 494}, {'entity': 'I-PER', 'score': 0.97276366, 'index': 130, 'word': '##A', 'start': 494, 'end': 495}, {'entity': 'I-PER', 'score': 0.91357446, 'index': 131, 'word': '##tee', 'start': 495, 'end': 498}, {'entity': 'I-PER', 'score': 0.87948245, 'index': 132, 'word': '##r', 'start': 498, 'end': 499}, {'entity': 'I-PER', 'score': 0.99951446, 'index': 134, 'word': 'Hart', 'start': 502, 'end': 506}, {'entity': 'I-PER', 'score': 0.9442666, 'index': 135, 'word': '##e', 'start': 506, 'end': 507}, {'entity': 'I-PER', 'score': 0.99939954, 'index': 137, 'word': 'M', 'start': 510, 'end': 511}, {'entity': 'I-PER', 'score': 0.98257035, 'index': 138, 'word': '##c', 'start': 511, 'end': 512}, {'entity': 'I-PER', 'score': 0.9063513, 'index': 139, 'word': '##L', 'start': 512, 'end': 513}, {'entity': 'I-PER', 'score': 0.9395784, 'index': 140, 'word': '##ough', 'start': 513, 'end': 517}, {'entity': 'I-PER', 'score': 0.9458912, 'index': 141, 'word': '##lin', 'start': 517, 'end': 520}, {'entity': 'I-PER', 'score': 0.999688, 'index': 143, 'word': 'Houghton', 'start': 523, 'end': 531}, {'entity': 'I-PER', 'score': 0.999731, 'index': 145, 'word': 'Townsend', 'start': 534, 'end': 542}, {'entity': 'I-PER', 'score': 0.9996043, 'index': 147, 'word': 'Quinn', 'start': 545, 'end': 550}, {'entity': 'I-PER', 'score': 0.9993305, 'index': 149, 'word': 'O', 'start': 553, 'end': 554}, {'entity': 'I-PER', 'score': 0.95969963, 'index': 150, 'word': "'", 'start': 554, 'end': 555}, {'entity': 'I-PER', 'score': 0.9838553, 'index': 151, 'word': 'Neill', 'start': 555, 'end': 560}, {'entity': 'I-ORG', 'score': 0.9996805, 'index': 159, 'word': 'Dublin', 'start': 571, 'end': 577}, {'entity': 'I-ORG', 'score': 0.9995827, 'index': 160, 'word': 'News', 'start': 578, 'end': 582}, {'entity': 'I-ORG', 'score': 0.9990565, 'index': 161, 'word': '##room', 'start': 582, 'end': 586}]
[{'entity': 'I-MISC', 'score': 0.99898964, 'index': 1, 'word': 'Nigerian', 'start': 0, 'end': 8}, {'entity': 'I-LOC', 'score': 0.9989334, 'index': 15, 'word': 'LA', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9914726, 'index': 16, 'word': '##G', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.998613, 'index': 17, 'word': '##OS', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.99981755, 'index': 33, 'word': 'Nigeria', 'start': 107, 'end': 114}, {'entity': 'I-ORG', 'score': 0.99944955, 'index': 79, 'word': 'News', 'start': 303, 'end': 307}, {'entity': 'I-ORG', 'score': 0.99933124, 'index': 80, 'word': 'Agency', 'start': 308, 'end': 314}, {'entity': 'I-ORG', 'score': 0.9974607, 'index': 81, 'word': 'of', 'start': 315, 'end': 317}, {'entity': 'I-ORG', 'score': 0.99511504, 'index': 82, 'word': 'Nigeria', 'start': 318, 'end': 325}, {'entity': 'I-LOC', 'score': 0.99558675, 'index': 144, 'word': 'U', 'start': 534, 'end': 535}, {'entity': 'I-LOC', 'score': 0.9871285, 'index': 145, 'word': '##yo', 'start': 535, 'end': 537}]
[{'entity': 'I-LOC', 'score': 0.8757123, 'index': 1, 'word': 'East', 'start': 0, 'end': 4}, {'entity': 'I-LOC', 'score': 0.65678316, 'index': 2, 'word': 'Dr', 'start': 5, 'end': 7}, {'entity': 'I-LOC', 'score': 0.66071624, 'index': 3, 'word': '##ies', 'start': 7, 'end': 10}, {'entity': 'I-LOC', 'score': 0.9958548, 'index': 15, 'word': 'J', 'start': 49, 'end': 50}, {'entity': 'I-LOC', 'score': 0.9825717, 'index': 16, 'word': '##OH', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.971722, 'index': 17, 'word': '##AN', 'start': 52, 'end': 54}, {'entity': 'I-LOC', 'score': 0.9981615, 'index': 18, 'word': '##NE', 'start': 54, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9964194, 'index': 19, 'word': '##SB', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9707911, 'index': 20, 'word': '##UR', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9983531, 'index': 21, 'word': '##G', 'start': 60, 'end': 61}, {'entity': 'I-ORG', 'score': 0.99619544, 'index': 33, 'word': 'Dr', 'start': 89, 'end': 91}, {'entity': 'I-ORG', 'score': 0.99618715, 'index': 34, 'word': '##ief', 'start': 91, 'end': 94}, {'entity': 'I-ORG', 'score': 0.9942638, 'index': 35, 'word': '##onte', 'start': 94, 'end': 98}, {'entity': 'I-ORG', 'score': 0.9995827, 'index': 36, 'word': '##in', 'start': 98, 'end': 100}, {'entity': 'I-ORG', 'score': 0.9995382, 'index': 37, 'word': 'Consolidated', 'start': 101, 'end': 113}, {'entity': 'I-ORG', 'score': 0.9994331, 'index': 38, 'word': 'Ltd', 'start': 114, 'end': 117}, {'entity': 'I-ORG', 'score': 0.99958163, 'index': 56, 'word': 'Gold', 'start': 205, 'end': 209}, {'entity': 'I-ORG', 'score': 0.99965286, 'index': 57, 'word': 'Fields', 'start': 210, 'end': 216}, {'entity': 'I-ORG', 'score': 0.99881077, 'index': 58, 'word': 'of', 'start': 217, 'end': 219}, {'entity': 'I-ORG', 'score': 0.9992442, 'index': 59, 'word': 'South', 'start': 220, 'end': 225}, {'entity': 'I-ORG', 'score': 0.9992118, 'index': 60, 'word': 'Africa', 'start': 226, 'end': 232}, {'entity': 'I-ORG', 'score': 0.999582, 'index': 61, 'word': 'Ltd', 'start': 233, 'end': 236}, {'entity': 'I-ORG', 'score': 0.9951383, 'index': 123, 'word': 'Dr', 'start': 497, 'end': 499}, {'entity': 'I-ORG', 'score': 0.9969657, 'index': 124, 'word': '##ief', 'start': 499, 'end': 502}, {'entity': 'I-ORG', 'score': 0.9939585, 'index': 125, 'word': '##onte', 'start': 502, 'end': 506}, {'entity': 'I-ORG', 'score': 0.99935704, 'index': 126, 'word': '##in', 'start': 506, 'end': 508}, {'entity': 'I-ORG', 'score': 0.99942964, 'index': 127, 'word': 'Consolidated', 'start': 509, 'end': 521}, {'entity': 'I-ORG', 'score': 0.5253499, 'index': 128, 'word': 'and', 'start': 522, 'end': 525}, {'entity': 'I-ORG', 'score': 0.999178, 'index': 129, 'word': 'Gold', 'start': 526, 'end': 530}, {'entity': 'I-ORG', 'score': 0.9991937, 'index': 130, 'word': 'Fields', 'start': 531, 'end': 537}, {'entity': 'I-ORG', 'score': 0.975989, 'index': 132, 'word': 'K', 'start': 540, 'end': 541}, {'entity': 'I-ORG', 'score': 0.7683771, 'index': 133, 'word': '##lo', 'start': 541, 'end': 543}, {'entity': 'I-ORG', 'score': 0.9691251, 'index': 134, 'word': '##of', 'start': 543, 'end': 545}, {'entity': 'I-ORG', 'score': 0.99653494, 'index': 135, 'word': 'Gold', 'start': 546, 'end': 550}, {'entity': 'I-ORG', 'score': 0.99486464, 'index': 136, 'word': 'Mining', 'start': 551, 'end': 557}, {'entity': 'I-ORG', 'score': 0.99341923, 'index': 137, 'word': 'Co', 'start': 558, 'end': 560}, {'entity': 'I-LOC', 'score': 0.9993799, 'index': 147, 'word': 'Johannesburg', 'start': 582, 'end': 594}]
[{'entity': 'I-LOC', 'score': 0.9997856, 'index': 1, 'word': 'Chad', 'start': 0, 'end': 4}, {'entity': 'I-LOC', 'score': 0.9975908, 'index': 12, 'word': 'N', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9643842, 'index': 13, 'word': "'", 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9877443, 'index': 14, 'word': 'DJ', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.99152595, 'index': 15, 'word': '##AM', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.98134685, 'index': 16, 'word': '##EN', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.99672097, 'index': 17, 'word': '##A', 'start': 64, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9996942, 'index': 30, 'word': 'Chad', 'start': 100, 'end': 104}, {'entity': 'I-ORG', 'score': 0.9986671, 'index': 33, 'word': 'N', 'start': 116, 'end': 117}, {'entity': 'I-ORG', 'score': 0.45553502, 'index': 34, 'word': "'", 'start': 117, 'end': 118}, {'entity': 'I-ORG', 'score': 0.5828102, 'index': 35, 'word': 'D', 'start': 118, 'end': 119}, {'entity': 'I-ORG', 'score': 0.9209371, 'index': 36, 'word': '##ja', 'start': 119, 'end': 121}, {'entity': 'I-ORG', 'score': 0.7305909, 'index': 37, 'word': '##men', 'start': 121, 'end': 124}, {'entity': 'I-ORG', 'score': 0.9974208, 'index': 38, 'word': '##a', 'start': 124, 'end': 125}, {'entity': 'I-ORG', 'score': 0.99087965, 'index': 39, 'word': 'University', 'start': 126, 'end': 136}, {'entity': 'I-PER', 'score': 0.99958426, 'index': 54, 'word': 'Na', 'start': 211, 'end': 213}, {'entity': 'I-PER', 'score': 0.995404, 'index': 55, 'word': '##go', 'start': 213, 'end': 215}, {'entity': 'I-PER', 'score': 0.9992417, 'index': 56, 'word': '##um', 'start': 215, 'end': 217}, {'entity': 'I-PER', 'score': 0.9995679, 'index': 57, 'word': 'Ya', 'start': 218, 'end': 220}, {'entity': 'I-PER', 'score': 0.9944465, 'index': 58, 'word': '##mass', 'start': 220, 'end': 224}, {'entity': 'I-PER', 'score': 0.88738775, 'index': 59, 'word': '##ou', 'start': 224, 'end': 226}, {'entity': 'I-PER', 'score': 0.9929114, 'index': 60, 'word': '##m', 'start': 226, 'end': 227}]
[{'entity': 'I-PER', 'score': 0.99940133, 'index': 1, 'word': 'Ye', 'start': 0, 'end': 2}, {'entity': 'I-PER', 'score': 0.9897976, 'index': 2, 'word': '##lts', 'start': 2, 'end': 5}, {'entity': 'I-PER', 'score': 0.96825904, 'index': 3, 'word': '##in', 'start': 5, 'end': 7}, {'entity': 'I-PER', 'score': 0.9990414, 'index': 7, 'word': 'Le', 'start': 17, 'end': 19}, {'entity': 'I-PER', 'score': 0.9323207, 'index': 8, 'word': '##bed', 'start': 19, 'end': 22}, {'entity': 'I-LOC', 'score': 0.98415035, 'index': 9, 'word': 'Ch', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.9987219, 'index': 10, 'word': '##ech', 'start': 25, 'end': 28}, {'entity': 'I-LOC', 'score': 0.9994199, 'index': 11, 'word': '##nya', 'start': 28, 'end': 31}, {'entity': 'I-LOC', 'score': 0.9974698, 'index': 21, 'word': 'M', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.95437425, 'index': 22, 'word': '##OS', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.79091746, 'index': 23, 'word': '##CO', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9883974, 'index': 24, 'word': '##W', 'start': 64, 'end': 65}, {'entity': 'I-MISC', 'score': 0.99894005, 'index': 34, 'word': 'Russian', 'start': 82, 'end': 89}, {'entity': 'I-PER', 'score': 0.99941146, 'index': 37, 'word': 'Viktor', 'start': 105, 'end': 111}, {'entity': 'I-PER', 'score': 0.9997389, 'index': 38, 'word': 'Ch', 'start': 112, 'end': 114}, {'entity': 'I-PER', 'score': 0.98872757, 'index': 39, 'word': '##ern', 'start': 114, 'end': 117}, {'entity': 'I-PER', 'score': 0.99327636, 'index': 40, 'word': '##omy', 'start': 117, 'end': 120}, {'entity': 'I-PER', 'score': 0.89117026, 'index': 41, 'word': '##rdi', 'start': 120, 'end': 123}, {'entity': 'I-PER', 'score': 0.97908247, 'index': 42, 'word': '##n', 'start': 123, 'end': 124}, {'entity': 'I-PER', 'score': 0.999483, 'index': 48, 'word': 'Boris', 'start': 155, 'end': 160}, {'entity': 'I-PER', 'score': 0.9996076, 'index': 49, 'word': 'Ye', 'start': 161, 'end': 163}, {'entity': 'I-PER', 'score': 0.9971271, 'index': 50, 'word': '##lts', 'start': 163, 'end': 166}, {'entity': 'I-PER', 'score': 0.99533904, 'index': 51, 'word': '##in', 'start': 166, 'end': 168}, {'entity': 'I-LOC', 'score': 0.9997787, 'index': 58, 'word': 'Moscow', 'start': 198, 'end': 204}, {'entity': 'I-PER', 'score': 0.9993149, 'index': 64, 'word': 'Alexander', 'start': 233, 'end': 242}, {'entity': 'I-PER', 'score': 0.99969685, 'index': 65, 'word': 'Le', 'start': 243, 'end': 245}, {'entity': 'I-PER', 'score': 0.9954983, 'index': 66, 'word': '##bed', 'start': 245, 'end': 248}, {'entity': 'I-LOC', 'score': 0.99928856, 'index': 72, 'word': 'Ch', 'start': 267, 'end': 269}, {'entity': 'I-LOC', 'score': 0.9994672, 'index': 73, 'word': '##ech', 'start': 269, 'end': 272}, {'entity': 'I-LOC', 'score': 0.9997112, 'index': 74, 'word': '##nya', 'start': 272, 'end': 275}, {'entity': 'I-ORG', 'score': 0.9990369, 'index': 76, 'word': 'Inter', 'start': 278, 'end': 283}, {'entity': 'I-ORG', 'score': 0.9893058, 'index': 77, 'word': '##fa', 'start': 283, 'end': 285}, {'entity': 'I-ORG', 'score': 0.9966923, 'index': 78, 'word': '##x', 'start': 285, 'end': 286}, {'entity': 'I-PER', 'score': 0.99955183, 'index': 88, 'word': 'Le', 'start': 313, 'end': 315}, {'entity': 'I-PER', 'score': 0.98410046, 'index': 89, 'word': '##bed', 'start': 315, 'end': 318}, {'entity': 'I-LOC', 'score': 0.9994438, 'index': 93, 'word': 'Ch', 'start': 329, 'end': 331}, {'entity': 'I-LOC', 'score': 0.99958223, 'index': 94, 'word': '##ech', 'start': 331, 'end': 334}, {'entity': 'I-LOC', 'score': 0.9998122, 'index': 95, 'word': '##nya', 'start': 334, 'end': 337}, {'entity': 'I-ORG', 'score': 0.9980387, 'index': 101, 'word': 'Inter', 'start': 364, 'end': 369}, {'entity': 'I-ORG', 'score': 0.9851408, 'index': 102, 'word': '##fa', 'start': 369, 'end': 371}, {'entity': 'I-ORG', 'score': 0.9893895, 'index': 103, 'word': '##x', 'start': 371, 'end': 372}, {'entity': 'I-PER', 'score': 0.9995763, 'index': 105, 'word': 'Ch', 'start': 380, 'end': 382}, {'entity': 'I-PER', 'score': 0.9829475, 'index': 106, 'word': '##ern', 'start': 382, 'end': 385}, {'entity': 'I-PER', 'score': 0.98638785, 'index': 107, 'word': '##omy', 'start': 385, 'end': 388}, {'entity': 'I-PER', 'score': 0.94538283, 'index': 108, 'word': '##rdi', 'start': 388, 'end': 391}, {'entity': 'I-PER', 'score': 0.73801905, 'index': 109, 'word': '##n', 'start': 391, 'end': 392}, {'entity': 'I-PER', 'score': 0.9995054, 'index': 133, 'word': 'Boris', 'start': 470, 'end': 475}, {'entity': 'I-PER', 'score': 0.99926525, 'index': 134, 'word': 'Nikola', 'start': 476, 'end': 482}, {'entity': 'I-PER', 'score': 0.9027324, 'index': 135, 'word': '##yev', 'start': 482, 'end': 485}, {'entity': 'I-PER', 'score': 0.99954754, 'index': 138, 'word': 'Ye', 'start': 491, 'end': 493}, {'entity': 'I-PER', 'score': 0.9903019, 'index': 139, 'word': '##lts', 'start': 493, 'end': 496}, {'entity': 'I-PER', 'score': 0.97861254, 'index': 140, 'word': '##in', 'start': 496, 'end': 498}, {'entity': 'I-PER', 'score': 0.9996691, 'index': 149, 'word': 'Le', 'start': 520, 'end': 522}, {'entity': 'I-PER', 'score': 0.9954508, 'index': 150, 'word': '##bed', 'start': 522, 'end': 525}, {'entity': 'I-PER', 'score': 0.9989826, 'index': 153, 'word': 'Ye', 'start': 533, 'end': 535}, {'entity': 'I-PER', 'score': 0.98584425, 'index': 154, 'word': '##lts', 'start': 535, 'end': 538}, {'entity': 'I-PER', 'score': 0.8603619, 'index': 155, 'word': '##in', 'start': 538, 'end': 540}, {'entity': 'I-LOC', 'score': 0.9996604, 'index': 161, 'word': 'Ch', 'start': 569, 'end': 571}, {'entity': 'I-LOC', 'score': 0.9994785, 'index': 162, 'word': '##ech', 'start': 571, 'end': 574}, {'entity': 'I-LOC', 'score': 0.9997408, 'index': 163, 'word': '##nya', 'start': 574, 'end': 577}, {'entity': 'I-PER', 'score': 0.99970144, 'index': 204, 'word': 'As', 'start': 748, 'end': 750}, {'entity': 'I-PER', 'score': 0.99924064, 'index': 205, 'word': '##lan', 'start': 750, 'end': 753}, {'entity': 'I-PER', 'score': 0.9996784, 'index': 206, 'word': 'Mask', 'start': 754, 'end': 758}, {'entity': 'I-PER', 'score': 0.9783877, 'index': 207, 'word': '##had', 'start': 758, 'end': 761}, {'entity': 'I-PER', 'score': 0.98843, 'index': 208, 'word': '##ov', 'start': 761, 'end': 763}, {'entity': 'I-LOC', 'score': 0.9990602, 'index': 232, 'word': 'Ch', 'start': 883, 'end': 885}, {'entity': 'I-LOC', 'score': 0.9989962, 'index': 233, 'word': '##ech', 'start': 885, 'end': 888}, {'entity': 'I-LOC', 'score': 0.9995327, 'index': 234, 'word': '##nya', 'start': 888, 'end': 891}, {'entity': 'I-PER', 'score': 0.99947816, 'index': 240, 'word': 'Le', 'start': 899, 'end': 901}, {'entity': 'I-PER', 'score': 0.9433529, 'index': 241, 'word': '##bed', 'start': 901, 'end': 904}, {'entity': 'I-LOC', 'score': 0.99959046, 'index': 273, 'word': 'Moscow', 'start': 1051, 'end': 1057}, {'entity': 'I-LOC', 'score': 0.999495, 'index': 279, 'word': 'Ch', 'start': 1080, 'end': 1082}, {'entity': 'I-LOC', 'score': 0.99956805, 'index': 280, 'word': '##ech', 'start': 1082, 'end': 1085}, {'entity': 'I-LOC', 'score': 0.99973387, 'index': 281, 'word': '##nya', 'start': 1085, 'end': 1088}, {'entity': 'I-LOC', 'score': 0.99771, 'index': 287, 'word': 'Russian', 'start': 1106, 'end': 1113}, {'entity': 'I-LOC', 'score': 0.99977547, 'index': 288, 'word': 'Federation', 'start': 1114, 'end': 1124}, {'entity': 'I-PER', 'score': 0.999481, 'index': 309, 'word': 'Ye', 'start': 1207, 'end': 1209}, {'entity': 'I-PER', 'score': 0.9854859, 'index': 310, 'word': '##lts', 'start': 1209, 'end': 1212}, {'entity': 'I-PER', 'score': 0.8474349, 'index': 311, 'word': '##in', 'start': 1212, 'end': 1214}, {'entity': 'I-LOC', 'score': 0.99976116, 'index': 318, 'word': 'Russia', 'start': 1249, 'end': 1255}, {'entity': 'I-ORG', 'score': 0.997106, 'index': 328, 'word': 'It', 'start': 1288, 'end': 1290}, {'entity': 'I-ORG', 'score': 0.9852422, 'index': 329, 'word': '##ar', 'start': 1290, 'end': 1292}, {'entity': 'I-ORG', 'score': 0.9706581, 'index': 330, 'word': '-', 'start': 1292, 'end': 1293}, {'entity': 'I-ORG', 'score': 0.9987412, 'index': 331, 'word': 'Ta', 'start': 1293, 'end': 1295}, {'entity': 'I-ORG', 'score': 0.9899783, 'index': 332, 'word': '##ss', 'start': 1295, 'end': 1297}, {'entity': 'I-PER', 'score': 0.99958915, 'index': 336, 'word': 'Le', 'start': 1317, 'end': 1319}, {'entity': 'I-PER', 'score': 0.9679213, 'index': 337, 'word': '##bed', 'start': 1319, 'end': 1322}, {'entity': 'I-LOC', 'score': 0.9995092, 'index': 351, 'word': 'Ch', 'start': 1390, 'end': 1392}, {'entity': 'I-LOC', 'score': 0.9990761, 'index': 352, 'word': '##ech', 'start': 1392, 'end': 1395}, {'entity': 'I-LOC', 'score': 0.99955136, 'index': 353, 'word': '##nya', 'start': 1395, 'end': 1398}, {'entity': 'I-PER', 'score': 0.9994037, 'index': 373, 'word': 'Le', 'start': 1463, 'end': 1465}, {'entity': 'I-PER', 'score': 0.9483857, 'index': 374, 'word': '##bed', 'start': 1465, 'end': 1468}, {'entity': 'I-PER', 'score': 0.9995695, 'index': 382, 'word': 'Ye', 'start': 1511, 'end': 1513}, {'entity': 'I-PER', 'score': 0.96420425, 'index': 383, 'word': '##lts', 'start': 1513, 'end': 1516}, {'entity': 'I-PER', 'score': 0.72381175, 'index': 395, 'word': 'S', 'start': 1560, 'end': 1561}, {'entity': 'I-PER', 'score': 0.99957544, 'index': 397, 'word': 'Ye', 'start': 1563, 'end': 1565}, {'entity': 'I-PER', 'score': 0.9317225, 'index': 398, 'word': '##lts', 'start': 1565, 'end': 1568}, {'entity': 'I-PER', 'score': 0.753885, 'index': 412, 'word': 'S', 'start': 1618, 'end': 1619}, {'entity': 'I-PER', 'score': 0.97853756, 'index': 414, 'word': 'Ch', 'start': 1621, 'end': 1623}, {'entity': 'I-PER', 'score': 0.9088986, 'index': 415, 'word': '##ern', 'start': 1623, 'end': 1626}, {'entity': 'I-PER', 'score': 0.92773515, 'index': 416, 'word': '##omy', 'start': 1626, 'end': 1629}, {'entity': 'I-PER', 'score': 0.9984249, 'index': 426, 'word': 'Le', 'start': 1672, 'end': 1674}, {'entity': 'I-PER', 'score': 0.50648415, 'index': 427, 'word': '##bed', 'start': 1674, 'end': 1677}, {'entity': 'I-PER', 'score': 0.9985109, 'index': 434, 'word': 'Le', 'start': 1712, 'end': 1714}, {'entity': 'I-PER', 'score': 0.97368604, 'index': 443, 'word': 'Ch', 'start': 1747, 'end': 1749}, {'entity': 'I-LOC', 'score': 0.839872, 'index': 444, 'word': '##ech', 'start': 1749, 'end': 1752}, {'entity': 'I-LOC', 'score': 0.9992467, 'index': 445, 'word': '##nya', 'start': 1752, 'end': 1755}, {'entity': 'I-PER', 'score': 0.9775004, 'index': 455, 'word': 'S', 'start': 1787, 'end': 1788}]
[{'entity': 'I-PER', 'score': 0.9987109, 'index': 1, 'word': 'Le', 'start': 0, 'end': 2}, {'entity': 'I-PER', 'score': 0.9592745, 'index': 2, 'word': '##bed', 'start': 2, 'end': 5}, {'entity': 'I-MISC', 'score': 0.9967338, 'index': 4, 'word': 'Ch', 'start': 8, 'end': 10}, {'entity': 'I-MISC', 'score': 0.99365944, 'index': 5, 'word': '##ech', 'start': 10, 'end': 13}, {'entity': 'I-MISC', 'score': 0.91154176, 'index': 6, 'word': '##ens', 'start': 13, 'end': 16}, {'entity': 'I-LOC', 'score': 0.99902236, 'index': 16, 'word': 'K', 'start': 54, 'end': 55}, {'entity': 'I-LOC', 'score': 0.99648666, 'index': 17, 'word': '##HA', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9959901, 'index': 18, 'word': '##SA', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9943901, 'index': 19, 'word': '##V', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.97838, 'index': 20, 'word': '##Y', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9888032, 'index': 21, 'word': '##UR', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.99659985, 'index': 22, 'word': '##T', 'start': 63, 'end': 64}, {'entity': 'I-LOC', 'score': 0.99980634, 'index': 24, 'word': 'Russia', 'start': 67, 'end': 73}, {'entity': 'I-MISC', 'score': 0.9991767, 'index': 34, 'word': 'Russian', 'start': 90, 'end': 97}, {'entity': 'I-PER', 'score': 0.999532, 'index': 37, 'word': 'Alexander', 'start': 109, 'end': 118}, {'entity': 'I-PER', 'score': 0.99970716, 'index': 38, 'word': 'Le', 'start': 119, 'end': 121}, {'entity': 'I-PER', 'score': 0.9964805, 'index': 39, 'word': '##bed', 'start': 121, 'end': 124}, {'entity': 'I-PER', 'score': 0.999701, 'index': 46, 'word': 'As', 'start': 159, 'end': 161}, {'entity': 'I-PER', 'score': 0.99940145, 'index': 47, 'word': '##lan', 'start': 161, 'end': 164}, {'entity': 'I-PER', 'score': 0.9998067, 'index': 48, 'word': 'Mask', 'start': 165, 'end': 169}, {'entity': 'I-PER', 'score': 0.98757917, 'index': 49, 'word': '##had', 'start': 169, 'end': 172}, {'entity': 'I-PER', 'score': 0.9958235, 'index': 50, 'word': '##ov', 'start': 172, 'end': 174}, {'entity': 'I-LOC', 'score': 0.99972457, 'index': 62, 'word': 'Ch', 'start': 237, 'end': 239}, {'entity': 'I-LOC', 'score': 0.99951947, 'index': 63, 'word': '##ech', 'start': 239, 'end': 242}, {'entity': 'I-LOC', 'score': 0.9996117, 'index': 64, 'word': '##nya', 'start': 242, 'end': 245}, {'entity': 'I-LOC', 'score': 0.99908483, 'index': 94, 'word': 'Russian', 'start': 392, 'end': 399}, {'entity': 'I-LOC', 'score': 0.9997503, 'index': 95, 'word': 'Federation', 'start': 400, 'end': 410}, {'entity': 'I-LOC', 'score': 0.9978865, 'index': 98, 'word': 'Ch', 'start': 419, 'end': 421}, {'entity': 'I-LOC', 'score': 0.8130967, 'index': 99, 'word': '##ech', 'start': 421, 'end': 424}, {'entity': 'I-LOC', 'score': 0.98443514, 'index': 100, 'word': '##en', 'start': 424, 'end': 426}, {'entity': 'I-LOC', 'score': 0.9983796, 'index': 101, 'word': 'Republic', 'start': 427, 'end': 435}, {'entity': 'I-PER', 'score': 0.9996965, 'index': 104, 'word': 'Le', 'start': 440, 'end': 442}, {'entity': 'I-PER', 'score': 0.97454846, 'index': 105, 'word': '##bed', 'start': 442, 'end': 445}, {'entity': 'I-PER', 'score': 0.9997278, 'index': 111, 'word': 'Mask', 'start': 474, 'end': 478}, {'entity': 'I-PER', 'score': 0.9657958, 'index': 112, 'word': '##had', 'start': 478, 'end': 481}, {'entity': 'I-PER', 'score': 0.96187156, 'index': 113, 'word': '##ov', 'start': 481, 'end': 483}, {'entity': 'I-PER', 'score': 0.9996511, 'index': 146, 'word': 'Le', 'start': 590, 'end': 592}, {'entity': 'I-PER', 'score': 0.9785122, 'index': 147, 'word': '##bed', 'start': 592, 'end': 595}, {'entity': 'I-PER', 'score': 0.9996476, 'index': 159, 'word': 'Le', 'start': 644, 'end': 646}, {'entity': 'I-PER', 'score': 0.9697327, 'index': 160, 'word': '##bed', 'start': 646, 'end': 649}, {'entity': 'I-PER', 'score': 0.9997559, 'index': 164, 'word': 'Mask', 'start': 662, 'end': 666}, {'entity': 'I-PER', 'score': 0.9694462, 'index': 165, 'word': '##had', 'start': 666, 'end': 669}, {'entity': 'I-PER', 'score': 0.95049286, 'index': 166, 'word': '##ov', 'start': 669, 'end': 671}, {'entity': 'I-LOC', 'score': 0.999613, 'index': 180, 'word': 'Ch', 'start': 733, 'end': 735}, {'entity': 'I-LOC', 'score': 0.9993524, 'index': 181, 'word': '##ech', 'start': 735, 'end': 738}, {'entity': 'I-LOC', 'score': 0.99960154, 'index': 182, 'word': '##nya', 'start': 738, 'end': 741}, {'entity': 'I-PER', 'score': 0.99959, 'index': 211, 'word': 'Le', 'start': 850, 'end': 852}, {'entity': 'I-PER', 'score': 0.97538245, 'index': 212, 'word': '##bed', 'start': 852, 'end': 855}, {'entity': 'I-LOC', 'score': 0.999385, 'index': 225, 'word': 'Ch', 'start': 926, 'end': 928}, {'entity': 'I-LOC', 'score': 0.9989195, 'index': 226, 'word': '##ech', 'start': 928, 'end': 931}, {'entity': 'I-LOC', 'score': 0.99966896, 'index': 227, 'word': '##nya', 'start': 931, 'end': 934}, {'entity': 'I-LOC', 'score': 0.99952745, 'index': 254, 'word': 'Moscow', 'start': 1036, 'end': 1042}, {'entity': 'I-LOC', 'score': 0.9996762, 'index': 260, 'word': 'Ch', 'start': 1064, 'end': 1066}, {'entity': 'I-LOC', 'score': 0.9993824, 'index': 261, 'word': '##ech', 'start': 1066, 'end': 1069}, {'entity': 'I-LOC', 'score': 0.99964404, 'index': 262, 'word': '##nya', 'start': 1069, 'end': 1072}, {'entity': 'I-LOC', 'score': 0.9997868, 'index': 273, 'word': 'Russia', 'start': 1104, 'end': 1110}, {'entity': 'I-LOC', 'score': 0.99957114, 'index': 282, 'word': 'Ch', 'start': 1151, 'end': 1153}, {'entity': 'I-LOC', 'score': 0.9991278, 'index': 283, 'word': '##ech', 'start': 1153, 'end': 1156}, {'entity': 'I-LOC', 'score': 0.9996221, 'index': 284, 'word': '##nya', 'start': 1156, 'end': 1159}, {'entity': 'I-PER', 'score': 0.9994234, 'index': 300, 'word': 'Boris', 'start': 1229, 'end': 1234}, {'entity': 'I-PER', 'score': 0.99967, 'index': 301, 'word': 'Ye', 'start': 1235, 'end': 1237}, {'entity': 'I-PER', 'score': 0.98564327, 'index': 302, 'word': '##lts', 'start': 1237, 'end': 1240}, {'entity': 'I-PER', 'score': 0.9896387, 'index': 303, 'word': '##in', 'start': 1240, 'end': 1242}, {'entity': 'I-PER', 'score': 0.9995901, 'index': 305, 'word': 'Le', 'start': 1251, 'end': 1253}, {'entity': 'I-PER', 'score': 0.97779137, 'index': 306, 'word': '##bed', 'start': 1253, 'end': 1256}, {'entity': 'I-LOC', 'score': 0.9996414, 'index': 311, 'word': 'Ch', 'start': 1277, 'end': 1279}, {'entity': 'I-LOC', 'score': 0.99919575, 'index': 312, 'word': '##ech', 'start': 1279, 'end': 1282}, {'entity': 'I-LOC', 'score': 0.9995467, 'index': 313, 'word': '##nya', 'start': 1282, 'end': 1285}, {'entity': 'I-PER', 'score': 0.9993537, 'index': 335, 'word': 'Viktor', 'start': 1374, 'end': 1380}, {'entity': 'I-PER', 'score': 0.9996716, 'index': 336, 'word': 'Ch', 'start': 1381, 'end': 1383}, {'entity': 'I-PER', 'score': 0.9801906, 'index': 337, 'word': '##ern', 'start': 1383, 'end': 1386}, {'entity': 'I-PER', 'score': 0.9808592, 'index': 338, 'word': '##omy', 'start': 1386, 'end': 1389}, {'entity': 'I-PER', 'score': 0.84928906, 'index': 339, 'word': '##rdi', 'start': 1389, 'end': 1392}, {'entity': 'I-PER', 'score': 0.9798815, 'index': 340, 'word': '##n', 'start': 1392, 'end': 1393}, {'entity': 'I-PER', 'score': 0.9994128, 'index': 345, 'word': 'Ye', 'start': 1414, 'end': 1416}, {'entity': 'I-PER', 'score': 0.9643867, 'index': 346, 'word': '##lts', 'start': 1416, 'end': 1419}, {'entity': 'I-PER', 'score': 0.87561005, 'index': 347, 'word': '##in', 'start': 1419, 'end': 1421}, {'entity': 'I-PER', 'score': 0.9988992, 'index': 353, 'word': 'Le', 'start': 1452, 'end': 1454}, {'entity': 'I-PER', 'score': 0.8908041, 'index': 354, 'word': '##bed', 'start': 1454, 'end': 1457}]
[{'entity': 'I-MISC', 'score': 0.9962793, 'index': 4, 'word': 'Mo', 'start': 7, 'end': 9}, {'entity': 'I-MISC', 'score': 0.97273874, 'index': 5, 'word': '##sle', 'start': 9, 'end': 12}, {'entity': 'I-MISC', 'score': 0.9747791, 'index': 6, 'word': '##m', 'start': 12, 'end': 13}, {'entity': 'I-LOC', 'score': 0.99779993, 'index': 16, 'word': 'SA', 'start': 45, 'end': 47}, {'entity': 'I-LOC', 'score': 0.99308985, 'index': 17, 'word': '##RA', 'start': 47, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9832093, 'index': 18, 'word': '##J', 'start': 49, 'end': 50}, {'entity': 'I-LOC', 'score': 0.96823376, 'index': 19, 'word': '##E', 'start': 50, 'end': 51}, {'entity': 'I-LOC', 'score': 0.9848667, 'index': 20, 'word': '##VO', 'start': 51, 'end': 53}, {'entity': 'I-LOC', 'score': 0.99985313, 'index': 30, 'word': 'Bosnia', 'start': 70, 'end': 76}, {'entity': 'I-MISC', 'score': 0.99572444, 'index': 34, 'word': 'Mo', 'start': 87, 'end': 89}, {'entity': 'I-MISC', 'score': 0.9646537, 'index': 35, 'word': '##sle', 'start': 89, 'end': 92}, {'entity': 'I-MISC', 'score': 0.98065144, 'index': 36, 'word': '##m', 'start': 92, 'end': 93}, {'entity': 'I-LOC', 'score': 0.9988894, 'index': 65, 'word': 'U', 'start': 246, 'end': 247}, {'entity': 'I-LOC', 'score': 0.9909876, 'index': 67, 'word': 'S', 'start': 248, 'end': 249}, {'entity': 'I-MISC', 'score': 0.99878174, 'index': 81, 'word': 'Bosnian', 'start': 292, 'end': 299}, {'entity': 'I-LOC', 'score': 0.9964695, 'index': 86, 'word': 'U', 'start': 332, 'end': 333}, {'entity': 'I-LOC', 'score': 0.965831, 'index': 88, 'word': 'S', 'start': 334, 'end': 335}, {'entity': 'I-PER', 'score': 0.99923086, 'index': 94, 'word': 'John', 'start': 366, 'end': 370}, {'entity': 'I-PER', 'score': 0.99968266, 'index': 95, 'word': 'Ko', 'start': 371, 'end': 373}, {'entity': 'I-PER', 'score': 0.9828198, 'index': 96, 'word': '##rn', 'start': 373, 'end': 375}, {'entity': 'I-PER', 'score': 0.97172403, 'index': 97, 'word': '##b', 'start': 375, 'end': 376}, {'entity': 'I-PER', 'score': 0.9814983, 'index': 98, 'word': '##lum', 'start': 376, 'end': 379}, {'entity': 'I-ORG', 'score': 0.99917966, 'index': 102, 'word': 'SD', 'start': 394, 'end': 396}, {'entity': 'I-ORG', 'score': 0.9969807, 'index': 103, 'word': '##A', 'start': 396, 'end': 397}, {'entity': 'I-MISC', 'score': 0.9981353, 'index': 111, 'word': 'Bosnian', 'start': 444, 'end': 451}, {'entity': 'I-PER', 'score': 0.9980069, 'index': 113, 'word': 'Ali', 'start': 462, 'end': 465}, {'entity': 'I-PER', 'score': 0.99793375, 'index': 114, 'word': '##ja', 'start': 465, 'end': 467}, {'entity': 'I-PER', 'score': 0.9976158, 'index': 115, 'word': 'I', 'start': 468, 'end': 469}, {'entity': 'I-PER', 'score': 0.984968, 'index': 116, 'word': '##ze', 'start': 469, 'end': 471}, {'entity': 'I-PER', 'score': 0.9756714, 'index': 117, 'word': '##t', 'start': 471, 'end': 472}, {'entity': 'I-PER', 'score': 0.9859827, 'index': 118, 'word': '##be', 'start': 472, 'end': 474}, {'entity': 'I-PER', 'score': 0.51209927, 'index': 119, 'word': '##go', 'start': 474, 'end': 476}, {'entity': 'I-PER', 'score': 0.9898352, 'index': 120, 'word': '##vic', 'start': 476, 'end': 479}, {'entity': 'I-LOC', 'score': 0.9985266, 'index': 148, 'word': 'U', 'start': 591, 'end': 592}, {'entity': 'I-LOC', 'score': 0.9933455, 'index': 150, 'word': 'S', 'start': 593, 'end': 594}, {'entity': 'I-LOC', 'score': 0.9998198, 'index': 191, 'word': 'Bosnia', 'start': 750, 'end': 756}, {'entity': 'I-ORG', 'score': 0.9996717, 'index': 201, 'word': 'Party', 'start': 784, 'end': 789}, {'entity': 'I-ORG', 'score': 0.999571, 'index': 202, 'word': 'of', 'start': 790, 'end': 792}, {'entity': 'I-ORG', 'score': 0.9996891, 'index': 203, 'word': 'Democratic', 'start': 793, 'end': 803}, {'entity': 'I-ORG', 'score': 0.9996972, 'index': 204, 'word': 'Action', 'start': 804, 'end': 810}, {'entity': 'I-ORG', 'score': 0.9996119, 'index': 206, 'word': 'SD', 'start': 813, 'end': 815}, {'entity': 'I-ORG', 'score': 0.99934965, 'index': 207, 'word': '##A', 'start': 815, 'end': 816}, {'entity': 'I-MISC', 'score': 0.99822265, 'index': 233, 'word': 'Serb', 'start': 966, 'end': 970}, {'entity': 'I-ORG', 'score': 0.99965096, 'index': 241, 'word': 'Organisation', 'start': 991, 'end': 1003}, {'entity': 'I-ORG', 'score': 0.999514, 'index': 242, 'word': 'for', 'start': 1004, 'end': 1007}, {'entity': 'I-ORG', 'score': 0.9996264, 'index': 243, 'word': 'Security', 'start': 1008, 'end': 1016}, {'entity': 'I-ORG', 'score': 0.99956495, 'index': 244, 'word': 'and', 'start': 1017, 'end': 1020}, {'entity': 'I-ORG', 'score': 0.9996643, 'index': 245, 'word': 'Cooperation', 'start': 1021, 'end': 1032}, {'entity': 'I-ORG', 'score': 0.9992743, 'index': 246, 'word': 'in', 'start': 1033, 'end': 1035}, {'entity': 'I-ORG', 'score': 0.9990087, 'index': 247, 'word': 'Europe', 'start': 1036, 'end': 1042}, {'entity': 'I-ORG', 'score': 0.9996866, 'index': 249, 'word': 'OS', 'start': 1045, 'end': 1047}, {'entity': 'I-ORG', 'score': 0.99949384, 'index': 250, 'word': '##CE', 'start': 1047, 'end': 1049}, {'entity': 'I-ORG', 'score': 0.99942493, 'index': 277, 'word': 'SD', 'start': 1181, 'end': 1183}, {'entity': 'I-ORG', 'score': 0.9987141, 'index': 278, 'word': '##A', 'start': 1183, 'end': 1184}, {'entity': 'I-ORG', 'score': 0.99908316, 'index': 290, 'word': 'OS', 'start': 1241, 'end': 1243}, {'entity': 'I-ORG', 'score': 0.9977805, 'index': 291, 'word': '##CE', 'start': 1243, 'end': 1245}]
[{'entity': 'I-LOC', 'score': 0.9993824, 'index': 1, 'word': 'Belgrade', 'start': 0, 'end': 8}, {'entity': 'I-LOC', 'score': 0.9979365, 'index': 16, 'word': 'B', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.99002177, 'index': 17, 'word': '##EL', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.98916805, 'index': 18, 'word': '##GR', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.97695816, 'index': 19, 'word': '##AD', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.997607, 'index': 20, 'word': '##E', 'start': 64, 'end': 65}, {'entity': 'I-LOC', 'score': 0.99956995, 'index': 30, 'word': 'Belgrade', 'start': 82, 'end': 90}, {'entity': 'I-ORG', 'score': 0.86558396, 'index': 35, 'word': 'Aero', 'start': 107, 'end': 111}, {'entity': 'I-ORG', 'score': 0.9508099, 'index': 36, 'word': '##dr', 'start': 111, 'end': 113}, {'entity': 'I-ORG', 'score': 0.8288772, 'index': 37, 'word': '##om', 'start': 113, 'end': 115}, {'entity': 'I-LOC', 'score': 0.66815525, 'index': 38, 'word': 'Be', 'start': 116, 'end': 118}, {'entity': 'I-LOC', 'score': 0.9789746, 'index': 39, 'word': '##og', 'start': 118, 'end': 120}, {'entity': 'I-LOC', 'score': 0.9959681, 'index': 40, 'word': '##rad', 'start': 120, 'end': 123}, {'entity': 'I-MISC', 'score': 0.99917185, 'index': 58, 'word': 'Yugoslav', 'start': 221, 'end': 229}, {'entity': 'I-ORG', 'score': 0.9983559, 'index': 61, 'word': 'Tan', 'start': 242, 'end': 245}, {'entity': 'I-ORG', 'score': 0.98007464, 'index': 62, 'word': '##ju', 'start': 245, 'end': 247}, {'entity': 'I-ORG', 'score': 0.99721813, 'index': 63, 'word': '##g', 'start': 247, 'end': 248}, {'entity': 'I-LOC', 'score': 0.9987379, 'index': 90, 'word': 'Bat', 'start': 356, 'end': 359}, {'entity': 'I-LOC', 'score': 0.99310356, 'index': 91, 'word': '##aj', 'start': 359, 'end': 361}, {'entity': 'I-LOC', 'score': 0.9979881, 'index': 92, 'word': '##nica', 'start': 361, 'end': 365}, {'entity': 'I-ORG', 'score': 0.9679883, 'index': 101, 'word': 'Tan', 'start': 400, 'end': 403}, {'entity': 'I-ORG', 'score': 0.954024, 'index': 102, 'word': '##ju', 'start': 403, 'end': 405}, {'entity': 'I-ORG', 'score': 0.9826842, 'index': 103, 'word': '##g', 'start': 405, 'end': 406}, {'entity': 'I-LOC', 'score': 0.9992142, 'index': 105, 'word': 'Belgrade', 'start': 414, 'end': 422}, {'entity': 'I-PER', 'score': 0.99874485, 'index': 109, 'word': 'L', 'start': 448, 'end': 449}, {'entity': 'I-PER', 'score': 0.98971117, 'index': 110, 'word': '##ju', 'start': 449, 'end': 451}, {'entity': 'I-PER', 'score': 0.9757354, 'index': 111, 'word': '##bo', 'start': 451, 'end': 453}, {'entity': 'I-PER', 'score': 0.9980235, 'index': 112, 'word': '##mir', 'start': 453, 'end': 456}, {'entity': 'I-PER', 'score': 0.9987645, 'index': 113, 'word': 'A', 'start': 457, 'end': 458}, {'entity': 'I-PER', 'score': 0.9495606, 'index': 114, 'word': '##ci', 'start': 458, 'end': 460}, {'entity': 'I-PER', 'score': 0.77261746, 'index': 115, 'word': '##mo', 'start': 460, 'end': 462}, {'entity': 'I-PER', 'score': 0.9863846, 'index': 116, 'word': '##vic', 'start': 462, 'end': 465}, {'entity': 'I-LOC', 'score': 0.99038374, 'index': 127, 'word': 'Sur', 'start': 498, 'end': 501}, {'entity': 'I-LOC', 'score': 0.98812824, 'index': 128, 'word': '##cin', 'start': 501, 'end': 504}, {'entity': 'I-LOC', 'score': 0.99933165, 'index': 146, 'word': 'Bat', 'start': 609, 'end': 612}, {'entity': 'I-LOC', 'score': 0.9950995, 'index': 147, 'word': '##aj', 'start': 612, 'end': 614}, {'entity': 'I-LOC', 'score': 0.99889743, 'index': 148, 'word': '##nica', 'start': 614, 'end': 618}, {'entity': 'I-PER', 'score': 0.9987097, 'index': 150, 'word': 'A', 'start': 621, 'end': 622}, {'entity': 'I-PER', 'score': 0.93397224, 'index': 151, 'word': '##ci', 'start': 622, 'end': 624}, {'entity': 'I-PER', 'score': 0.70070124, 'index': 152, 'word': '##mo', 'start': 624, 'end': 626}, {'entity': 'I-PER', 'score': 0.97497034, 'index': 153, 'word': '##vic', 'start': 626, 'end': 629}, {'entity': 'I-LOC', 'score': 0.9993699, 'index': 185, 'word': 'Belgrade', 'start': 768, 'end': 776}, {'entity': 'I-ORG', 'score': 0.92464757, 'index': 188, 'word': 'Tan', 'start': 787, 'end': 790}, {'entity': 'I-ORG', 'score': 0.88530535, 'index': 189, 'word': '##ju', 'start': 790, 'end': 792}, {'entity': 'I-ORG', 'score': 0.96495503, 'index': 190, 'word': '##g', 'start': 792, 'end': 793}, {'entity': 'I-LOC', 'score': 0.9991386, 'index': 198, 'word': 'Bat', 'start': 810, 'end': 813}, {'entity': 'I-LOC', 'score': 0.99373615, 'index': 199, 'word': '##aj', 'start': 813, 'end': 815}, {'entity': 'I-LOC', 'score': 0.9978598, 'index': 200, 'word': '##nica', 'start': 815, 'end': 819}, {'entity': 'I-ORG', 'score': 0.9992374, 'index': 213, 'word': 'Federal', 'start': 893, 'end': 900}, {'entity': 'I-ORG', 'score': 0.9990293, 'index': 214, 'word': 'Air', 'start': 901, 'end': 904}, {'entity': 'I-ORG', 'score': 0.9990509, 'index': 215, 'word': 'Traffic', 'start': 905, 'end': 912}, {'entity': 'I-ORG', 'score': 0.99946696, 'index': 216, 'word': 'Control', 'start': 913, 'end': 920}, {'entity': 'I-ORG', 'score': 0.99918634, 'index': 217, 'word': 'Administration', 'start': 921, 'end': 935}, {'entity': 'I-PER', 'score': 0.99929535, 'index': 219, 'word': 'B', 'start': 945, 'end': 946}, {'entity': 'I-PER', 'score': 0.9984653, 'index': 220, 'word': '##rank', 'start': 946, 'end': 950}, {'entity': 'I-PER', 'score': 0.9987243, 'index': 221, 'word': '##o', 'start': 950, 'end': 951}, {'entity': 'I-PER', 'score': 0.99959415, 'index': 222, 'word': 'B', 'start': 952, 'end': 953}, {'entity': 'I-PER', 'score': 0.9825973, 'index': 223, 'word': '##il', 'start': 953, 'end': 955}, {'entity': 'I-PER', 'score': 0.9638781, 'index': 224, 'word': '##bi', 'start': 955, 'end': 957}, {'entity': 'I-PER', 'score': 0.9884764, 'index': 225, 'word': '##ja', 'start': 957, 'end': 959}, {'entity': 'I-PER', 'score': 0.9988951, 'index': 234, 'word': 'Am', 'start': 975, 'end': 977}, {'entity': 'I-PER', 'score': 0.9982668, 'index': 235, 'word': '##ra', 'start': 977, 'end': 979}, {'entity': 'I-PER', 'score': 0.99756503, 'index': 236, 'word': 'Ke', 'start': 980, 'end': 982}, {'entity': 'I-PER', 'score': 0.9933484, 'index': 237, 'word': '##vic', 'start': 982, 'end': 985}, {'entity': 'I-LOC', 'score': 0.99942577, 'index': 239, 'word': 'Belgrade', 'start': 988, 'end': 996}]
[{'entity': 'I-LOC', 'score': 0.99942136, 'index': 2, 'word': 'Belarus', 'start': 4, 'end': 11}, {'entity': 'I-PER', 'score': 0.999602, 'index': 12, 'word': 'La', 'start': 47, 'end': 49}, {'entity': 'I-PER', 'score': 0.99783605, 'index': 13, 'word': '##ris', 'start': 49, 'end': 52}, {'entity': 'I-PER', 'score': 0.99896514, 'index': 14, 'word': '##a', 'start': 52, 'end': 53}, {'entity': 'I-PER', 'score': 0.9993814, 'index': 15, 'word': 'Say', 'start': 54, 'end': 57}, {'entity': 'I-PER', 'score': 0.9993573, 'index': 16, 'word': '##enko', 'start': 57, 'end': 61}, {'entity': 'I-LOC', 'score': 0.998259, 'index': 21, 'word': 'MI', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.9712648, 'index': 22, 'word': '##NS', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9981761, 'index': 23, 'word': '##K', 'start': 71, 'end': 72}, {'entity': 'I-LOC', 'score': 0.9990895, 'index': 35, 'word': 'Belarus', 'start': 98, 'end': 105}, {'entity': 'I-PER', 'score': 0.9992804, 'index': 39, 'word': 'Alexander', 'start': 135, 'end': 144}, {'entity': 'I-PER', 'score': 0.9995339, 'index': 40, 'word': 'Lu', 'start': 145, 'end': 147}, {'entity': 'I-PER', 'score': 0.9855919, 'index': 41, 'word': '##kas', 'start': 147, 'end': 150}, {'entity': 'I-PER', 'score': 0.9819218, 'index': 42, 'word': '##hen', 'start': 150, 'end': 153}, {'entity': 'I-PER', 'score': 0.99899536, 'index': 43, 'word': '##ko', 'start': 153, 'end': 155}, {'entity': 'I-MISC', 'score': 0.9981389, 'index': 56, 'word': 'Soviet', 'start': 219, 'end': 225}, {'entity': 'I-LOC', 'score': 0.9987606, 'index': 67, 'word': 'Belarus', 'start': 261, 'end': 268}, {'entity': 'I-PER', 'score': 0.99970394, 'index': 70, 'word': 'Se', 'start': 282, 'end': 284}, {'entity': 'I-PER', 'score': 0.99955827, 'index': 71, 'word': '##my', 'start': 284, 'end': 286}, {'entity': 'I-PER', 'score': 0.99928325, 'index': 72, 'word': '##on', 'start': 286, 'end': 288}, {'entity': 'I-PER', 'score': 0.9997453, 'index': 73, 'word': 'S', 'start': 289, 'end': 290}, {'entity': 'I-PER', 'score': 0.9989446, 'index': 74, 'word': '##hare', 'start': 290, 'end': 294}, {'entity': 'I-PER', 'score': 0.99793386, 'index': 75, 'word': '##tsky', 'start': 294, 'end': 298}, {'entity': 'I-ORG', 'score': 0.9993605, 'index': 78, 'word': 'Re', 'start': 306, 'end': 308}, {'entity': 'I-ORG', 'score': 0.99439126, 'index': 79, 'word': '##uters', 'start': 308, 'end': 313}, {'entity': 'I-PER', 'score': 0.99953127, 'index': 124, 'word': 'Lu', 'start': 530, 'end': 532}, {'entity': 'I-PER', 'score': 0.9951304, 'index': 125, 'word': '##kas', 'start': 532, 'end': 535}, {'entity': 'I-PER', 'score': 0.98850155, 'index': 126, 'word': '##hen', 'start': 535, 'end': 538}, {'entity': 'I-PER', 'score': 0.99896944, 'index': 127, 'word': '##ko', 'start': 538, 'end': 540}, {'entity': 'I-MISC', 'score': 0.9965785, 'index': 132, 'word': 'European', 'start': 558, 'end': 566}, {'entity': 'I-PER', 'score': 0.9997218, 'index': 151, 'word': 'S', 'start': 664, 'end': 665}, {'entity': 'I-PER', 'score': 0.99640864, 'index': 152, 'word': '##hare', 'start': 665, 'end': 669}, {'entity': 'I-PER', 'score': 0.9626451, 'index': 153, 'word': '##tsky', 'start': 669, 'end': 673}, {'entity': 'I-PER', 'score': 0.9995204, 'index': 203, 'word': 'Lu', 'start': 894, 'end': 896}, {'entity': 'I-PER', 'score': 0.99165475, 'index': 204, 'word': '##kas', 'start': 896, 'end': 899}, {'entity': 'I-PER', 'score': 0.95705205, 'index': 205, 'word': '##hen', 'start': 899, 'end': 902}, {'entity': 'I-PER', 'score': 0.9971534, 'index': 206, 'word': '##ko', 'start': 902, 'end': 904}, {'entity': 'I-PER', 'score': 0.99958974, 'index': 213, 'word': 'S', 'start': 927, 'end': 928}, {'entity': 'I-PER', 'score': 0.9948992, 'index': 214, 'word': '##hare', 'start': 928, 'end': 932}, {'entity': 'I-PER', 'score': 0.9679777, 'index': 215, 'word': '##tsky', 'start': 932, 'end': 936}, {'entity': 'I-PER', 'score': 0.99928814, 'index': 245, 'word': 'Sergei', 'start': 1042, 'end': 1048}, {'entity': 'I-PER', 'score': 0.9996445, 'index': 246, 'word': 'Po', 'start': 1049, 'end': 1051}, {'entity': 'I-PER', 'score': 0.96291596, 'index': 247, 'word': '##su', 'start': 1051, 'end': 1053}, {'entity': 'I-PER', 'score': 0.8119452, 'index': 248, 'word': '##kh', 'start': 1053, 'end': 1055}, {'entity': 'I-PER', 'score': 0.9837647, 'index': 249, 'word': '##ov', 'start': 1055, 'end': 1057}, {'entity': 'I-PER', 'score': 0.99940264, 'index': 251, 'word': 'Lu', 'start': 1060, 'end': 1062}, {'entity': 'I-PER', 'score': 0.988988, 'index': 252, 'word': '##kas', 'start': 1062, 'end': 1065}, {'entity': 'I-PER', 'score': 0.9598223, 'index': 253, 'word': '##hen', 'start': 1065, 'end': 1068}, {'entity': 'I-PER', 'score': 0.997024, 'index': 254, 'word': '##ko', 'start': 1068, 'end': 1070}, {'entity': 'I-ORG', 'score': 0.9992847, 'index': 261, 'word': 'Re', 'start': 1099, 'end': 1101}, {'entity': 'I-ORG', 'score': 0.9949432, 'index': 262, 'word': '##uters', 'start': 1101, 'end': 1106}, {'entity': 'I-PER', 'score': 0.9995815, 'index': 290, 'word': 'Lu', 'start': 1194, 'end': 1196}, {'entity': 'I-PER', 'score': 0.99759954, 'index': 291, 'word': '##kas', 'start': 1196, 'end': 1199}, {'entity': 'I-PER', 'score': 0.98869264, 'index': 292, 'word': '##hen', 'start': 1199, 'end': 1202}, {'entity': 'I-PER', 'score': 0.9992422, 'index': 293, 'word': '##ko', 'start': 1202, 'end': 1204}, {'entity': 'I-LOC', 'score': 0.9998344, 'index': 316, 'word': 'Russia', 'start': 1324, 'end': 1330}, {'entity': 'I-LOC', 'score': 0.99926454, 'index': 325, 'word': 'Soviet', 'start': 1374, 'end': 1380}, {'entity': 'I-LOC', 'score': 0.9997938, 'index': 326, 'word': 'Union', 'start': 1381, 'end': 1386}, {'entity': 'I-PER', 'score': 0.99963284, 'index': 350, 'word': 'S', 'start': 1505, 'end': 1506}, {'entity': 'I-PER', 'score': 0.9932006, 'index': 351, 'word': '##hare', 'start': 1506, 'end': 1510}, {'entity': 'I-PER', 'score': 0.9468638, 'index': 352, 'word': '##tsky', 'start': 1510, 'end': 1514}, {'entity': 'I-LOC', 'score': 0.46338353, 'index': 400, 'word': 'S', 'start': 1703, 'end': 1704}, {'entity': 'I-MISC', 'score': 0.6398248, 'index': 425, 'word': 'S', 'start': 1808, 'end': 1809}, {'entity': 'I-PER', 'score': 0.9989297, 'index': 427, 'word': 'Lu', 'start': 1811, 'end': 1813}, {'entity': 'I-PER', 'score': 0.51604253, 'index': 428, 'word': '##kas', 'start': 1813, 'end': 1816}, {'entity': 'I-PER', 'score': 0.7684254, 'index': 429, 'word': '##hen', 'start': 1816, 'end': 1819}, {'entity': 'I-PER', 'score': 0.8758587, 'index': 430, 'word': '##ko', 'start': 1819, 'end': 1821}, {'entity': 'I-LOC', 'score': 0.9990482, 'index': 435, 'word': 'Moscow', 'start': 1841, 'end': 1847}, {'entity': 'I-MISC', 'score': 0.5690876, 'index': 457, 'word': 'S', 'start': 1956, 'end': 1957}, {'entity': 'I-LOC', 'score': 0.9990773, 'index': 469, 'word': 'Moscow', 'start': 2018, 'end': 2024}, {'entity': 'I-LOC', 'score': 0.9997304, 'index': 472, 'word': 'Russia', 'start': 2040, 'end': 2046}, {'entity': 'I-PER', 'score': 0.99791366, 'index': 477, 'word': 'Lu', 'start': 2062, 'end': 2064}, {'entity': 'I-PER', 'score': 0.8713167, 'index': 478, 'word': '##kas', 'start': 2064, 'end': 2067}, {'entity': 'I-PER', 'score': 0.55441, 'index': 479, 'word': '##hen', 'start': 2067, 'end': 2070}, {'entity': 'I-PER', 'score': 0.8603957, 'index': 480, 'word': '##ko', 'start': 2070, 'end': 2072}, {'entity': 'I-LOC', 'score': 0.4677911, 'index': 489, 'word': 'S', 'start': 2106, 'end': 2107}, {'entity': 'I-PER', 'score': 0.99779034, 'index': 491, 'word': 'Lu', 'start': 2109, 'end': 2111}, {'entity': 'I-PER', 'score': 0.92727834, 'index': 492, 'word': '##kas', 'start': 2111, 'end': 2114}, {'entity': 'I-PER', 'score': 0.94652635, 'index': 493, 'word': '##hen', 'start': 2114, 'end': 2117}, {'entity': 'I-PER', 'score': 0.89919865, 'index': 494, 'word': '##ko', 'start': 2117, 'end': 2119}]
[{'entity': 'I-MISC', 'score': 0.9965011, 'index': 1, 'word': 'Ta', 'start': 0, 'end': 2}, {'entity': 'I-MISC', 'score': 0.9829185, 'index': 2, 'word': '##ji', 'start': 2, 'end': 4}, {'entity': 'I-MISC', 'score': 0.98059195, 'index': 3, 'word': '##k', 'start': 4, 'end': 5}, {'entity': 'I-PER', 'score': 0.9971589, 'index': 14, 'word': 'Yuri', 'start': 48, 'end': 52}, {'entity': 'I-LOC', 'score': 0.50643754, 'index': 15, 'word': 'Ku', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.71743196, 'index': 16, 'word': '##sh', 'start': 55, 'end': 57}, {'entity': 'I-PER', 'score': 0.87563473, 'index': 17, 'word': '##ko', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.99790657, 'index': 22, 'word': 'T', 'start': 65, 'end': 66}, {'entity': 'I-LOC', 'score': 0.99480385, 'index': 23, 'word': '##AV', 'start': 66, 'end': 68}, {'entity': 'I-LOC', 'score': 0.9971949, 'index': 24, 'word': '##IL', 'start': 68, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9960161, 'index': 25, 'word': '##DA', 'start': 70, 'end': 72}, {'entity': 'I-LOC', 'score': 0.9979006, 'index': 26, 'word': '##RA', 'start': 72, 'end': 74}, {'entity': 'I-LOC', 'score': 0.9997031, 'index': 28, 'word': 'Tajikistan', 'start': 77, 'end': 87}, {'entity': 'I-MISC', 'score': 0.9973316, 'index': 38, 'word': 'Ta', 'start': 104, 'end': 106}, {'entity': 'I-MISC', 'score': 0.99201244, 'index': 39, 'word': '##ji', 'start': 106, 'end': 108}, {'entity': 'I-MISC', 'score': 0.98219126, 'index': 40, 'word': '##k', 'start': 108, 'end': 109}, {'entity': 'I-LOC', 'score': 0.99815494, 'index': 51, 'word': 'Tavi', 'start': 175, 'end': 179}, {'entity': 'I-LOC', 'score': 0.9983134, 'index': 52, 'word': '##lda', 'start': 179, 'end': 182}, {'entity': 'I-LOC', 'score': 0.9989806, 'index': 53, 'word': '##ra', 'start': 182, 'end': 184}, {'entity': 'I-MISC', 'score': 0.9887156, 'index': 57, 'word': 'Islamic', 'start': 203, 'end': 210}, {'entity': 'I-LOC', 'score': 0.994985, 'index': 69, 'word': 'Pam', 'start': 268, 'end': 271}, {'entity': 'I-LOC', 'score': 0.9841764, 'index': 70, 'word': '##ir', 'start': 271, 'end': 273}, {'entity': 'I-LOC', 'score': 0.9997365, 'index': 86, 'word': 'Tajikistan', 'start': 327, 'end': 337}, {'entity': 'I-PER', 'score': 0.9992083, 'index': 95, 'word': 'Nikolai', 'start': 370, 'end': 377}, {'entity': 'I-PER', 'score': 0.99972075, 'index': 96, 'word': 'She', 'start': 378, 'end': 381}, {'entity': 'I-PER', 'score': 0.9462002, 'index': 97, 'word': '##rb', 'start': 381, 'end': 383}, {'entity': 'I-PER', 'score': 0.9409003, 'index': 98, 'word': '##ato', 'start': 383, 'end': 386}, {'entity': 'I-PER', 'score': 0.9917854, 'index': 99, 'word': '##v', 'start': 386, 'end': 387}, {'entity': 'I-LOC', 'score': 0.9975078, 'index': 134, 'word': 'Tavi', 'start': 537, 'end': 541}, {'entity': 'I-LOC', 'score': 0.99728537, 'index': 135, 'word': '##lda', 'start': 541, 'end': 544}, {'entity': 'I-LOC', 'score': 0.9986406, 'index': 136, 'word': '##ra', 'start': 544, 'end': 546}, {'entity': 'I-PER', 'score': 0.9996458, 'index': 167, 'word': 'She', 'start': 706, 'end': 709}, {'entity': 'I-PER', 'score': 0.8977716, 'index': 168, 'word': '##rb', 'start': 709, 'end': 711}, {'entity': 'I-PER', 'score': 0.91348493, 'index': 169, 'word': '##ato', 'start': 711, 'end': 714}, {'entity': 'I-PER', 'score': 0.49832976, 'index': 170, 'word': '##v', 'start': 714, 'end': 715}, {'entity': 'I-LOC', 'score': 0.9971263, 'index': 185, 'word': 'Tavi', 'start': 782, 'end': 786}, {'entity': 'I-LOC', 'score': 0.9963109, 'index': 186, 'word': '##lda', 'start': 786, 'end': 789}, {'entity': 'I-LOC', 'score': 0.99738246, 'index': 187, 'word': '##ra', 'start': 789, 'end': 791}, {'entity': 'I-LOC', 'score': 0.99549735, 'index': 192, 'word': 'Lay', 'start': 814, 'end': 817}, {'entity': 'I-LOC', 'score': 0.9955499, 'index': 193, 'word': '##ron', 'start': 817, 'end': 820}, {'entity': 'I-LOC', 'score': 0.9986199, 'index': 199, 'word': 'Tavi', 'start': 828, 'end': 832}, {'entity': 'I-LOC', 'score': 0.998528, 'index': 200, 'word': '##lda', 'start': 832, 'end': 835}, {'entity': 'I-LOC', 'score': 0.9983864, 'index': 201, 'word': '##ra', 'start': 835, 'end': 837}, {'entity': 'I-LOC', 'score': 0.999537, 'index': 213, 'word': 'Du', 'start': 881, 'end': 883}, {'entity': 'I-LOC', 'score': 0.99915564, 'index': 214, 'word': '##shan', 'start': 883, 'end': 887}, {'entity': 'I-LOC', 'score': 0.99847597, 'index': 215, 'word': '##be', 'start': 887, 'end': 889}, {'entity': 'I-LOC', 'score': 0.9997644, 'index': 289, 'word': 'Tajikistan', 'start': 1190, 'end': 1200}, {'entity': 'I-LOC', 'score': 0.9996917, 'index': 293, 'word': 'Afghanistan', 'start': 1217, 'end': 1228}, {'entity': 'I-LOC', 'score': 0.99977976, 'index': 295, 'word': 'China', 'start': 1233, 'end': 1238}, {'entity': 'I-MISC', 'score': 0.9760199, 'index': 319, 'word': 'Islamic', 'start': 1351, 'end': 1358}, {'entity': 'I-MISC', 'score': 0.99876606, 'index': 352, 'word': 'United', 'start': 1505, 'end': 1511}, {'entity': 'I-MISC', 'score': 0.9989649, 'index': 353, 'word': 'Nations', 'start': 1512, 'end': 1519}, {'entity': 'I-LOC', 'score': 0.99814355, 'index': 363, 'word': 'Tavi', 'start': 1547, 'end': 1551}, {'entity': 'I-LOC', 'score': 0.9977068, 'index': 364, 'word': '##lda', 'start': 1551, 'end': 1554}, {'entity': 'I-LOC', 'score': 0.9960258, 'index': 365, 'word': '##ra', 'start': 1554, 'end': 1556}, {'entity': 'I-MISC', 'score': 0.84176403, 'index': 390, 'word': 'S', 'start': 1656, 'end': 1657}, {'entity': 'I-MISC', 'score': 0.68448603, 'index': 408, 'word': 'S', 'start': 1722, 'end': 1723}, {'entity': 'I-MISC', 'score': 0.7197058, 'index': 430, 'word': 'S', 'start': 1802, 'end': 1803}, {'entity': 'I-MISC', 'score': 0.78088665, 'index': 455, 'word': 'S', 'start': 1915, 'end': 1916}, {'entity': 'I-MISC', 'score': 0.541716, 'index': 494, 'word': 'S', 'start': 2059, 'end': 2060}]
[{'entity': 'I-MISC', 'score': 0.9989994, 'index': 1, 'word': 'Polish', 'start': 0, 'end': 6}, {'entity': 'I-LOC', 'score': 0.99987996, 'index': 6, 'word': 'Yugoslavia', 'start': 33, 'end': 43}, {'entity': 'I-LOC', 'score': 0.996977, 'index': 12, 'word': 'WA', 'start': 51, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9629576, 'index': 13, 'word': '##RS', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.8586677, 'index': 14, 'word': '##A', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.981054, 'index': 15, 'word': '##W', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.99979323, 'index': 25, 'word': 'Poland', 'start': 74, 'end': 80}, {'entity': 'I-PER', 'score': 0.9992441, 'index': 30, 'word': 'Darius', 'start': 101, 'end': 107}, {'entity': 'I-PER', 'score': 0.9993623, 'index': 31, 'word': '##z', 'start': 107, 'end': 108}, {'entity': 'I-PER', 'score': 0.99969494, 'index': 32, 'word': 'Rosa', 'start': 109, 'end': 113}, {'entity': 'I-PER', 'score': 0.9988102, 'index': 33, 'word': '##ti', 'start': 113, 'end': 115}, {'entity': 'I-LOC', 'score': 0.99986863, 'index': 36, 'word': 'Yugoslavia', 'start': 127, 'end': 137}, {'entity': 'I-ORG', 'score': 0.9919303, 'index': 57, 'word': 'PA', 'start': 247, 'end': 249}, {'entity': 'I-ORG', 'score': 0.99489343, 'index': 58, 'word': '##P', 'start': 249, 'end': 250}, {'entity': 'I-PER', 'score': 0.99964976, 'index': 70, 'word': 'Rosa', 'start': 296, 'end': 300}, {'entity': 'I-PER', 'score': 0.99741143, 'index': 71, 'word': '##ti', 'start': 300, 'end': 302}, {'entity': 'I-ORG', 'score': 0.9808601, 'index': 103, 'word': 'Foreign', 'start': 462, 'end': 469}, {'entity': 'I-ORG', 'score': 0.99454886, 'index': 104, 'word': 'Ministry', 'start': 470, 'end': 478}, {'entity': 'I-LOC', 'score': 0.99752575, 'index': 114, 'word': 'Federal', 'start': 510, 'end': 517}, {'entity': 'I-LOC', 'score': 0.9990263, 'index': 115, 'word': 'Republic', 'start': 518, 'end': 526}, {'entity': 'I-LOC', 'score': 0.98338807, 'index': 116, 'word': 'of', 'start': 527, 'end': 529}, {'entity': 'I-LOC', 'score': 0.9998154, 'index': 117, 'word': 'Yugoslavia', 'start': 530, 'end': 540}, {'entity': 'I-LOC', 'score': 0.9996319, 'index': 125, 'word': 'Yugoslavia', 'start': 575, 'end': 585}, {'entity': 'I-MISC', 'score': 0.9974043, 'index': 127, 'word': 'Poles', 'start': 592, 'end': 597}, {'entity': 'I-PER', 'score': 0.99963295, 'index': 159, 'word': 'Rosa', 'start': 734, 'end': 738}, {'entity': 'I-PER', 'score': 0.99138814, 'index': 160, 'word': '##ti', 'start': 738, 'end': 740}, {'entity': 'I-MISC', 'score': 0.99872273, 'index': 163, 'word': 'Serbian', 'start': 751, 'end': 758}, {'entity': 'I-PER', 'score': 0.9984219, 'index': 165, 'word': 'S', 'start': 769, 'end': 770}, {'entity': 'I-PER', 'score': 0.9888476, 'index': 166, 'word': '##lo', 'start': 770, 'end': 772}, {'entity': 'I-PER', 'score': 0.96738374, 'index': 167, 'word': '##bo', 'start': 772, 'end': 774}, {'entity': 'I-PER', 'score': 0.9984603, 'index': 168, 'word': '##dan', 'start': 774, 'end': 777}, {'entity': 'I-PER', 'score': 0.99771297, 'index': 169, 'word': 'Milo', 'start': 778, 'end': 782}, {'entity': 'I-PER', 'score': 0.7857762, 'index': 170, 'word': '##se', 'start': 782, 'end': 784}, {'entity': 'I-PER', 'score': 0.9933171, 'index': 171, 'word': '##vic', 'start': 784, 'end': 787}, {'entity': 'I-MISC', 'score': 0.99894255, 'index': 173, 'word': 'Yugoslav', 'start': 792, 'end': 800}, {'entity': 'I-LOC', 'score': 0.99954104, 'index': 176, 'word': 'Belgrade', 'start': 816, 'end': 824}, {'entity': 'I-LOC', 'score': 0.9998281, 'index': 180, 'word': 'Montenegro', 'start': 843, 'end': 853}, {'entity': 'I-LOC', 'score': 0.9998171, 'index': 186, 'word': 'Poland', 'start': 861, 'end': 867}, {'entity': 'I-LOC', 'score': 0.999856, 'index': 195, 'word': 'Yugoslavia', 'start': 920, 'end': 930}, {'entity': 'I-ORG', 'score': 0.9948666, 'index': 216, 'word': 'U', 'start': 1013, 'end': 1014}, {'entity': 'I-ORG', 'score': 0.9982967, 'index': 218, 'word': 'N', 'start': 1015, 'end': 1016}, {'entity': 'I-LOC', 'score': 0.99969566, 'index': 227, 'word': 'Belgrade', 'start': 1050, 'end': 1058}, {'entity': 'I-MISC', 'score': 0.99686795, 'index': 232, 'word': 'Bosnian', 'start': 1078, 'end': 1085}, {'entity': 'I-MISC', 'score': 0.9943527, 'index': 233, 'word': 'Serbs', 'start': 1086, 'end': 1091}, {'entity': 'I-LOC', 'score': 0.99980277, 'index': 239, 'word': 'Poland', 'start': 1099, 'end': 1105}]
[{'entity': 'I-PER', 'score': 0.99944216, 'index': 1, 'word': 'Ye', 'start': 0, 'end': 2}, {'entity': 'I-PER', 'score': 0.9937689, 'index': 2, 'word': '##lts', 'start': 2, 'end': 5}, {'entity': 'I-PER', 'score': 0.99087244, 'index': 3, 'word': '##in', 'start': 5, 'end': 7}, {'entity': 'I-PER', 'score': 0.9948639, 'index': 6, 'word': 'Na', 'start': 20, 'end': 22}, {'entity': 'I-PER', 'score': 0.9865216, 'index': 7, 'word': '##ina', 'start': 22, 'end': 25}, {'entity': 'I-ORG', 'score': 0.9993832, 'index': 11, 'word': 'Inter', 'start': 40, 'end': 45}, {'entity': 'I-ORG', 'score': 0.9880333, 'index': 12, 'word': '##fa', 'start': 45, 'end': 47}, {'entity': 'I-ORG', 'score': 0.99616385, 'index': 13, 'word': '##x', 'start': 47, 'end': 48}, {'entity': 'I-LOC', 'score': 0.99879706, 'index': 19, 'word': 'M', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9924079, 'index': 20, 'word': '##OS', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.96961683, 'index': 21, 'word': '##CO', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9961592, 'index': 22, 'word': '##W', 'start': 61, 'end': 62}, {'entity': 'I-MISC', 'score': 0.99919647, 'index': 32, 'word': 'Russian', 'start': 79, 'end': 86}, {'entity': 'I-PER', 'score': 0.9991757, 'index': 34, 'word': 'Boris', 'start': 97, 'end': 102}, {'entity': 'I-PER', 'score': 0.9994973, 'index': 35, 'word': 'Ye', 'start': 103, 'end': 105}, {'entity': 'I-PER', 'score': 0.99551046, 'index': 36, 'word': '##lts', 'start': 105, 'end': 108}, {'entity': 'I-PER', 'score': 0.996509, 'index': 37, 'word': '##in', 'start': 108, 'end': 110}, {'entity': 'I-PER', 'score': 0.9961605, 'index': 41, 'word': 'Na', 'start': 128, 'end': 130}, {'entity': 'I-PER', 'score': 0.99148166, 'index': 42, 'word': '##ina', 'start': 130, 'end': 133}, {'entity': 'I-ORG', 'score': 0.9991123, 'index': 49, 'word': 'Inter', 'start': 166, 'end': 171}, {'entity': 'I-ORG', 'score': 0.9905599, 'index': 50, 'word': '##fa', 'start': 171, 'end': 173}, {'entity': 'I-ORG', 'score': 0.99661285, 'index': 51, 'word': '##x', 'start': 173, 'end': 174}, {'entity': 'I-PER', 'score': 0.9991326, 'index': 56, 'word': 'Sergei', 'start': 204, 'end': 210}, {'entity': 'I-PER', 'score': 0.999542, 'index': 57, 'word': 'Ya', 'start': 211, 'end': 213}, {'entity': 'I-PER', 'score': 0.93998504, 'index': 58, 'word': '##st', 'start': 213, 'end': 215}, {'entity': 'I-PER', 'score': 0.9478348, 'index': 59, 'word': '##rz', 'start': 215, 'end': 217}, {'entity': 'I-PER', 'score': 0.968222, 'index': 60, 'word': '##hem', 'start': 217, 'end': 220}, {'entity': 'I-PER', 'score': 0.8485847, 'index': 61, 'word': '##bs', 'start': 220, 'end': 222}, {'entity': 'I-PER', 'score': 0.9680586, 'index': 62, 'word': '##ky', 'start': 222, 'end': 224}, {'entity': 'I-PER', 'score': 0.9963607, 'index': 70, 'word': 'Na', 'start': 242, 'end': 244}, {'entity': 'I-PER', 'score': 0.9969125, 'index': 71, 'word': '##ina', 'start': 244, 'end': 247}, {'entity': 'I-PER', 'score': 0.9994704, 'index': 72, 'word': 'Ye', 'start': 248, 'end': 250}, {'entity': 'I-PER', 'score': 0.98959607, 'index': 73, 'word': '##lts', 'start': 250, 'end': 253}, {'entity': 'I-PER', 'score': 0.9926247, 'index': 74, 'word': '##in', 'start': 253, 'end': 255}, {'entity': 'I-MISC', 'score': 0.9991603, 'index': 87, 'word': 'Russian', 'start': 308, 'end': 315}, {'entity': 'I-PER', 'score': 0.999542, 'index': 92, 'word': 'Ye', 'start': 338, 'end': 340}, {'entity': 'I-PER', 'score': 0.9920283, 'index': 93, 'word': '##lts', 'start': 340, 'end': 343}, {'entity': 'I-PER', 'score': 0.9721361, 'index': 94, 'word': '##in', 'start': 343, 'end': 345}, {'entity': 'I-MISC', 'score': 0.99924916, 'index': 103, 'word': 'Russian', 'start': 392, 'end': 399}, {'entity': 'I-PER', 'score': 0.9996239, 'index': 111, 'word': 'Ye', 'start': 435, 'end': 437}, {'entity': 'I-PER', 'score': 0.996424, 'index': 112, 'word': '##lts', 'start': 437, 'end': 440}, {'entity': 'I-PER', 'score': 0.9956126, 'index': 113, 'word': '##in', 'start': 440, 'end': 442}, {'entity': 'I-LOC', 'score': 0.999686, 'index': 118, 'word': 'Moscow', 'start': 465, 'end': 471}, {'entity': 'I-PER', 'score': 0.9969471, 'index': 132, 'word': 'Na', 'start': 514, 'end': 516}, {'entity': 'I-PER', 'score': 0.9968464, 'index': 133, 'word': '##ina', 'start': 516, 'end': 519}, {'entity': 'I-PER', 'score': 0.99949455, 'index': 134, 'word': 'Ye', 'start': 520, 'end': 522}, {'entity': 'I-PER', 'score': 0.9875243, 'index': 135, 'word': '##lts', 'start': 522, 'end': 525}, {'entity': 'I-PER', 'score': 0.9955075, 'index': 136, 'word': '##in', 'start': 525, 'end': 527}, {'entity': 'I-PER', 'score': 0.9994343, 'index': 151, 'word': 'Ya', 'start': 591, 'end': 593}, {'entity': 'I-PER', 'score': 0.93946606, 'index': 152, 'word': '##st', 'start': 593, 'end': 595}, {'entity': 'I-PER', 'score': 0.9142599, 'index': 153, 'word': '##rz', 'start': 595, 'end': 597}, {'entity': 'I-PER', 'score': 0.8934664, 'index': 154, 'word': '##hem', 'start': 597, 'end': 600}, {'entity': 'I-PER', 'score': 0.8080124, 'index': 155, 'word': '##bs', 'start': 600, 'end': 602}, {'entity': 'I-PER', 'score': 0.84773016, 'index': 156, 'word': '##ky', 'start': 602, 'end': 604}, {'entity': 'I-PER', 'score': 0.9996729, 'index': 158, 'word': 'Ye', 'start': 612, 'end': 614}, {'entity': 'I-PER', 'score': 0.9935196, 'index': 159, 'word': '##lts', 'start': 614, 'end': 617}, {'entity': 'I-PER', 'score': 0.9905557, 'index': 160, 'word': '##in', 'start': 617, 'end': 619}, {'entity': 'I-PER', 'score': 0.9977355, 'index': 168, 'word': 'Na', 'start': 637, 'end': 639}, {'entity': 'I-PER', 'score': 0.9974819, 'index': 169, 'word': '##ina', 'start': 639, 'end': 642}, {'entity': 'I-PER', 'score': 0.9994855, 'index': 170, 'word': 'Ye', 'start': 643, 'end': 645}, {'entity': 'I-PER', 'score': 0.98847103, 'index': 171, 'word': '##lts', 'start': 645, 'end': 648}, {'entity': 'I-PER', 'score': 0.9931058, 'index': 172, 'word': '##in', 'start': 648, 'end': 650}, {'entity': 'I-LOC', 'score': 0.99963236, 'index': 176, 'word': 'Moscow', 'start': 668, 'end': 674}, {'entity': 'I-LOC', 'score': 0.99772185, 'index': 179, 'word': 'Central', 'start': 678, 'end': 685}, {'entity': 'I-LOC', 'score': 0.9939236, 'index': 180, 'word': 'Clinical', 'start': 686, 'end': 694}, {'entity': 'I-LOC', 'score': 0.99485624, 'index': 181, 'word': 'Hospital', 'start': 695, 'end': 703}, {'entity': 'I-PER', 'score': 0.9996197, 'index': 200, 'word': 'Ye', 'start': 787, 'end': 789}, {'entity': 'I-PER', 'score': 0.9948437, 'index': 201, 'word': '##lts', 'start': 789, 'end': 792}, {'entity': 'I-PER', 'score': 0.99732554, 'index': 202, 'word': '##in', 'start': 792, 'end': 794}, {'entity': 'I-PER', 'score': 0.9991186, 'index': 247, 'word': 'Ya', 'start': 980, 'end': 982}, {'entity': 'I-PER', 'score': 0.91195273, 'index': 248, 'word': '##st', 'start': 982, 'end': 984}, {'entity': 'I-PER', 'score': 0.9228161, 'index': 249, 'word': '##rz', 'start': 984, 'end': 986}, {'entity': 'I-PER', 'score': 0.8318038, 'index': 250, 'word': '##hem', 'start': 986, 'end': 989}, {'entity': 'I-PER', 'score': 0.7847305, 'index': 251, 'word': '##bs', 'start': 989, 'end': 991}, {'entity': 'I-PER', 'score': 0.53173965, 'index': 252, 'word': '##ky', 'start': 991, 'end': 993}, {'entity': 'I-PER', 'score': 0.9996685, 'index': 254, 'word': 'Ye', 'start': 999, 'end': 1001}, {'entity': 'I-PER', 'score': 0.9911746, 'index': 255, 'word': '##lts', 'start': 1001, 'end': 1004}, {'entity': 'I-PER', 'score': 0.9739576, 'index': 256, 'word': '##in', 'start': 1004, 'end': 1006}, {'entity': 'I-LOC', 'score': 0.99741626, 'index': 268, 'word': 'Bar', 'start': 1065, 'end': 1068}, {'entity': 'I-LOC', 'score': 0.98346937, 'index': 269, 'word': '##vik', 'start': 1068, 'end': 1071}, {'entity': 'I-LOC', 'score': 0.99531823, 'index': 270, 'word': '##ha', 'start': 1071, 'end': 1073}, {'entity': 'I-LOC', 'score': 0.9995821, 'index': 275, 'word': 'Moscow', 'start': 1093, 'end': 1099}, {'entity': 'I-LOC', 'score': 0.99965537, 'index': 304, 'word': 'Moscow', 'start': 1213, 'end': 1219}]
[{'entity': 'I-PER', 'score': 0.9986688, 'index': 1, 'word': 'Le', 'start': 0, 'end': 2}, {'entity': 'I-PER', 'score': 0.94839543, 'index': 2, 'word': '##bed', 'start': 2, 'end': 5}, {'entity': 'I-MISC', 'score': 0.99770844, 'index': 4, 'word': 'Ch', 'start': 8, 'end': 10}, {'entity': 'I-MISC', 'score': 0.9952058, 'index': 5, 'word': '##ech', 'start': 10, 'end': 13}, {'entity': 'I-MISC', 'score': 0.9766649, 'index': 6, 'word': '##ens', 'start': 13, 'end': 16}, {'entity': 'I-LOC', 'score': 0.9989304, 'index': 15, 'word': 'K', 'start': 42, 'end': 43}, {'entity': 'I-LOC', 'score': 0.99642867, 'index': 16, 'word': '##HA', 'start': 43, 'end': 45}, {'entity': 'I-LOC', 'score': 0.9951683, 'index': 17, 'word': '##SA', 'start': 45, 'end': 47}, {'entity': 'I-LOC', 'score': 0.99359447, 'index': 18, 'word': '##V', 'start': 47, 'end': 48}, {'entity': 'I-LOC', 'score': 0.9752637, 'index': 19, 'word': '##Y', 'start': 48, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9861733, 'index': 20, 'word': '##UR', 'start': 49, 'end': 51}, {'entity': 'I-LOC', 'score': 0.9961325, 'index': 21, 'word': '##T', 'start': 51, 'end': 52}, {'entity': 'I-LOC', 'score': 0.99978644, 'index': 23, 'word': 'Russia', 'start': 55, 'end': 61}, {'entity': 'I-MISC', 'score': 0.99903643, 'index': 33, 'word': 'Russian', 'start': 78, 'end': 85}, {'entity': 'I-PER', 'score': 0.99962056, 'index': 36, 'word': 'Alexander', 'start': 97, 'end': 106}, {'entity': 'I-PER', 'score': 0.9996712, 'index': 37, 'word': 'Le', 'start': 107, 'end': 109}, {'entity': 'I-PER', 'score': 0.99750024, 'index': 38, 'word': '##bed', 'start': 109, 'end': 112}, {'entity': 'I-MISC', 'score': 0.9976121, 'index': 40, 'word': 'Ch', 'start': 117, 'end': 119}, {'entity': 'I-MISC', 'score': 0.9955825, 'index': 41, 'word': '##ech', 'start': 119, 'end': 122}, {'entity': 'I-MISC', 'score': 0.99662316, 'index': 42, 'word': '##en', 'start': 122, 'end': 124}, {'entity': 'I-PER', 'score': 0.9996718, 'index': 49, 'word': 'As', 'start': 152, 'end': 154}, {'entity': 'I-PER', 'score': 0.99934286, 'index': 50, 'word': '##lan', 'start': 154, 'end': 157}, {'entity': 'I-PER', 'score': 0.9997975, 'index': 51, 'word': 'Mask', 'start': 158, 'end': 162}, {'entity': 'I-PER', 'score': 0.98537517, 'index': 52, 'word': '##had', 'start': 162, 'end': 165}, {'entity': 'I-PER', 'score': 0.9925452, 'index': 53, 'word': '##ov', 'start': 165, 'end': 167}, {'entity': 'I-PER', 'score': 0.9997236, 'index': 76, 'word': 'Le', 'start': 269, 'end': 271}, {'entity': 'I-PER', 'score': 0.9941884, 'index': 77, 'word': '##bed', 'start': 271, 'end': 274}, {'entity': 'I-LOC', 'score': 0.9993463, 'index': 82, 'word': 'Ch', 'start': 291, 'end': 293}, {'entity': 'I-LOC', 'score': 0.99931955, 'index': 83, 'word': '##ech', 'start': 293, 'end': 296}, {'entity': 'I-LOC', 'score': 0.99961203, 'index': 84, 'word': '##nya', 'start': 296, 'end': 299}, {'entity': 'I-PER', 'score': 0.9996784, 'index': 123, 'word': 'Le', 'start': 478, 'end': 480}, {'entity': 'I-PER', 'score': 0.9884122, 'index': 124, 'word': '##bed', 'start': 480, 'end': 483}, {'entity': 'I-PER', 'score': 0.99973065, 'index': 126, 'word': 'Mask', 'start': 488, 'end': 492}, {'entity': 'I-PER', 'score': 0.96879077, 'index': 127, 'word': '##had', 'start': 492, 'end': 495}, {'entity': 'I-PER', 'score': 0.9412078, 'index': 128, 'word': '##ov', 'start': 495, 'end': 497}]
[{'entity': 'I-MISC', 'score': 0.9992756, 'index': 1, 'word': 'Russian', 'start': 0, 'end': 7}, {'entity': 'I-LOC', 'score': 0.99873537, 'index': 15, 'word': 'M', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.99486333, 'index': 16, 'word': '##OS', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.9850788, 'index': 17, 'word': '##CO', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.99650156, 'index': 18, 'word': '##W', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.99971455, 'index': 29, 'word': 'Moscow', 'start': 77, 'end': 83}, {'entity': 'I-ORG', 'score': 0.9992275, 'index': 57, 'word': 'Inter', 'start': 231, 'end': 236}, {'entity': 'I-ORG', 'score': 0.9928924, 'index': 58, 'word': '##fa', 'start': 236, 'end': 238}, {'entity': 'I-ORG', 'score': 0.9978551, 'index': 59, 'word': '##x', 'start': 238, 'end': 239}, {'entity': 'I-ORG', 'score': 0.99952304, 'index': 68, 'word': 'Inter', 'start': 264, 'end': 269}, {'entity': 'I-ORG', 'score': 0.9947417, 'index': 69, 'word': '##fa', 'start': 269, 'end': 271}, {'entity': 'I-ORG', 'score': 0.99613166, 'index': 70, 'word': '##x', 'start': 271, 'end': 272}, {'entity': 'I-PER', 'score': 0.9990922, 'index': 73, 'word': 'Olga', 'start': 284, 'end': 288}, {'entity': 'I-PER', 'score': 0.99955875, 'index': 74, 'word': 'La', 'start': 289, 'end': 291}, {'entity': 'I-PER', 'score': 0.9986488, 'index': 75, 'word': '##vre', 'start': 291, 'end': 294}, {'entity': 'I-PER', 'score': 0.9975441, 'index': 76, 'word': '##nt', 'start': 294, 'end': 296}, {'entity': 'I-PER', 'score': 0.9949184, 'index': 77, 'word': '##yev', 'start': 296, 'end': 299}, {'entity': 'I-PER', 'score': 0.9480679, 'index': 78, 'word': '##a', 'start': 299, 'end': 300}, {'entity': 'I-PER', 'score': 0.99946266, 'index': 101, 'word': 'Vale', 'start': 398, 'end': 402}, {'entity': 'I-PER', 'score': 0.9990075, 'index': 102, 'word': '##ry', 'start': 402, 'end': 404}, {'entity': 'I-PER', 'score': 0.9991271, 'index': 103, 'word': 'Ivan', 'start': 405, 'end': 409}, {'entity': 'I-PER', 'score': 0.99916446, 'index': 104, 'word': '##kov', 'start': 409, 'end': 412}, {'entity': 'I-LOC', 'score': 0.9997619, 'index': 112, 'word': 'Moscow', 'start': 445, 'end': 451}, {'entity': 'I-PER', 'score': 0.9995672, 'index': 136, 'word': 'Ivan', 'start': 533, 'end': 537}, {'entity': 'I-PER', 'score': 0.9961247, 'index': 137, 'word': '##kov', 'start': 537, 'end': 540}, {'entity': 'I-PER', 'score': 0.99949765, 'index': 144, 'word': 'La', 'start': 579, 'end': 581}, {'entity': 'I-PER', 'score': 0.9966305, 'index': 145, 'word': '##vre', 'start': 581, 'end': 584}, {'entity': 'I-PER', 'score': 0.99315965, 'index': 146, 'word': '##nt', 'start': 584, 'end': 586}, {'entity': 'I-PER', 'score': 0.98310363, 'index': 147, 'word': '##yev', 'start': 586, 'end': 589}, {'entity': 'I-PER', 'score': 0.5295652, 'index': 148, 'word': '##a', 'start': 589, 'end': 590}, {'entity': 'I-ORG', 'score': 0.9991879, 'index': 165, 'word': 'Inter', 'start': 638, 'end': 643}, {'entity': 'I-ORG', 'score': 0.99203193, 'index': 166, 'word': '##fa', 'start': 643, 'end': 645}, {'entity': 'I-ORG', 'score': 0.99099755, 'index': 167, 'word': '##x', 'start': 645, 'end': 646}, {'entity': 'I-PER', 'score': 0.9991924, 'index': 169, 'word': 'Lev', 'start': 654, 'end': 657}, {'entity': 'I-PER', 'score': 0.98964393, 'index': 170, 'word': '##rent', 'start': 657, 'end': 661}, {'entity': 'I-PER', 'score': 0.9564114, 'index': 171, 'word': '##yev', 'start': 661, 'end': 664}, {'entity': 'I-PER', 'score': 0.7420843, 'index': 172, 'word': '##a', 'start': 664, 'end': 665}]
[{'entity': 'I-ORG', 'score': 0.99933726, 'index': 1, 'word': 'Co', 'start': 0, 'end': 2}, {'entity': 'I-ORG', 'score': 0.99906784, 'index': 2, 'word': '##fine', 'start': 2, 'end': 6}, {'entity': 'I-ORG', 'score': 0.9986578, 'index': 3, 'word': '##c', 'start': 6, 'end': 7}, {'entity': 'I-ORG', 'score': 0.7022968, 'index': 16, 'word': 'Em', 'start': 37, 'end': 39}, {'entity': 'I-PER', 'score': 0.92734355, 'index': 17, 'word': '##ese', 'start': 39, 'end': 42}, {'entity': 'I-ORG', 'score': 0.67833066, 'index': 18, 'word': 'Bart', 'start': 43, 'end': 47}, {'entity': 'I-ORG', 'score': 0.7594687, 'index': 19, 'word': '##ha', 'start': 47, 'end': 49}, {'entity': 'I-LOC', 'score': 0.99696535, 'index': 24, 'word': 'B', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9861458, 'index': 25, 'word': '##U', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.97746813, 'index': 26, 'word': '##DA', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.8903693, 'index': 27, 'word': '##P', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.6596834, 'index': 28, 'word': '##ES', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9058403, 'index': 29, 'word': '##T', 'start': 62, 'end': 63}, {'entity': 'I-MISC', 'score': 0.9967393, 'index': 43, 'word': 'France', 'start': 90, 'end': 96}, {'entity': 'I-ORG', 'score': 0.9995839, 'index': 49, 'word': 'Co', 'start': 134, 'end': 136}, {'entity': 'I-ORG', 'score': 0.99957615, 'index': 50, 'word': '##fine', 'start': 136, 'end': 140}, {'entity': 'I-ORG', 'score': 0.99947494, 'index': 51, 'word': '##c', 'start': 140, 'end': 141}, {'entity': 'I-ORG', 'score': 0.99913305, 'index': 52, 'word': 'S', 'start': 142, 'end': 143}, {'entity': 'I-ORG', 'score': 0.99513406, 'index': 54, 'word': 'A', 'start': 144, 'end': 145}, {'entity': 'I-ORG', 'score': 0.99836737, 'index': 60, 'word': 'Budapest', 'start': 170, 'end': 178}, {'entity': 'I-ORG', 'score': 0.9986261, 'index': 61, 'word': 'Stock', 'start': 179, 'end': 184}, {'entity': 'I-ORG', 'score': 0.99734277, 'index': 62, 'word': 'Exchange', 'start': 185, 'end': 193}, {'entity': 'I-ORG', 'score': 0.9930392, 'index': 64, 'word': 'BS', 'start': 196, 'end': 198}, {'entity': 'I-ORG', 'score': 0.993561, 'index': 65, 'word': '##E', 'start': 198, 'end': 199}, {'entity': 'I-ORG', 'score': 0.9992644, 'index': 83, 'word': 'Co', 'start': 271, 'end': 273}, {'entity': 'I-ORG', 'score': 0.9990753, 'index': 84, 'word': '##fine', 'start': 273, 'end': 277}, {'entity': 'I-ORG', 'score': 0.9989291, 'index': 85, 'word': '##c', 'start': 277, 'end': 278}, {'entity': 'I-MISC', 'score': 0.7585837, 'index': 97, 'word': 'G', 'start': 311, 'end': 312}, {'entity': 'I-MISC', 'score': 0.5904207, 'index': 98, 'word': '##DR', 'start': 312, 'end': 314}, {'entity': 'I-ORG', 'score': 0.69775903, 'index': 111, 'word': 'BS', 'start': 349, 'end': 351}, {'entity': 'I-ORG', 'score': 0.9993099, 'index': 137, 'word': 'Co', 'start': 457, 'end': 459}, {'entity': 'I-ORG', 'score': 0.99885654, 'index': 138, 'word': '##fine', 'start': 459, 'end': 463}, {'entity': 'I-ORG', 'score': 0.99793315, 'index': 139, 'word': '##c', 'start': 463, 'end': 464}, {'entity': 'I-PER', 'score': 0.9992111, 'index': 141, 'word': 'Stephen', 'start': 469, 'end': 476}, {'entity': 'I-PER', 'score': 0.99959856, 'index': 142, 'word': 'Fr', 'start': 477, 'end': 479}, {'entity': 'I-PER', 'score': 0.9981487, 'index': 143, 'word': '##ater', 'start': 479, 'end': 483}, {'entity': 'I-LOC', 'score': 0.9992785, 'index': 151, 'word': 'Vienna', 'start': 525, 'end': 531}, {'entity': 'I-MISC', 'score': 0.99921227, 'index': 197, 'word': 'French', 'start': 735, 'end': 741}, {'entity': 'I-PER', 'score': 0.99868757, 'index': 208, 'word': 'Fr', 'start': 776, 'end': 778}, {'entity': 'I-PER', 'score': 0.97007936, 'index': 209, 'word': '##ater', 'start': 778, 'end': 782}, {'entity': 'I-PER', 'score': 0.9982918, 'index': 243, 'word': 'Fr', 'start': 916, 'end': 918}, {'entity': 'I-PER', 'score': 0.9450167, 'index': 244, 'word': '##ater', 'start': 918, 'end': 922}, {'entity': 'I-ORG', 'score': 0.9994211, 'index': 269, 'word': 'Co', 'start': 1025, 'end': 1027}, {'entity': 'I-ORG', 'score': 0.9991934, 'index': 270, 'word': '##fine', 'start': 1027, 'end': 1031}, {'entity': 'I-ORG', 'score': 0.9988882, 'index': 271, 'word': '##c', 'start': 1031, 'end': 1032}, {'entity': 'I-LOC', 'score': 0.99875236, 'index': 281, 'word': 'Budapest', 'start': 1076, 'end': 1084}, {'entity': 'I-PER', 'score': 0.9987295, 'index': 308, 'word': 'Fr', 'start': 1192, 'end': 1194}, {'entity': 'I-PER', 'score': 0.98226625, 'index': 309, 'word': '##ater', 'start': 1194, 'end': 1198}, {'entity': 'I-ORG', 'score': 0.99927217, 'index': 313, 'word': 'Co', 'start': 1216, 'end': 1218}, {'entity': 'I-ORG', 'score': 0.99848217, 'index': 314, 'word': '##fine', 'start': 1218, 'end': 1222}, {'entity': 'I-ORG', 'score': 0.9975677, 'index': 315, 'word': '##c', 'start': 1222, 'end': 1223}, {'entity': 'I-MISC', 'score': 0.5536869, 'index': 316, 'word': 'G', 'start': 1224, 'end': 1225}, {'entity': 'I-MISC', 'score': 0.62507963, 'index': 317, 'word': '##DR', 'start': 1225, 'end': 1227}, {'entity': 'I-PER', 'score': 0.9980179, 'index': 359, 'word': 'Fr', 'start': 1392, 'end': 1394}, {'entity': 'I-PER', 'score': 0.96784836, 'index': 360, 'word': '##ater', 'start': 1394, 'end': 1398}, {'entity': 'I-LOC', 'score': 0.9996362, 'index': 424, 'word': 'Hungary', 'start': 1675, 'end': 1682}, {'entity': 'I-LOC', 'score': 0.9994067, 'index': 426, 'word': 'Poland', 'start': 1685, 'end': 1691}, {'entity': 'I-MISC', 'score': 0.9972631, 'index': 429, 'word': 'Czech', 'start': 1700, 'end': 1705}, {'entity': 'I-LOC', 'score': 0.99729425, 'index': 430, 'word': 'Republic', 'start': 1706, 'end': 1714}, {'entity': 'I-MISC', 'score': 0.99884295, 'index': 443, 'word': 'French', 'start': 1778, 'end': 1784}, {'entity': 'I-MISC', 'score': 0.9990619, 'index': 479, 'word': 'French', 'start': 1915, 'end': 1921}]
[{'entity': 'I-LOC', 'score': 0.99958855, 'index': 1, 'word': 'Romania', 'start': 0, 'end': 7}, {'entity': 'I-LOC', 'score': 0.99752, 'index': 21, 'word': 'B', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.96952057, 'index': 22, 'word': '##UC', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9902418, 'index': 23, 'word': '##HA', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.97993463, 'index': 24, 'word': '##RE', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9939521, 'index': 25, 'word': '##ST', 'start': 64, 'end': 66}, {'entity': 'I-ORG', 'score': 0.9995012, 'index': 36, 'word': 'National', 'start': 87, 'end': 95}, {'entity': 'I-ORG', 'score': 0.99901044, 'index': 37, 'word': 'Bank', 'start': 96, 'end': 100}, {'entity': 'I-ORG', 'score': 0.99828124, 'index': 38, 'word': 'of', 'start': 101, 'end': 103}, {'entity': 'I-ORG', 'score': 0.9957064, 'index': 39, 'word': 'Romania', 'start': 104, 'end': 111}, {'entity': 'I-ORG', 'score': 0.9995041, 'index': 41, 'word': 'B', 'start': 114, 'end': 115}, {'entity': 'I-ORG', 'score': 0.9994128, 'index': 42, 'word': '##NR', 'start': 115, 'end': 117}, {'entity': 'I-ORG', 'score': 0.99949765, 'index': 110, 'word': 'B', 'start': 394, 'end': 395}, {'entity': 'I-ORG', 'score': 0.9987826, 'index': 111, 'word': '##NR', 'start': 395, 'end': 397}, {'entity': 'I-ORG', 'score': 0.99967873, 'index': 191, 'word': 'Bucharest', 'start': 705, 'end': 714}, {'entity': 'I-ORG', 'score': 0.999546, 'index': 192, 'word': 'News', 'start': 715, 'end': 719}, {'entity': 'I-ORG', 'score': 0.9991279, 'index': 193, 'word': '##room', 'start': 719, 'end': 723}]
[{'entity': 'I-MISC', 'score': 0.99944156, 'index': 9, 'word': 'Colombian', 'start': 28, 'end': 37}, {'entity': 'I-LOC', 'score': 0.99798644, 'index': 16, 'word': 'B', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9968726, 'index': 17, 'word': '##O', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.91886955, 'index': 18, 'word': '##G', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9874237, 'index': 19, 'word': '##OT', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9972204, 'index': 20, 'word': '##A', 'start': 61, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9998622, 'index': 22, 'word': 'Colombia', 'start': 65, 'end': 73}, {'entity': 'I-MISC', 'score': 0.8806954, 'index': 39, 'word': 'C', 'start': 132, 'end': 133}, {'entity': 'I-LOC', 'score': 0.99985814, 'index': 61, 'word': 'Colombia', 'start': 238, 'end': 246}, {'entity': 'I-ORG', 'score': 0.98554176, 'index': 85, 'word': 'Municipal', 'start': 345, 'end': 354}, {'entity': 'I-ORG', 'score': 0.9962793, 'index': 86, 'word': 'Police', 'start': 355, 'end': 361}, {'entity': 'I-ORG', 'score': 0.9995999, 'index': 88, 'word': 'Re', 'start': 367, 'end': 369}, {'entity': 'I-ORG', 'score': 0.9979462, 'index': 89, 'word': '##uters', 'start': 369, 'end': 374}, {'entity': 'I-LOC', 'score': 0.96759987, 'index': 107, 'word': 'Casa', 'start': 469, 'end': 473}, {'entity': 'I-LOC', 'score': 0.9894498, 'index': 108, 'word': 'de', 'start': 474, 'end': 476}, {'entity': 'I-LOC', 'score': 0.9382094, 'index': 109, 'word': 'Na', 'start': 477, 'end': 479}, {'entity': 'I-LOC', 'score': 0.9594528, 'index': 110, 'word': '##rino', 'start': 479, 'end': 483}, {'entity': 'I-LOC', 'score': 0.99934715, 'index': 114, 'word': 'Bo', 'start': 507, 'end': 509}, {'entity': 'I-LOC', 'score': 0.99967325, 'index': 115, 'word': '##got', 'start': 509, 'end': 512}, {'entity': 'I-LOC', 'score': 0.99961984, 'index': 116, 'word': '##a', 'start': 512, 'end': 513}, {'entity': 'I-MISC', 'score': 0.84937215, 'index': 193, 'word': 'C', 'start': 860, 'end': 861}]
[{'entity': 'I-LOC', 'score': 0.99881566, 'index': 5, 'word': 'Sur', 'start': 32, 'end': 35}, {'entity': 'I-LOC', 'score': 0.97226846, 'index': 6, 'word': '##ina', 'start': 35, 'end': 38}, {'entity': 'I-LOC', 'score': 0.99746907, 'index': 7, 'word': '##m', 'start': 38, 'end': 39}, {'entity': 'I-LOC', 'score': 0.9921071, 'index': 16, 'word': 'PA', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9828718, 'index': 17, 'word': '##RA', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.989574, 'index': 18, 'word': '##MA', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9906418, 'index': 19, 'word': '##RI', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.99295545, 'index': 20, 'word': '##BO', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.99947876, 'index': 22, 'word': 'Sur', 'start': 69, 'end': 72}, {'entity': 'I-LOC', 'score': 0.9867143, 'index': 23, 'word': '##ina', 'start': 72, 'end': 75}, {'entity': 'I-LOC', 'score': 0.99943894, 'index': 24, 'word': '##m', 'start': 75, 'end': 76}, {'entity': 'I-MISC', 'score': 0.9962509, 'index': 39, 'word': 'Sur', 'start': 111, 'end': 114}, {'entity': 'I-MISC', 'score': 0.98894894, 'index': 40, 'word': '##iname', 'start': 114, 'end': 119}, {'entity': 'I-MISC', 'score': 0.9981054, 'index': 41, 'word': '##se', 'start': 119, 'end': 121}, {'entity': 'I-PER', 'score': 0.9995834, 'index': 44, 'word': 'Ron', 'start': 139, 'end': 142}, {'entity': 'I-PER', 'score': 0.99961287, 'index': 45, 'word': '##ny', 'start': 142, 'end': 144}, {'entity': 'I-PER', 'score': 0.9998037, 'index': 46, 'word': 'B', 'start': 145, 'end': 146}, {'entity': 'I-PER', 'score': 0.99123174, 'index': 47, 'word': '##run', 'start': 146, 'end': 149}, {'entity': 'I-PER', 'score': 0.98358595, 'index': 48, 'word': '##s', 'start': 149, 'end': 150}, {'entity': 'I-PER', 'score': 0.8633985, 'index': 49, 'word': '##wi', 'start': 150, 'end': 152}, {'entity': 'I-PER', 'score': 0.99615496, 'index': 50, 'word': '##jk', 'start': 152, 'end': 154}, {'entity': 'I-PER', 'score': 0.9996487, 'index': 70, 'word': 'B', 'start': 245, 'end': 246}, {'entity': 'I-PER', 'score': 0.989342, 'index': 71, 'word': '##run', 'start': 246, 'end': 249}, {'entity': 'I-PER', 'score': 0.9884476, 'index': 72, 'word': '##s', 'start': 249, 'end': 250}, {'entity': 'I-PER', 'score': 0.8131985, 'index': 73, 'word': '##wi', 'start': 250, 'end': 252}, {'entity': 'I-PER', 'score': 0.98147285, 'index': 74, 'word': '##jk', 'start': 252, 'end': 254}, {'entity': 'I-PER', 'score': 0.99947566, 'index': 84, 'word': 'Freddy', 'start': 300, 'end': 306}, {'entity': 'I-PER', 'score': 0.9997398, 'index': 85, 'word': 'Pi', 'start': 307, 'end': 309}, {'entity': 'I-PER', 'score': 0.99935406, 'index': 86, 'word': '##nas', 'start': 309, 'end': 312}, {'entity': 'I-MISC', 'score': 0.99333644, 'index': 89, 'word': 'Sur', 'start': 317, 'end': 320}, {'entity': 'I-MISC', 'score': 0.9734899, 'index': 90, 'word': '##iname', 'start': 320, 'end': 325}, {'entity': 'I-MISC', 'score': 0.9781123, 'index': 91, 'word': '##se', 'start': 325, 'end': 327}, {'entity': 'I-LOC', 'score': 0.99978083, 'index': 97, 'word': 'Netherlands', 'start': 350, 'end': 361}, {'entity': 'I-PER', 'score': 0.9996989, 'index': 100, 'word': 'B', 'start': 372, 'end': 373}, {'entity': 'I-PER', 'score': 0.99135476, 'index': 101, 'word': '##run', 'start': 373, 'end': 376}, {'entity': 'I-PER', 'score': 0.99243027, 'index': 102, 'word': '##s', 'start': 376, 'end': 377}, {'entity': 'I-PER', 'score': 0.96324736, 'index': 103, 'word': '##wi', 'start': 377, 'end': 379}, {'entity': 'I-PER', 'score': 0.9931416, 'index': 104, 'word': '##jk', 'start': 379, 'end': 381}, {'entity': 'I-LOC', 'score': 0.99238914, 'index': 122, 'word': 'Moe', 'start': 446, 'end': 449}, {'entity': 'I-LOC', 'score': 0.9959765, 'index': 123, 'word': '##ngo', 'start': 449, 'end': 452}, {'entity': 'I-LOC', 'score': 0.9987601, 'index': 132, 'word': 'Para', 'start': 480, 'end': 484}, {'entity': 'I-LOC', 'score': 0.9904529, 'index': 133, 'word': '##mar', 'start': 484, 'end': 487}, {'entity': 'I-LOC', 'score': 0.9626162, 'index': 134, 'word': '##ib', 'start': 487, 'end': 489}, {'entity': 'I-LOC', 'score': 0.9984999, 'index': 135, 'word': '##o', 'start': 489, 'end': 490}, {'entity': 'I-PER', 'score': 0.99973375, 'index': 141, 'word': 'B', 'start': 498, 'end': 499}, {'entity': 'I-PER', 'score': 0.9964845, 'index': 142, 'word': '##run', 'start': 499, 'end': 502}, {'entity': 'I-PER', 'score': 0.9945827, 'index': 143, 'word': '##s', 'start': 502, 'end': 503}, {'entity': 'I-PER', 'score': 0.95330477, 'index': 144, 'word': '##wi', 'start': 503, 'end': 505}, {'entity': 'I-PER', 'score': 0.9945668, 'index': 145, 'word': '##jk', 'start': 505, 'end': 507}, {'entity': 'I-PER', 'score': 0.99963725, 'index': 157, 'word': 'Pi', 'start': 563, 'end': 565}, {'entity': 'I-PER', 'score': 0.9950237, 'index': 158, 'word': '##nas', 'start': 565, 'end': 568}, {'entity': 'I-PER', 'score': 0.99969697, 'index': 180, 'word': 'B', 'start': 653, 'end': 654}, {'entity': 'I-PER', 'score': 0.9918601, 'index': 181, 'word': '##run', 'start': 654, 'end': 657}, {'entity': 'I-PER', 'score': 0.9847438, 'index': 182, 'word': '##s', 'start': 657, 'end': 658}, {'entity': 'I-PER', 'score': 0.84334606, 'index': 183, 'word': '##wi', 'start': 658, 'end': 660}, {'entity': 'I-PER', 'score': 0.977191, 'index': 184, 'word': '##jk', 'start': 660, 'end': 662}, {'entity': 'I-PER', 'score': 0.9997147, 'index': 220, 'word': 'B', 'start': 805, 'end': 806}, {'entity': 'I-PER', 'score': 0.99626887, 'index': 221, 'word': '##run', 'start': 806, 'end': 809}, {'entity': 'I-PER', 'score': 0.9961218, 'index': 222, 'word': '##s', 'start': 809, 'end': 810}, {'entity': 'I-PER', 'score': 0.93421274, 'index': 223, 'word': '##wi', 'start': 810, 'end': 812}, {'entity': 'I-PER', 'score': 0.9920278, 'index': 224, 'word': '##jk', 'start': 812, 'end': 814}, {'entity': 'I-PER', 'score': 0.9975138, 'index': 236, 'word': 'Des', 'start': 870, 'end': 873}, {'entity': 'I-PER', 'score': 0.99586064, 'index': 237, 'word': '##i', 'start': 873, 'end': 874}, {'entity': 'I-PER', 'score': 0.9982443, 'index': 238, 'word': 'Bo', 'start': 875, 'end': 877}, {'entity': 'I-PER', 'score': 0.974132, 'index': 239, 'word': '##uters', 'start': 877, 'end': 882}, {'entity': 'I-PER', 'score': 0.99208635, 'index': 240, 'word': '##e', 'start': 882, 'end': 883}]
[{'entity': 'I-MISC', 'score': 0.9971872, 'index': 1, 'word': 'Cambodian', 'start': 0, 'end': 9}, {'entity': 'I-LOC', 'score': 0.99095446, 'index': 12, 'word': 'P', 'start': 54, 'end': 55}, {'entity': 'I-LOC', 'score': 0.8613091, 'index': 13, 'word': '##H', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.48891386, 'index': 14, 'word': '##N', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9934796, 'index': 15, 'word': '##OM', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.99001116, 'index': 16, 'word': 'P', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9510436, 'index': 17, 'word': '##EN', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9872731, 'index': 18, 'word': '##H', 'start': 63, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9989975, 'index': 28, 'word': 'Cambodia', 'start': 81, 'end': 89}, {'entity': 'I-PER', 'score': 0.998744, 'index': 32, 'word': 'Nor', 'start': 98, 'end': 101}, {'entity': 'I-PER', 'score': 0.9685905, 'index': 33, 'word': '##od', 'start': 101, 'end': 103}, {'entity': 'I-PER', 'score': 0.98041475, 'index': 34, 'word': '##om', 'start': 103, 'end': 105}, {'entity': 'I-PER', 'score': 0.998524, 'index': 35, 'word': 'Si', 'start': 106, 'end': 108}, {'entity': 'I-PER', 'score': 0.9592893, 'index': 36, 'word': '##han', 'start': 108, 'end': 111}, {'entity': 'I-PER', 'score': 0.84546626, 'index': 37, 'word': '##ou', 'start': 111, 'end': 113}, {'entity': 'I-PER', 'score': 0.8683229, 'index': 38, 'word': '##k', 'start': 113, 'end': 114}, {'entity': 'I-PER', 'score': 0.9993881, 'index': 62, 'word': 'He', 'start': 223, 'end': 225}, {'entity': 'I-PER', 'score': 0.9988423, 'index': 63, 'word': '##n', 'start': 225, 'end': 226}, {'entity': 'I-PER', 'score': 0.99936384, 'index': 64, 'word': 'V', 'start': 227, 'end': 228}, {'entity': 'I-PER', 'score': 0.9991992, 'index': 65, 'word': '##ip', 'start': 228, 'end': 230}, {'entity': 'I-PER', 'score': 0.9959402, 'index': 66, 'word': '##hea', 'start': 230, 'end': 233}, {'entity': 'I-PER', 'score': 0.9980794, 'index': 67, 'word': '##k', 'start': 233, 'end': 234}, {'entity': 'I-ORG', 'score': 0.99811965, 'index': 73, 'word': 'Ser', 'start': 258, 'end': 261}, {'entity': 'I-ORG', 'score': 0.78164667, 'index': 74, 'word': '##ei', 'start': 261, 'end': 263}, {'entity': 'I-ORG', 'score': 0.9912963, 'index': 75, 'word': '##phe', 'start': 263, 'end': 266}, {'entity': 'I-ORG', 'score': 0.99535155, 'index': 76, 'word': '##ap', 'start': 266, 'end': 268}, {'entity': 'I-ORG', 'score': 0.9970541, 'index': 77, 'word': 'T', 'start': 269, 'end': 270}, {'entity': 'I-ORG', 'score': 0.8498212, 'index': 78, 'word': '##hm', 'start': 270, 'end': 272}, {'entity': 'I-ORG', 'score': 0.9670194, 'index': 79, 'word': '##ei', 'start': 272, 'end': 274}, {'entity': 'I-ORG', 'score': 0.9995301, 'index': 81, 'word': 'New', 'start': 277, 'end': 280}, {'entity': 'I-ORG', 'score': 0.99897766, 'index': 82, 'word': 'Liberty', 'start': 281, 'end': 288}, {'entity': 'I-MISC', 'score': 0.9981944, 'index': 95, 'word': 'French', 'start': 345, 'end': 351}, {'entity': 'I-LOC', 'score': 0.9006024, 'index': 99, 'word': 'T', 'start': 365, 'end': 366}, {'entity': 'I-LOC', 'score': 0.68174917, 'index': 100, 'word': '##3', 'start': 366, 'end': 367}, {'entity': 'I-PER', 'score': 0.9977926, 'index': 113, 'word': 'Si', 'start': 444, 'end': 446}, {'entity': 'I-PER', 'score': 0.92880714, 'index': 114, 'word': '##han', 'start': 446, 'end': 449}, {'entity': 'I-PER', 'score': 0.7631515, 'index': 115, 'word': '##ou', 'start': 449, 'end': 451}, {'entity': 'I-PER', 'score': 0.8295542, 'index': 116, 'word': '##k', 'start': 451, 'end': 452}, {'entity': 'I-ORG', 'score': 0.9958967, 'index': 123, 'word': 'Supreme', 'start': 464, 'end': 471}, {'entity': 'I-ORG', 'score': 0.9962198, 'index': 124, 'word': 'Court', 'start': 472, 'end': 477}, {'entity': 'I-ORG', 'score': 0.99916875, 'index': 132, 'word': 'Khmer', 'start': 515, 'end': 520}, {'entity': 'I-ORG', 'score': 0.99945575, 'index': 133, 'word': 'Nation', 'start': 521, 'end': 527}, {'entity': 'I-ORG', 'score': 0.9994498, 'index': 134, 'word': 'Party', 'start': 528, 'end': 533}, {'entity': 'I-PER', 'score': 0.9991008, 'index': 186, 'word': 'He', 'start': 763, 'end': 765}, {'entity': 'I-PER', 'score': 0.99598014, 'index': 187, 'word': '##n', 'start': 765, 'end': 766}, {'entity': 'I-PER', 'score': 0.9985826, 'index': 188, 'word': 'V', 'start': 767, 'end': 768}, {'entity': 'I-PER', 'score': 0.9977927, 'index': 189, 'word': '##ip', 'start': 768, 'end': 770}, {'entity': 'I-PER', 'score': 0.9768574, 'index': 190, 'word': '##hea', 'start': 770, 'end': 773}, {'entity': 'I-PER', 'score': 0.988836, 'index': 191, 'word': '##k', 'start': 773, 'end': 774}, {'entity': 'I-PER', 'score': 0.9991296, 'index': 219, 'word': 'Si', 'start': 887, 'end': 889}, {'entity': 'I-PER', 'score': 0.9548967, 'index': 220, 'word': '##han', 'start': 889, 'end': 892}, {'entity': 'I-PER', 'score': 0.8439667, 'index': 221, 'word': '##ou', 'start': 892, 'end': 894}, {'entity': 'I-PER', 'score': 0.62757605, 'index': 222, 'word': '##k', 'start': 894, 'end': 895}, {'entity': 'I-PER', 'score': 0.9984357, 'index': 229, 'word': 'He', 'start': 919, 'end': 921}, {'entity': 'I-PER', 'score': 0.9950722, 'index': 230, 'word': '##n', 'start': 921, 'end': 922}, {'entity': 'I-PER', 'score': 0.9980562, 'index': 231, 'word': 'V', 'start': 923, 'end': 924}, {'entity': 'I-PER', 'score': 0.9970697, 'index': 232, 'word': '##ip', 'start': 924, 'end': 926}, {'entity': 'I-PER', 'score': 0.9761779, 'index': 233, 'word': '##hea', 'start': 926, 'end': 929}, {'entity': 'I-PER', 'score': 0.9835159, 'index': 234, 'word': '##k', 'start': 929, 'end': 930}, {'entity': 'I-ORG', 'score': 0.9989662, 'index': 239, 'word': 'K', 'start': 951, 'end': 952}, {'entity': 'I-ORG', 'score': 0.99824405, 'index': 240, 'word': '##NP', 'start': 952, 'end': 954}, {'entity': 'I-PER', 'score': 0.9991091, 'index': 244, 'word': 'Chan', 'start': 977, 'end': 981}, {'entity': 'I-PER', 'score': 0.9994498, 'index': 245, 'word': 'Rat', 'start': 982, 'end': 985}, {'entity': 'I-PER', 'score': 0.98433876, 'index': 246, 'word': '##tana', 'start': 985, 'end': 989}, {'entity': 'I-PER', 'score': 0.68925357, 'index': 273, 'word': 'Prince', 'start': 1082, 'end': 1088}, {'entity': 'I-PER', 'score': 0.99849606, 'index': 274, 'word': 'Nor', 'start': 1089, 'end': 1092}, {'entity': 'I-PER', 'score': 0.95696914, 'index': 275, 'word': '##od', 'start': 1092, 'end': 1094}, {'entity': 'I-PER', 'score': 0.9797553, 'index': 276, 'word': '##om', 'start': 1094, 'end': 1096}, {'entity': 'I-PER', 'score': 0.9975401, 'index': 277, 'word': 'Rana', 'start': 1097, 'end': 1101}, {'entity': 'I-PER', 'score': 0.7882814, 'index': 278, 'word': '##rid', 'start': 1101, 'end': 1104}, {'entity': 'I-PER', 'score': 0.9574682, 'index': 279, 'word': '##dh', 'start': 1104, 'end': 1106}, {'entity': 'I-PER', 'score': 0.99805176, 'index': 281, 'word': 'Hu', 'start': 1111, 'end': 1113}, {'entity': 'I-PER', 'score': 0.9876751, 'index': 282, 'word': '##n', 'start': 1113, 'end': 1114}, {'entity': 'I-PER', 'score': 0.9947909, 'index': 283, 'word': 'Sen', 'start': 1115, 'end': 1118}]
[{'entity': 'I-LOC', 'score': 0.99590933, 'index': 1, 'word': 'Far', 'start': 0, 'end': 3}, {'entity': 'I-LOC', 'score': 0.98176724, 'index': 2, 'word': 'East', 'start': 4, 'end': 8}, {'entity': 'I-MISC', 'score': 0.7357586, 'index': 5, 'word': 'Mo', 'start': 16, 'end': 18}, {'entity': 'I-LOC', 'score': 0.9180558, 'index': 17, 'word': 'Mi', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9453658, 'index': 18, 'word': '##shi', 'start': 57, 'end': 60}, {'entity': 'I-LOC', 'score': 0.792316, 'index': 19, 'word': 'Sara', 'start': 61, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9915535, 'index': 20, 'word': '##n', 'start': 65, 'end': 66}, {'entity': 'I-LOC', 'score': 0.99786085, 'index': 25, 'word': 'H', 'start': 72, 'end': 73}, {'entity': 'I-LOC', 'score': 0.98633516, 'index': 26, 'word': '##ON', 'start': 73, 'end': 75}, {'entity': 'I-LOC', 'score': 0.9962663, 'index': 27, 'word': '##G', 'start': 75, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9990631, 'index': 28, 'word': 'K', 'start': 77, 'end': 78}, {'entity': 'I-LOC', 'score': 0.97889906, 'index': 29, 'word': '##ON', 'start': 78, 'end': 80}, {'entity': 'I-LOC', 'score': 0.99789953, 'index': 30, 'word': '##G', 'start': 80, 'end': 81}, {'entity': 'I-LOC', 'score': 0.9987344, 'index': 40, 'word': 'Far', 'start': 98, 'end': 101}, {'entity': 'I-LOC', 'score': 0.99750453, 'index': 41, 'word': 'East', 'start': 102, 'end': 106}, {'entity': 'I-MISC', 'score': 0.9686025, 'index': 78, 'word': 'Southeast', 'start': 268, 'end': 277}, {'entity': 'I-MISC', 'score': 0.99638903, 'index': 79, 'word': 'Asian', 'start': 278, 'end': 283}, {'entity': 'I-LOC', 'score': 0.9998006, 'index': 130, 'word': 'Singapore', 'start': 512, 'end': 521}, {'entity': 'I-MISC', 'score': 0.9993419, 'index': 134, 'word': 'Australian', 'start': 535, 'end': 545}, {'entity': 'I-LOC', 'score': 0.9990778, 'index': 153, 'word': 'London', 'start': 625, 'end': 631}, {'entity': 'I-MISC', 'score': 0.9989924, 'index': 157, 'word': 'South', 'start': 646, 'end': 651}, {'entity': 'I-MISC', 'score': 0.9983352, 'index': 158, 'word': 'Korean', 'start': 652, 'end': 658}, {'entity': 'I-MISC', 'score': 0.9971877, 'index': 160, 'word': 'Indonesian', 'start': 663, 'end': 673}, {'entity': 'I-LOC', 'score': 0.99980026, 'index': 179, 'word': 'Singapore', 'start': 733, 'end': 742}, {'entity': 'I-MISC', 'score': 0.9989868, 'index': 198, 'word': 'South', 'start': 839, 'end': 844}, {'entity': 'I-MISC', 'score': 0.99922144, 'index': 199, 'word': 'Korean', 'start': 845, 'end': 851}, {'entity': 'I-LOC', 'score': 0.99929476, 'index': 211, 'word': 'Seoul', 'start': 918, 'end': 923}, {'entity': 'I-MISC', 'score': 0.9988986, 'index': 271, 'word': 'Koreans', 'start': 1154, 'end': 1161}, {'entity': 'I-MISC', 'score': 0.9988293, 'index': 298, 'word': 'Indonesian', 'start': 1250, 'end': 1260}, {'entity': 'I-LOC', 'score': 0.99982846, 'index': 339, 'word': 'Hong', 'start': 1404, 'end': 1408}, {'entity': 'I-LOC', 'score': 0.99980205, 'index': 340, 'word': 'Kong', 'start': 1409, 'end': 1413}, {'entity': 'I-LOC', 'score': 0.9994578, 'index': 345, 'word': 'New', 'start': 1433, 'end': 1436}, {'entity': 'I-LOC', 'score': 0.999316, 'index': 346, 'word': 'York', 'start': 1437, 'end': 1441}, {'entity': 'I-ORG', 'score': 0.99943, 'index': 378, 'word': 'International', 'start': 1547, 'end': 1560}, {'entity': 'I-ORG', 'score': 0.99956125, 'index': 379, 'word': 'Mon', 'start': 1561, 'end': 1564}, {'entity': 'I-ORG', 'score': 0.9810963, 'index': 380, 'word': '##eta', 'start': 1564, 'end': 1567}, {'entity': 'I-ORG', 'score': 0.9991211, 'index': 381, 'word': '##ry', 'start': 1567, 'end': 1569}, {'entity': 'I-ORG', 'score': 0.99934846, 'index': 382, 'word': 'Fund', 'start': 1570, 'end': 1574}, {'entity': 'I-MISC', 'score': 0.85282195, 'index': 402, 'word': 'S', 'start': 1663, 'end': 1664}, {'entity': 'I-MISC', 'score': 0.74217486, 'index': 462, 'word': 'S', 'start': 1912, 'end': 1913}]
[{'entity': 'I-LOC', 'score': 0.9994332, 'index': 1, 'word': 'Tripoli', 'start': 0, 'end': 7}, {'entity': 'I-PER', 'score': 0.99718934, 'index': 12, 'word': 'Mona', 'start': 47, 'end': 51}, {'entity': 'I-PER', 'score': 0.9975896, 'index': 13, 'word': 'El', 'start': 52, 'end': 54}, {'entity': 'I-PER', 'score': 0.83754677, 'index': 14, 'word': '##tah', 'start': 54, 'end': 57}, {'entity': 'I-PER', 'score': 0.8356222, 'index': 15, 'word': '##aw', 'start': 57, 'end': 59}, {'entity': 'I-PER', 'score': 0.5376344, 'index': 16, 'word': '##y', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9986426, 'index': 21, 'word': 'T', 'start': 66, 'end': 67}, {'entity': 'I-LOC', 'score': 0.98891187, 'index': 22, 'word': '##RI', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.9943916, 'index': 23, 'word': '##PO', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9831062, 'index': 24, 'word': '##L', 'start': 71, 'end': 72}, {'entity': 'I-LOC', 'score': 0.9965475, 'index': 25, 'word': '##I', 'start': 72, 'end': 73}, {'entity': 'I-MISC', 'score': 0.99815315, 'index': 35, 'word': 'Libyan', 'start': 90, 'end': 96}, {'entity': 'I-LOC', 'score': 0.9995121, 'index': 42, 'word': 'Tripoli', 'start': 128, 'end': 135}, {'entity': 'I-PER', 'score': 0.9992944, 'index': 56, 'word': 'Mu', 'start': 213, 'end': 215}, {'entity': 'I-PER', 'score': 0.9982516, 'index': 57, 'word': '##am', 'start': 215, 'end': 217}, {'entity': 'I-PER', 'score': 0.9991553, 'index': 58, 'word': '##mar', 'start': 217, 'end': 220}, {'entity': 'I-PER', 'score': 0.99905556, 'index': 59, 'word': 'G', 'start': 221, 'end': 222}, {'entity': 'I-PER', 'score': 0.9855439, 'index': 60, 'word': '##ad', 'start': 222, 'end': 224}, {'entity': 'I-PER', 'score': 0.77413356, 'index': 61, 'word': '##da', 'start': 224, 'end': 226}, {'entity': 'I-PER', 'score': 0.99301803, 'index': 62, 'word': '##fi', 'start': 226, 'end': 228}, {'entity': 'I-ORG', 'score': 0.99639976, 'index': 85, 'word': 'United', 'start': 330, 'end': 336}, {'entity': 'I-ORG', 'score': 0.9976255, 'index': 86, 'word': 'Nations', 'start': 337, 'end': 344}, {'entity': 'I-LOC', 'score': 0.9998109, 'index': 90, 'word': 'Libya', 'start': 367, 'end': 372}, {'entity': 'I-MISC', 'score': 0.9835316, 'index': 110, 'word': 'Pan', 'start': 468, 'end': 471}, {'entity': 'I-MISC', 'score': 0.91376317, 'index': 111, 'word': 'Am', 'start': 472, 'end': 474}, {'entity': 'I-LOC', 'score': 0.9943877, 'index': 114, 'word': 'Locke', 'start': 487, 'end': 492}, {'entity': 'I-LOC', 'score': 0.83029944, 'index': 115, 'word': '##rb', 'start': 492, 'end': 494}, {'entity': 'I-LOC', 'score': 0.9908338, 'index': 116, 'word': '##ie', 'start': 494, 'end': 496}, {'entity': 'I-LOC', 'score': 0.99976116, 'index': 118, 'word': 'Scotland', 'start': 499, 'end': 507}, {'entity': 'I-LOC', 'score': 0.9995409, 'index': 145, 'word': 'Tripoli', 'start': 617, 'end': 624}, {'entity': 'I-LOC', 'score': 0.99404824, 'index': 172, 'word': 'Green', 'start': 748, 'end': 753}, {'entity': 'I-LOC', 'score': 0.99381447, 'index': 173, 'word': 'Square', 'start': 754, 'end': 760}, {'entity': 'I-MISC', 'score': 0.99866676, 'index': 190, 'word': 'African', 'start': 825, 'end': 832}, {'entity': 'I-LOC', 'score': 0.9998443, 'index': 195, 'word': 'Niger', 'start': 849, 'end': 854}, {'entity': 'I-LOC', 'score': 0.99988663, 'index': 197, 'word': 'Guinea', 'start': 857, 'end': 863}, {'entity': 'I-LOC', 'score': 0.99984825, 'index': 199, 'word': 'Ghana', 'start': 868, 'end': 873}, {'entity': 'I-PER', 'score': 0.9991928, 'index': 229, 'word': 'G', 'start': 1003, 'end': 1004}, {'entity': 'I-PER', 'score': 0.9862444, 'index': 230, 'word': '##ad', 'start': 1004, 'end': 1006}, {'entity': 'I-PER', 'score': 0.80866134, 'index': 231, 'word': '##da', 'start': 1006, 'end': 1008}, {'entity': 'I-PER', 'score': 0.99529254, 'index': 232, 'word': '##fi', 'start': 1008, 'end': 1010}, {'entity': 'I-PER', 'score': 0.99847215, 'index': 236, 'word': 'Mohammed', 'start': 1026, 'end': 1034}, {'entity': 'I-PER', 'score': 0.9988638, 'index': 237, 'word': 'I', 'start': 1035, 'end': 1036}, {'entity': 'I-PER', 'score': 0.98824394, 'index': 238, 'word': '##dr', 'start': 1036, 'end': 1038}, {'entity': 'I-PER', 'score': 0.9880851, 'index': 239, 'word': '##is', 'start': 1038, 'end': 1040}, {'entity': 'I-PER', 'score': 0.99970573, 'index': 283, 'word': 'Same', 'start': 1213, 'end': 1217}, {'entity': 'I-PER', 'score': 0.9994153, 'index': 284, 'word': '##r', 'start': 1217, 'end': 1218}, {'entity': 'I-PER', 'score': 0.999778, 'index': 285, 'word': 'Am', 'start': 1219, 'end': 1221}, {'entity': 'I-PER', 'score': 0.9995441, 'index': 286, 'word': '##mar', 'start': 1221, 'end': 1224}, {'entity': 'I-PER', 'score': 0.9995819, 'index': 287, 'word': 'Sol', 'start': 1225, 'end': 1228}, {'entity': 'I-PER', 'score': 0.9988483, 'index': 288, 'word': '##iman', 'start': 1228, 'end': 1232}, {'entity': 'I-ORG', 'score': 0.99877614, 'index': 293, 'word': 'Re', 'start': 1245, 'end': 1247}, {'entity': 'I-ORG', 'score': 0.98495644, 'index': 294, 'word': '##uters', 'start': 1247, 'end': 1252}, {'entity': 'I-MISC', 'score': 0.9981481, 'index': 309, 'word': 'Libyan', 'start': 1302, 'end': 1308}, {'entity': 'I-MISC', 'score': 0.97170705, 'index': 340, 'word': 'Tripoli', 'start': 1425, 'end': 1432}, {'entity': 'I-PER', 'score': 0.9991572, 'index': 349, 'word': 'G', 'start': 1475, 'end': 1476}, {'entity': 'I-PER', 'score': 0.98476344, 'index': 350, 'word': '##ad', 'start': 1476, 'end': 1478}, {'entity': 'I-PER', 'score': 0.69215256, 'index': 351, 'word': '##da', 'start': 1478, 'end': 1480}, {'entity': 'I-PER', 'score': 0.9708916, 'index': 352, 'word': '##fi', 'start': 1480, 'end': 1482}, {'entity': 'I-LOC', 'score': 0.9973858, 'index': 366, 'word': 'Je', 'start': 1548, 'end': 1550}, {'entity': 'I-LOC', 'score': 0.9939551, 'index': 367, 'word': '##bel', 'start': 1550, 'end': 1553}, {'entity': 'I-LOC', 'score': 0.99691427, 'index': 368, 'word': 'al', 'start': 1554, 'end': 1556}, {'entity': 'I-LOC', 'score': 0.9380558, 'index': 369, 'word': '-', 'start': 1556, 'end': 1557}, {'entity': 'I-LOC', 'score': 0.9936407, 'index': 370, 'word': 'A', 'start': 1557, 'end': 1558}, {'entity': 'I-LOC', 'score': 0.99138016, 'index': 371, 'word': '##kh', 'start': 1558, 'end': 1560}, {'entity': 'I-LOC', 'score': 0.9955468, 'index': 372, 'word': '##dar', 'start': 1560, 'end': 1563}, {'entity': 'I-LOC', 'score': 0.99979633, 'index': 383, 'word': 'Egypt', 'start': 1601, 'end': 1606}, {'entity': 'I-MISC', 'score': 0.7285903, 'index': 394, 'word': '##azi', 'start': 1665, 'end': 1668}, {'entity': 'I-MISC', 'score': 0.9861551, 'index': 398, 'word': 'S', 'start': 1673, 'end': 1674}, {'entity': 'I-MISC', 'score': 0.9745317, 'index': 442, 'word': 'S', 'start': 1859, 'end': 1860}, {'entity': 'I-LOC', 'score': 0.9997776, 'index': 464, 'word': 'Sudan', 'start': 1959, 'end': 1964}, {'entity': 'I-MISC', 'score': 0.99702305, 'index': 467, 'word': 'Egyptian', 'start': 1972, 'end': 1980}, {'entity': 'I-MISC', 'score': 0.9831624, 'index': 472, 'word': 'S', 'start': 1993, 'end': 1994}]
[{'entity': 'I-LOC', 'score': 0.9990491, 'index': 4, 'word': 'Wall', 'start': 18, 'end': 22}, {'entity': 'I-LOC', 'score': 0.9990408, 'index': 5, 'word': 'Street', 'start': 23, 'end': 29}, {'entity': 'I-PER', 'score': 0.9988771, 'index': 16, 'word': 'Pierre', 'start': 64, 'end': 70}, {'entity': 'I-PER', 'score': 0.99730706, 'index': 17, 'word': 'Bel', 'start': 71, 'end': 74}, {'entity': 'I-PER', 'score': 0.9557208, 'index': 18, 'word': '##ec', 'start': 74, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9988186, 'index': 23, 'word': 'NE', 'start': 82, 'end': 84}, {'entity': 'I-LOC', 'score': 0.86708796, 'index': 24, 'word': '##W', 'start': 84, 'end': 85}, {'entity': 'I-LOC', 'score': 0.99914515, 'index': 25, 'word': 'Y', 'start': 86, 'end': 87}, {'entity': 'I-LOC', 'score': 0.8838771, 'index': 26, 'word': '##OR', 'start': 87, 'end': 89}, {'entity': 'I-LOC', 'score': 0.9991689, 'index': 27, 'word': '##K', 'start': 89, 'end': 90}, {'entity': 'I-LOC', 'score': 0.9989459, 'index': 38, 'word': 'Wall', 'start': 111, 'end': 115}, {'entity': 'I-LOC', 'score': 0.9990965, 'index': 39, 'word': 'Street', 'start': 116, 'end': 122}, {'entity': 'I-PER', 'score': 0.9997731, 'index': 68, 'word': 'Clinton', 'start': 247, 'end': 254}, {'entity': 'I-PER', 'score': 0.9994628, 'index': 70, 'word': 'Bob', 'start': 257, 'end': 260}, {'entity': 'I-PER', 'score': 0.9996145, 'index': 71, 'word': 'Do', 'start': 261, 'end': 263}, {'entity': 'I-PER', 'score': 0.99716383, 'index': 72, 'word': '##le', 'start': 263, 'end': 265}, {'entity': 'I-PER', 'score': 0.99934596, 'index': 74, 'word': 'Ross', 'start': 270, 'end': 274}, {'entity': 'I-PER', 'score': 0.9993079, 'index': 75, 'word': 'Per', 'start': 275, 'end': 278}, {'entity': 'I-PER', 'score': 0.99710804, 'index': 76, 'word': '##ot', 'start': 278, 'end': 280}, {'entity': 'I-ORG', 'score': 0.99956435, 'index': 146, 'word': 'Federal', 'start': 616, 'end': 623}, {'entity': 'I-ORG', 'score': 0.99908686, 'index': 147, 'word': 'Reserve', 'start': 624, 'end': 631}, {'entity': 'I-PER', 'score': 0.99968874, 'index': 200, 'word': 'Clinton', 'start': 894, 'end': 901}, {'entity': 'I-PER', 'score': 0.9989531, 'index': 202, 'word': 'Do', 'start': 906, 'end': 908}, {'entity': 'I-PER', 'score': 0.9860869, 'index': 203, 'word': '##le', 'start': 908, 'end': 910}, {'entity': 'I-PER', 'score': 0.9994485, 'index': 222, 'word': 'Hugh', 'start': 986, 'end': 990}, {'entity': 'I-PER', 'score': 0.99979645, 'index': 223, 'word': 'Johnson', 'start': 991, 'end': 998}, {'entity': 'I-ORG', 'score': 0.9988732, 'index': 229, 'word': 'First', 'start': 1029, 'end': 1034}, {'entity': 'I-ORG', 'score': 0.99949586, 'index': 230, 'word': 'Albany', 'start': 1035, 'end': 1041}, {'entity': 'I-ORG', 'score': 0.99874914, 'index': 231, 'word': 'Corp', 'start': 1042, 'end': 1046}, {'entity': 'I-LOC', 'score': 0.9964658, 'index': 238, 'word': 'Wall', 'start': 1063, 'end': 1067}, {'entity': 'I-LOC', 'score': 0.99729365, 'index': 239, 'word': 'Street', 'start': 1068, 'end': 1074}, {'entity': 'I-PER', 'score': 0.99881834, 'index': 357, 'word': 'Do', 'start': 1599, 'end': 1601}, {'entity': 'I-PER', 'score': 0.9815864, 'index': 358, 'word': '##le', 'start': 1601, 'end': 1603}, {'entity': 'I-PER', 'score': 0.999627, 'index': 391, 'word': 'Clinton', 'start': 1738, 'end': 1745}, {'entity': 'I-MISC', 'score': 0.4834032, 'index': 430, 'word': 'S', 'start': 1926, 'end': 1927}, {'entity': 'I-PER', 'score': 0.99960953, 'index': 432, 'word': 'Clinton', 'start': 1929, 'end': 1936}, {'entity': 'I-PER', 'score': 0.63316727, 'index': 434, 'word': 'Do', 'start': 1944, 'end': 1946}, {'entity': 'I-ORG', 'score': 0.8708047, 'index': 446, 'word': 'White', 'start': 1996, 'end': 2001}, {'entity': 'I-ORG', 'score': 0.97652006, 'index': 447, 'word': 'House', 'start': 2002, 'end': 2007}, {'entity': 'I-MISC', 'score': 0.50688535, 'index': 468, 'word': 'S', 'start': 2098, 'end': 2099}, {'entity': 'I-ORG', 'score': 0.5773329, 'index': 500, 'word': 'Wall', 'start': 2259, 'end': 2263}, {'entity': 'I-LOC', 'score': 0.94842386, 'index': 501, 'word': 'Street', 'start': 2264, 'end': 2270}, {'entity': 'I-LOC', 'score': 0.9852272, 'index': 506, 'word': 'Washington', 'start': 2292, 'end': 2302}]
[{'entity': 'I-PER', 'score': 0.9960329, 'index': 16, 'word': 'Glenn', 'start': 50, 'end': 55}, {'entity': 'I-PER', 'score': 0.9985247, 'index': 17, 'word': 'Some', 'start': 56, 'end': 60}, {'entity': 'I-PER', 'score': 0.9731154, 'index': 18, 'word': '##rville', 'start': 60, 'end': 66}, {'entity': 'I-LOC', 'score': 0.997787, 'index': 23, 'word': 'WA', 'start': 72, 'end': 74}, {'entity': 'I-LOC', 'score': 0.929836, 'index': 24, 'word': '##S', 'start': 74, 'end': 75}, {'entity': 'I-LOC', 'score': 0.9520616, 'index': 25, 'word': '##H', 'start': 75, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9653988, 'index': 26, 'word': '##ING', 'start': 76, 'end': 79}, {'entity': 'I-LOC', 'score': 0.9637991, 'index': 27, 'word': '##TO', 'start': 79, 'end': 81}, {'entity': 'I-LOC', 'score': 0.9932054, 'index': 28, 'word': '##N', 'start': 81, 'end': 82}, {'entity': 'I-LOC', 'score': 0.99919397, 'index': 48, 'word': 'Midwest', 'start': 159, 'end': 166}, {'entity': 'I-ORG', 'score': 0.9994616, 'index': 76, 'word': 'Commerce', 'start': 303, 'end': 311}, {'entity': 'I-ORG', 'score': 0.9992174, 'index': 77, 'word': 'Department', 'start': 312, 'end': 322}, {'entity': 'I-LOC', 'score': 0.9975714, 'index': 159, 'word': 'Chicago', 'start': 684, 'end': 691}, {'entity': 'I-LOC', 'score': 0.9986475, 'index': 216, 'word': 'Midwest', 'start': 959, 'end': 966}, {'entity': 'I-ORG', 'score': 0.99836034, 'index': 278, 'word': 'Federal', 'start': 1260, 'end': 1267}, {'entity': 'I-ORG', 'score': 0.9981213, 'index': 279, 'word': 'Reserve', 'start': 1268, 'end': 1275}, {'entity': 'I-PER', 'score': 0.9990393, 'index': 319, 'word': 'Lynn', 'start': 1463, 'end': 1467}, {'entity': 'I-PER', 'score': 0.9996908, 'index': 320, 'word': 'Re', 'start': 1468, 'end': 1470}, {'entity': 'I-PER', 'score': 0.99754673, 'index': 321, 'word': '##ase', 'start': 1470, 'end': 1473}, {'entity': 'I-PER', 'score': 0.99832004, 'index': 322, 'word': '##r', 'start': 1473, 'end': 1474}, {'entity': 'I-ORG', 'score': 0.9987166, 'index': 324, 'word': 'Barnett', 'start': 1478, 'end': 1485}, {'entity': 'I-ORG', 'score': 0.99719065, 'index': 325, 'word': 'Banks', 'start': 1486, 'end': 1491}, {'entity': 'I-ORG', 'score': 0.99896, 'index': 326, 'word': 'Inc', 'start': 1492, 'end': 1495}, {'entity': 'I-ORG', 'score': 0.57517695, 'index': 327, 'word': '.', 'start': 1495, 'end': 1496}, {'entity': 'I-LOC', 'score': 0.99776626, 'index': 329, 'word': 'Jacksonville', 'start': 1500, 'end': 1512}, {'entity': 'I-LOC', 'score': 0.9985253, 'index': 331, 'word': 'F', 'start': 1515, 'end': 1516}, {'entity': 'I-LOC', 'score': 0.99767, 'index': 332, 'word': '##la', 'start': 1516, 'end': 1518}, {'entity': 'I-LOC', 'score': 0.9949852, 'index': 344, 'word': 'Wall', 'start': 1556, 'end': 1560}, {'entity': 'I-LOC', 'score': 0.99200565, 'index': 345, 'word': 'Street', 'start': 1561, 'end': 1567}, {'entity': 'I-ORG', 'score': 0.99941313, 'index': 348, 'word': 'Fed', 'start': 1577, 'end': 1580}, {'entity': 'I-ORG', 'score': 0.995684, 'index': 391, 'word': 'Treasury', 'start': 1762, 'end': 1770}, {'entity': 'I-MISC', 'score': 0.929901, 'index': 429, 'word': 'Dow', 'start': 1927, 'end': 1930}, {'entity': 'I-ORG', 'score': 0.44181925, 'index': 457, 'word': 'S', 'start': 2027, 'end': 2028}, {'entity': 'I-ORG', 'score': 0.9469093, 'index': 464, 'word': 'Commerce', 'start': 2054, 'end': 2062}, {'entity': 'I-ORG', 'score': 0.99074066, 'index': 465, 'word': 'Department', 'start': 2063, 'end': 2073}, {'entity': 'I-ORG', 'score': 0.57747704, 'index': 498, 'word': 'S', 'start': 2240, 'end': 2241}]
[{'entity': 'I-MISC', 'score': 0.9987112, 'index': 1, 'word': 'Mexican', 'start': 0, 'end': 7}, {'entity': 'I-LOC', 'score': 0.9994319, 'index': 9, 'word': 'U', 'start': 33, 'end': 34}, {'entity': 'I-LOC', 'score': 0.9988997, 'index': 11, 'word': 'S', 'start': 35, 'end': 36}, {'entity': 'I-PER', 'score': 0.9989052, 'index': 17, 'word': 'Maggie', 'start': 44, 'end': 50}, {'entity': 'I-PER', 'score': 0.999658, 'index': 18, 'word': 'M', 'start': 51, 'end': 52}, {'entity': 'I-PER', 'score': 0.9894665, 'index': 19, 'word': '##c', 'start': 52, 'end': 53}, {'entity': 'I-PER', 'score': 0.96892047, 'index': 20, 'word': '##N', 'start': 53, 'end': 54}, {'entity': 'I-PER', 'score': 0.99893445, 'index': 21, 'word': '##eil', 'start': 54, 'end': 57}, {'entity': 'I-LOC', 'score': 0.99824286, 'index': 26, 'word': 'WA', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.8791304, 'index': 27, 'word': '##S', 'start': 65, 'end': 66}, {'entity': 'I-LOC', 'score': 0.9031706, 'index': 28, 'word': '##H', 'start': 66, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9710471, 'index': 29, 'word': '##ING', 'start': 67, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9379035, 'index': 30, 'word': '##TO', 'start': 70, 'end': 72}, {'entity': 'I-LOC', 'score': 0.98899126, 'index': 31, 'word': '##N', 'start': 72, 'end': 73}, {'entity': 'I-ORG', 'score': 0.9961302, 'index': 41, 'word': 'U', 'start': 90, 'end': 91}, {'entity': 'I-ORG', 'score': 0.99217117, 'index': 43, 'word': 'S', 'start': 92, 'end': 93}, {'entity': 'I-ORG', 'score': 0.99887806, 'index': 45, 'word': 'Agriculture', 'start': 95, 'end': 106}, {'entity': 'I-ORG', 'score': 0.9982768, 'index': 46, 'word': 'Department', 'start': 107, 'end': 117}, {'entity': 'I-MISC', 'score': 0.99874914, 'index': 51, 'word': 'Mexican', 'start': 145, 'end': 152}, {'entity': 'I-LOC', 'score': 0.9989926, 'index': 65, 'word': 'United', 'start': 216, 'end': 222}, {'entity': 'I-LOC', 'score': 0.9971495, 'index': 66, 'word': 'States', 'start': 223, 'end': 229}, {'entity': 'I-LOC', 'score': 0.9992736, 'index': 74, 'word': 'U', 'start': 261, 'end': 262}, {'entity': 'I-LOC', 'score': 0.99360764, 'index': 76, 'word': 'S', 'start': 263, 'end': 264}, {'entity': 'I-MISC', 'score': 0.99904937, 'index': 102, 'word': 'Mexican', 'start': 375, 'end': 382}, {'entity': 'I-PER', 'score': 0.9993703, 'index': 122, 'word': 'Paul', 'start': 452, 'end': 456}, {'entity': 'I-PER', 'score': 0.9997061, 'index': 123, 'word': 'Dr', 'start': 457, 'end': 459}, {'entity': 'I-PER', 'score': 0.970144, 'index': 124, 'word': '##az', 'start': 459, 'end': 461}, {'entity': 'I-PER', 'score': 0.996915, 'index': 125, 'word': '##ek', 'start': 461, 'end': 463}, {'entity': 'I-PER', 'score': 0.9989209, 'index': 133, 'word': 'Dan', 'start': 512, 'end': 515}, {'entity': 'I-PER', 'score': 0.9997271, 'index': 134, 'word': 'G', 'start': 516, 'end': 517}, {'entity': 'I-PER', 'score': 0.9007354, 'index': 135, 'word': '##lick', 'start': 517, 'end': 521}, {'entity': 'I-PER', 'score': 0.9838754, 'index': 136, 'word': '##man', 'start': 521, 'end': 524}, {'entity': 'I-PER', 'score': 0.9997031, 'index': 160, 'word': 'Dr', 'start': 621, 'end': 623}, {'entity': 'I-PER', 'score': 0.9492858, 'index': 161, 'word': '##az', 'start': 623, 'end': 625}, {'entity': 'I-PER', 'score': 0.99055064, 'index': 162, 'word': '##ek', 'start': 625, 'end': 627}, {'entity': 'I-ORG', 'score': 0.9992219, 'index': 193, 'word': 'Agriculture', 'start': 727, 'end': 738}, {'entity': 'I-ORG', 'score': 0.99900144, 'index': 194, 'word': 'Department', 'start': 739, 'end': 749}, {'entity': 'I-MISC', 'score': 0.99911696, 'index': 210, 'word': 'Mexican', 'start': 820, 'end': 827}, {'entity': 'I-MISC', 'score': 0.99906427, 'index': 231, 'word': 'Mexican', 'start': 902, 'end': 909}, {'entity': 'I-LOC', 'score': 0.8072132, 'index': 238, 'word': 'Northern', 'start': 942, 'end': 950}, {'entity': 'I-LOC', 'score': 0.95429575, 'index': 240, 'word': 'Northeastern', 'start': 955, 'end': 967}, {'entity': 'I-LOC', 'score': 0.998882, 'index': 260, 'word': 'U', 'start': 1057, 'end': 1058}, {'entity': 'I-LOC', 'score': 0.98183894, 'index': 262, 'word': 'S', 'start': 1059, 'end': 1060}, {'entity': 'I-LOC', 'score': 0.9996711, 'index': 275, 'word': 'California', 'start': 1112, 'end': 1122}, {'entity': 'I-LOC', 'score': 0.99930227, 'index': 281, 'word': 'California', 'start': 1130, 'end': 1140}, {'entity': 'I-LOC', 'score': 0.9985728, 'index': 304, 'word': 'U', 'start': 1252, 'end': 1253}, {'entity': 'I-LOC', 'score': 0.9965604, 'index': 306, 'word': 'S', 'start': 1254, 'end': 1255}, {'entity': 'I-MISC', 'score': 0.9986498, 'index': 312, 'word': 'Mexican', 'start': 1289, 'end': 1296}, {'entity': 'I-MISC', 'score': 0.99867237, 'index': 331, 'word': 'Mexican', 'start': 1366, 'end': 1373}, {'entity': 'I-ORG', 'score': 0.997664, 'index': 356, 'word': 'World', 'start': 1504, 'end': 1509}, {'entity': 'I-ORG', 'score': 0.99896, 'index': 357, 'word': 'Trade', 'start': 1510, 'end': 1515}, {'entity': 'I-ORG', 'score': 0.99807906, 'index': 358, 'word': 'Organisation', 'start': 1516, 'end': 1528}, {'entity': 'I-LOC', 'score': 0.9993057, 'index': 374, 'word': 'U', 'start': 1587, 'end': 1588}, {'entity': 'I-LOC', 'score': 0.9978707, 'index': 376, 'word': 'S', 'start': 1589, 'end': 1590}, {'entity': 'I-MISC', 'score': 0.9974032, 'index': 398, 'word': 'American', 'start': 1692, 'end': 1700}, {'entity': 'I-MISC', 'score': 0.53454596, 'index': 403, 'word': 'S', 'start': 1715, 'end': 1716}, {'entity': 'I-LOC', 'score': 0.9990834, 'index': 429, 'word': 'Mexico', 'start': 1823, 'end': 1829}, {'entity': 'I-MISC', 'score': 0.3943771, 'index': 447, 'word': 'S', 'start': 1888, 'end': 1889}, {'entity': 'I-MISC', 'score': 0.9983949, 'index': 449, 'word': 'Mexican', 'start': 1891, 'end': 1898}, {'entity': 'I-MISC', 'score': 0.99808335, 'index': 466, 'word': 'Mexican', 'start': 1979, 'end': 1986}, {'entity': 'I-LOC', 'score': 0.9713165, 'index': 468, 'word': 'U', 'start': 1991, 'end': 1992}, {'entity': 'I-MISC', 'score': 0.40891248, 'index': 470, 'word': 'S', 'start': 1993, 'end': 1994}, {'entity': 'I-MISC', 'score': 0.49060664, 'index': 477, 'word': 'S', 'start': 2021, 'end': 2022}, {'entity': 'I-LOC', 'score': 0.99700314, 'index': 480, 'word': 'California', 'start': 2028, 'end': 2038}, {'entity': 'I-ORG', 'score': 0.98953867, 'index': 484, 'word': 'Commission', 'start': 2047, 'end': 2057}, {'entity': 'I-ORG', 'score': 0.6243446, 'index': 507, 'word': 'Agriculture', 'start': 2161, 'end': 2172}, {'entity': 'I-ORG', 'score': 0.9771094, 'index': 508, 'word': 'Department', 'start': 2173, 'end': 2183}]
[{'entity': 'I-LOC', 'score': 0.9994136, 'index': 1, 'word': 'U', 'start': 0, 'end': 1}, {'entity': 'I-LOC', 'score': 0.997823, 'index': 3, 'word': 'S', 'start': 2, 'end': 3}, {'entity': 'I-PER', 'score': 0.8502723, 'index': 5, 'word': 'Cardinal', 'start': 5, 'end': 13}, {'entity': 'I-PER', 'score': 0.99968195, 'index': 6, 'word': 'Bernard', 'start': 14, 'end': 21}, {'entity': 'I-PER', 'score': 0.99718827, 'index': 7, 'word': '##in', 'start': 21, 'end': 23}, {'entity': 'I-LOC', 'score': 0.9977447, 'index': 17, 'word': 'CH', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9820338, 'index': 18, 'word': '##IC', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.95494527, 'index': 19, 'word': '##AG', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.99653095, 'index': 20, 'word': '##O', 'start': 62, 'end': 63}, {'entity': 'I-LOC', 'score': 0.99473095, 'index': 30, 'word': 'Chicago', 'start': 80, 'end': 87}, {'entity': 'I-PER', 'score': 0.99923015, 'index': 32, 'word': 'Joseph', 'start': 97, 'end': 103}, {'entity': 'I-PER', 'score': 0.99976367, 'index': 33, 'word': 'Bernard', 'start': 104, 'end': 111}, {'entity': 'I-PER', 'score': 0.9991854, 'index': 34, 'word': '##in', 'start': 111, 'end': 113}, {'entity': 'I-LOC', 'score': 0.9980236, 'index': 42, 'word': 'U', 'start': 143, 'end': 144}, {'entity': 'I-LOC', 'score': 0.9434361, 'index': 44, 'word': 'S', 'start': 145, 'end': 146}, {'entity': 'I-MISC', 'score': 0.9873159, 'index': 46, 'word': 'Roman', 'start': 148, 'end': 153}, {'entity': 'I-MISC', 'score': 0.9895209, 'index': 47, 'word': 'Catholic', 'start': 154, 'end': 162}, {'entity': 'I-PER', 'score': 0.9996886, 'index': 79, 'word': 'Bernard', 'start': 286, 'end': 293}, {'entity': 'I-PER', 'score': 0.99834955, 'index': 80, 'word': '##in', 'start': 293, 'end': 295}, {'entity': 'I-PER', 'score': 0.99966335, 'index': 175, 'word': 'Bernard', 'start': 702, 'end': 709}, {'entity': 'I-PER', 'score': 0.9945692, 'index': 176, 'word': '##in', 'start': 709, 'end': 711}, {'entity': 'I-LOC', 'score': 0.9979153, 'index': 190, 'word': 'Chicago', 'start': 757, 'end': 764}, {'entity': 'I-PER', 'score': 0.9996517, 'index': 375, 'word': 'Bernard', 'start': 1492, 'end': 1499}, {'entity': 'I-PER', 'score': 0.99531955, 'index': 376, 'word': '##in', 'start': 1499, 'end': 1501}, {'entity': 'I-MISC', 'score': 0.99785954, 'index': 510, 'word': 'Italian', 'start': 2075, 'end': 2082}]
[{'entity': 'I-ORG', 'score': 0.9946015, 'index': 1, 'word': 'Boat', 'start': 0, 'end': 4}, {'entity': 'I-ORG', 'score': 0.9895839, 'index': 2, 'word': '##men', 'start': 4, 'end': 7}, {'entity': 'I-ORG', 'score': 0.84695846, 'index': 3, 'word': "'", 'start': 8, 'end': 9}, {'entity': 'I-ORG', 'score': 0.9785538, 'index': 4, 'word': 's', 'start': 9, 'end': 10}, {'entity': 'I-PER', 'score': 0.9991209, 'index': 16, 'word': 'Brad', 'start': 48, 'end': 52}, {'entity': 'I-PER', 'score': 0.9945403, 'index': 17, 'word': 'Do', 'start': 53, 'end': 55}, {'entity': 'I-PER', 'score': 0.46753007, 'index': 18, 'word': '##rf', 'start': 55, 'end': 57}, {'entity': 'I-PER', 'score': 0.91810906, 'index': 19, 'word': '##man', 'start': 57, 'end': 60}, {'entity': 'I-LOC', 'score': 0.98985356, 'index': 24, 'word': 'CH', 'start': 66, 'end': 68}, {'entity': 'I-LOC', 'score': 0.59884274, 'index': 25, 'word': '##IC', 'start': 68, 'end': 70}, {'entity': 'I-ORG', 'score': 0.5196267, 'index': 26, 'word': '##AG', 'start': 70, 'end': 72}, {'entity': 'I-ORG', 'score': 0.9170573, 'index': 27, 'word': '##O', 'start': 72, 'end': 73}, {'entity': 'I-ORG', 'score': 0.99947697, 'index': 46, 'word': 'Boat', 'start': 132, 'end': 136}, {'entity': 'I-ORG', 'score': 0.99941754, 'index': 47, 'word': '##men', 'start': 136, 'end': 139}, {'entity': 'I-ORG', 'score': 0.9993656, 'index': 48, 'word': "'", 'start': 140, 'end': 141}, {'entity': 'I-ORG', 'score': 0.999343, 'index': 49, 'word': 's', 'start': 141, 'end': 142}, {'entity': 'I-ORG', 'score': 0.9993538, 'index': 50, 'word': 'Ban', 'start': 143, 'end': 146}, {'entity': 'I-ORG', 'score': 0.99831885, 'index': 51, 'word': '##cs', 'start': 146, 'end': 148}, {'entity': 'I-ORG', 'score': 0.99876606, 'index': 52, 'word': '##hare', 'start': 148, 'end': 152}, {'entity': 'I-ORG', 'score': 0.9990742, 'index': 53, 'word': '##s', 'start': 152, 'end': 153}, {'entity': 'I-ORG', 'score': 0.99929106, 'index': 54, 'word': 'Inc', 'start': 154, 'end': 157}, {'entity': 'I-ORG', 'score': 0.9997603, 'index': 57, 'word': 'Nations', 'start': 162, 'end': 169}, {'entity': 'I-ORG', 'score': 0.9996997, 'index': 58, 'word': '##B', 'start': 169, 'end': 170}, {'entity': 'I-ORG', 'score': 0.9982987, 'index': 59, 'word': '##an', 'start': 170, 'end': 172}, {'entity': 'I-ORG', 'score': 0.9995727, 'index': 60, 'word': '##k', 'start': 172, 'end': 173}, {'entity': 'I-ORG', 'score': 0.99948275, 'index': 61, 'word': 'Corp', 'start': 174, 'end': 178}, {'entity': 'I-LOC', 'score': 0.99826425, 'index': 73, 'word': 'Missouri', 'start': 228, 'end': 236}, {'entity': 'I-ORG', 'score': 0.99967873, 'index': 94, 'word': 'Nations', 'start': 332, 'end': 339}, {'entity': 'I-ORG', 'score': 0.99957794, 'index': 95, 'word': '##B', 'start': 339, 'end': 340}, {'entity': 'I-ORG', 'score': 0.9965417, 'index': 96, 'word': '##an', 'start': 340, 'end': 342}, {'entity': 'I-ORG', 'score': 0.99917954, 'index': 97, 'word': '##k', 'start': 342, 'end': 343}, {'entity': 'I-LOC', 'score': 0.9991499, 'index': 102, 'word': 'Midwest', 'start': 367, 'end': 374}, {'entity': 'I-PER', 'score': 0.999511, 'index': 116, 'word': 'Michael', 'start': 439, 'end': 446}, {'entity': 'I-PER', 'score': 0.99946135, 'index': 117, 'word': 'An', 'start': 447, 'end': 449}, {'entity': 'I-PER', 'score': 0.99485403, 'index': 118, 'word': '##cell', 'start': 449, 'end': 453}, {'entity': 'I-ORG', 'score': 0.9995265, 'index': 124, 'word': 'Edward', 'start': 484, 'end': 490}, {'entity': 'I-ORG', 'score': 0.9994717, 'index': 125, 'word': 'D', 'start': 491, 'end': 492}, {'entity': 'I-ORG', 'score': 0.9951385, 'index': 126, 'word': '.', 'start': 492, 'end': 493}, {'entity': 'I-ORG', 'score': 0.99958533, 'index': 127, 'word': 'Jones', 'start': 494, 'end': 499}, {'entity': 'I-ORG', 'score': 0.99898726, 'index': 128, 'word': '&', 'start': 500, 'end': 501}, {'entity': 'I-ORG', 'score': 0.999193, 'index': 129, 'word': 'Co', 'start': 502, 'end': 504}, {'entity': 'I-LOC', 'score': 0.99887055, 'index': 144, 'word': 'Midwest', 'start': 557, 'end': 564}, {'entity': 'I-ORG', 'score': 0.9985519, 'index': 151, 'word': 'Me', 'start': 589, 'end': 591}, {'entity': 'I-ORG', 'score': 0.99571323, 'index': 152, 'word': '##rca', 'start': 591, 'end': 594}, {'entity': 'I-ORG', 'score': 0.994756, 'index': 153, 'word': '##nti', 'start': 594, 'end': 597}, {'entity': 'I-ORG', 'score': 0.9982799, 'index': 154, 'word': '##le', 'start': 597, 'end': 599}, {'entity': 'I-ORG', 'score': 0.9987224, 'index': 156, 'word': 'Commerce', 'start': 603, 'end': 611}, {'entity': 'I-MISC', 'score': 0.93020797, 'index': 163, 'word': 'St', 'start': 621, 'end': 623}, {'entity': 'I-MISC', 'score': 0.9355181, 'index': 165, 'word': 'Louis', 'start': 625, 'end': 630}, {'entity': 'I-ORG', 'score': 0.9994809, 'index': 168, 'word': 'Me', 'start': 637, 'end': 639}, {'entity': 'I-ORG', 'score': 0.99739504, 'index': 169, 'word': '##rca', 'start': 639, 'end': 642}, {'entity': 'I-ORG', 'score': 0.99802905, 'index': 170, 'word': '##nti', 'start': 642, 'end': 645}, {'entity': 'I-ORG', 'score': 0.9996283, 'index': 171, 'word': '##le', 'start': 645, 'end': 647}, {'entity': 'I-ORG', 'score': 0.999624, 'index': 172, 'word': 'Ban', 'start': 648, 'end': 651}, {'entity': 'I-ORG', 'score': 0.99806565, 'index': 173, 'word': '##cor', 'start': 651, 'end': 654}, {'entity': 'I-ORG', 'score': 0.9993765, 'index': 174, 'word': '##p', 'start': 654, 'end': 655}, {'entity': 'I-ORG', 'score': 0.99955934, 'index': 175, 'word': 'Inc', 'start': 656, 'end': 659}, {'entity': 'I-LOC', 'score': 0.99718446, 'index': 200, 'word': 'Missouri', 'start': 768, 'end': 776}, {'entity': 'I-ORG', 'score': 0.998154, 'index': 205, 'word': 'Boat', 'start': 801, 'end': 805}, {'entity': 'I-ORG', 'score': 0.99869746, 'index': 206, 'word': '##men', 'start': 805, 'end': 808}, {'entity': 'I-ORG', 'score': 0.99712926, 'index': 207, 'word': "'", 'start': 809, 'end': 810}, {'entity': 'I-ORG', 'score': 0.99784064, 'index': 208, 'word': 's', 'start': 810, 'end': 811}, {'entity': 'I-LOC', 'score': 0.97600013, 'index': 214, 'word': 'Kansas', 'start': 819, 'end': 825}, {'entity': 'I-LOC', 'score': 0.98460627, 'index': 215, 'word': 'City', 'start': 826, 'end': 830}, {'entity': 'I-MISC', 'score': 0.9811001, 'index': 217, 'word': 'Mo', 'start': 833, 'end': 835}, {'entity': 'I-ORG', 'score': 0.999741, 'index': 221, 'word': 'Commerce', 'start': 843, 'end': 851}, {'entity': 'I-ORG', 'score': 0.99964035, 'index': 222, 'word': 'Ban', 'start': 852, 'end': 855}, {'entity': 'I-ORG', 'score': 0.998744, 'index': 223, 'word': '##cs', 'start': 855, 'end': 857}, {'entity': 'I-ORG', 'score': 0.9993185, 'index': 224, 'word': '##hare', 'start': 857, 'end': 861}, {'entity': 'I-ORG', 'score': 0.999311, 'index': 225, 'word': '##s', 'start': 861, 'end': 862}, {'entity': 'I-ORG', 'score': 0.99960715, 'index': 226, 'word': 'Inc', 'start': 863, 'end': 866}, {'entity': 'I-LOC', 'score': 0.9977175, 'index': 251, 'word': 'Midwest', 'start': 975, 'end': 982}, {'entity': 'I-ORG', 'score': 0.99779934, 'index': 266, 'word': 'Me', 'start': 1038, 'end': 1040}, {'entity': 'I-ORG', 'score': 0.9941718, 'index': 267, 'word': '##rca', 'start': 1040, 'end': 1043}, {'entity': 'I-ORG', 'score': 0.9963446, 'index': 268, 'word': '##nti', 'start': 1043, 'end': 1046}, {'entity': 'I-ORG', 'score': 0.9982204, 'index': 269, 'word': '##le', 'start': 1046, 'end': 1048}, {'entity': 'I-ORG', 'score': 0.99813193, 'index': 271, 'word': 'Commerce', 'start': 1051, 'end': 1059}, {'entity': 'I-ORG', 'score': 0.99660933, 'index': 273, 'word': 'Roosevelt', 'start': 1064, 'end': 1073}, {'entity': 'I-PER', 'score': 0.99946874, 'index': 277, 'word': 'James', 'start': 1083, 'end': 1088}, {'entity': 'I-PER', 'score': 0.9997253, 'index': 278, 'word': 'Weber', 'start': 1089, 'end': 1094}, {'entity': 'I-ORG', 'score': 0.99741435, 'index': 282, 'word': 'A', 'start': 1108, 'end': 1109}, {'entity': 'I-ORG', 'score': 0.9988238, 'index': 284, 'word': 'G', 'start': 1110, 'end': 1111}, {'entity': 'I-ORG', 'score': 0.99369085, 'index': 285, 'word': '.', 'start': 1111, 'end': 1112}, {'entity': 'I-ORG', 'score': 0.9993106, 'index': 286, 'word': 'Edwards', 'start': 1113, 'end': 1120}, {'entity': 'I-ORG', 'score': 0.9977151, 'index': 287, 'word': '&', 'start': 1121, 'end': 1122}, {'entity': 'I-ORG', 'score': 0.9985355, 'index': 288, 'word': 'Sons', 'start': 1123, 'end': 1127}, {'entity': 'I-ORG', 'score': 0.99898857, 'index': 294, 'word': 'Roosevelt', 'start': 1135, 'end': 1144}, {'entity': 'I-ORG', 'score': 0.998865, 'index': 295, 'word': 'Financial', 'start': 1145, 'end': 1154}, {'entity': 'I-ORG', 'score': 0.9991819, 'index': 296, 'word': 'Group', 'start': 1155, 'end': 1160}, {'entity': 'I-ORG', 'score': 0.9989812, 'index': 297, 'word': 'Inc', 'start': 1161, 'end': 1164}, {'entity': 'I-MISC', 'score': 0.68475354, 'index': 307, 'word': 'St', 'start': 1191, 'end': 1193}, {'entity': 'I-MISC', 'score': 0.9748037, 'index': 311, 'word': 'S', 'start': 1198, 'end': 1199}, {'entity': 'I-LOC', 'score': 0.58177453, 'index': 313, 'word': 'Louis', 'start': 1201, 'end': 1206}, {'entity': 'I-ORG', 'score': 0.9987942, 'index': 336, 'word': 'Me', 'start': 1272, 'end': 1274}, {'entity': 'I-ORG', 'score': 0.99658585, 'index': 337, 'word': '##rca', 'start': 1274, 'end': 1277}, {'entity': 'I-ORG', 'score': 0.997717, 'index': 338, 'word': '##nti', 'start': 1277, 'end': 1280}, {'entity': 'I-ORG', 'score': 0.99884367, 'index': 339, 'word': '##le', 'start': 1280, 'end': 1282}, {'entity': 'I-PER', 'score': 0.99906343, 'index': 342, 'word': 'Weber', 'start': 1287, 'end': 1292}, {'entity': 'I-ORG', 'score': 0.9994435, 'index': 349, 'word': 'Me', 'start': 1305, 'end': 1307}, {'entity': 'I-ORG', 'score': 0.9972287, 'index': 350, 'word': '##rca', 'start': 1307, 'end': 1310}, {'entity': 'I-ORG', 'score': 0.99895716, 'index': 351, 'word': '##nti', 'start': 1310, 'end': 1313}, {'entity': 'I-ORG', 'score': 0.99921393, 'index': 352, 'word': '##le', 'start': 1313, 'end': 1315}, {'entity': 'I-ORG', 'score': 0.998686, 'index': 354, 'word': 'Commerce', 'start': 1320, 'end': 1328}, {'entity': 'I-LOC', 'score': 0.9990815, 'index': 377, 'word': 'Missouri', 'start': 1431, 'end': 1439}, {'entity': 'I-MISC', 'score': 0.9285168, 'index': 379, 'word': 'Minneapolis', 'start': 1444, 'end': 1455}, {'entity': 'I-ORG', 'score': 0.99940777, 'index': 382, 'word': 'First', 'start': 1462, 'end': 1467}, {'entity': 'I-ORG', 'score': 0.99922323, 'index': 383, 'word': 'Bank', 'start': 1468, 'end': 1472}, {'entity': 'I-ORG', 'score': 0.5898954, 'index': 384, 'word': 'System', 'start': 1473, 'end': 1479}, {'entity': 'I-ORG', 'score': 0.99722266, 'index': 385, 'word': 'Inc', 'start': 1480, 'end': 1483}, {'entity': 'I-ORG', 'score': 0.9782566, 'index': 388, 'word': 'Nor', 'start': 1489, 'end': 1492}, {'entity': 'I-ORG', 'score': 0.88401866, 'index': 389, 'word': '##wes', 'start': 1492, 'end': 1495}, {'entity': 'I-ORG', 'score': 0.84550446, 'index': 390, 'word': '##t', 'start': 1495, 'end': 1496}, {'entity': 'I-ORG', 'score': 0.99825245, 'index': 391, 'word': 'Corp', 'start': 1497, 'end': 1501}, {'entity': 'I-LOC', 'score': 0.9646197, 'index': 394, 'word': 'Ohio', 'start': 1505, 'end': 1509}, {'entity': 'I-ORG', 'score': 0.95395553, 'index': 397, 'word': 'Key', 'start': 1516, 'end': 1519}, {'entity': 'I-ORG', 'score': 0.99476504, 'index': 398, 'word': '##C', 'start': 1519, 'end': 1520}, {'entity': 'I-ORG', 'score': 0.97900987, 'index': 399, 'word': '##or', 'start': 1520, 'end': 1522}, {'entity': 'I-ORG', 'score': 0.9831957, 'index': 402, 'word': 'Ban', 'start': 1528, 'end': 1531}, {'entity': 'I-ORG', 'score': 0.94930786, 'index': 404, 'word': 'One', 'start': 1533, 'end': 1536}, {'entity': 'I-ORG', 'score': 0.9984273, 'index': 405, 'word': 'Corp', 'start': 1537, 'end': 1541}, {'entity': 'I-ORG', 'score': 0.9748137, 'index': 409, 'word': 'First', 'start': 1549, 'end': 1554}, {'entity': 'I-LOC', 'score': 0.8741435, 'index': 410, 'word': 'Chicago', 'start': 1555, 'end': 1562}, {'entity': 'I-ORG', 'score': 0.732094, 'index': 411, 'word': 'N', 'start': 1563, 'end': 1564}, {'entity': 'I-ORG', 'score': 0.8611769, 'index': 412, 'word': '##B', 'start': 1564, 'end': 1565}, {'entity': 'I-ORG', 'score': 0.97191995, 'index': 413, 'word': '##D', 'start': 1565, 'end': 1566}, {'entity': 'I-ORG', 'score': 0.9979924, 'index': 414, 'word': 'Corp', 'start': 1567, 'end': 1571}, {'entity': 'I-LOC', 'score': 0.9742381, 'index': 417, 'word': 'Illinois', 'start': 1576, 'end': 1584}, {'entity': 'I-ORG', 'score': 0.90225583, 'index': 421, 'word': 'S', 'start': 1589, 'end': 1590}, {'entity': 'I-ORG', 'score': 0.98814267, 'index': 425, 'word': 'First', 'start': 1611, 'end': 1616}, {'entity': 'I-ORG', 'score': 0.9797365, 'index': 426, 'word': 'Bank', 'start': 1617, 'end': 1621}, {'entity': 'I-ORG', 'score': 0.9159626, 'index': 428, 'word': 'Nor', 'start': 1624, 'end': 1627}, {'entity': 'I-ORG', 'score': 0.8552767, 'index': 429, 'word': '##wes', 'start': 1627, 'end': 1630}, {'entity': 'I-ORG', 'score': 0.7634412, 'index': 430, 'word': '##t', 'start': 1630, 'end': 1631}, {'entity': 'I-ORG', 'score': 0.97352165, 'index': 432, 'word': 'Ban', 'start': 1634, 'end': 1637}, {'entity': 'I-ORG', 'score': 0.9846198, 'index': 434, 'word': 'One', 'start': 1639, 'end': 1642}, {'entity': 'I-ORG', 'score': 0.9758364, 'index': 436, 'word': 'First', 'start': 1647, 'end': 1652}, {'entity': 'I-LOC', 'score': 0.896378, 'index': 437, 'word': 'Chicago', 'start': 1653, 'end': 1660}, {'entity': 'I-ORG', 'score': 0.9708021, 'index': 455, 'word': 'S', 'start': 1741, 'end': 1742}, {'entity': 'I-ORG', 'score': 0.722756, 'index': 457, 'word': 'Key', 'start': 1744, 'end': 1747}, {'entity': 'I-ORG', 'score': 0.9931525, 'index': 458, 'word': '##C', 'start': 1747, 'end': 1748}, {'entity': 'I-ORG', 'score': 0.95304924, 'index': 459, 'word': '##or', 'start': 1748, 'end': 1750}, {'entity': 'I-ORG', 'score': 0.94991034, 'index': 472, 'word': 'S', 'start': 1797, 'end': 1798}, {'entity': 'I-ORG', 'score': 0.9412972, 'index': 489, 'word': 'S', 'start': 1862, 'end': 1863}, {'entity': 'I-ORG', 'score': 0.9649134, 'index': 491, 'word': 'Boat', 'start': 1865, 'end': 1869}, {'entity': 'I-ORG', 'score': 0.5062394, 'index': 492, 'word': '##men', 'start': 1869, 'end': 1872}, {'entity': 'I-LOC', 'score': 0.5454416, 'index': 499, 'word': 'Missouri', 'start': 1893, 'end': 1901}]
[{'entity': 'I-LOC', 'score': 0.9979424, 'index': 1, 'word': 'U', 'start': 0, 'end': 1}, {'entity': 'I-LOC', 'score': 0.99893326, 'index': 3, 'word': 'S', 'start': 2, 'end': 3}, {'entity': 'I-LOC', 'score': 0.89459527, 'index': 4, 'word': '.', 'start': 3, 'end': 4}, {'entity': 'I-LOC', 'score': 0.99986744, 'index': 10, 'word': 'Libya', 'start': 21, 'end': 26}, {'entity': 'I-PER', 'score': 0.99885917, 'index': 15, 'word': 'Far', 'start': 39, 'end': 42}, {'entity': 'I-PER', 'score': 0.8109633, 'index': 16, 'word': '##rak', 'start': 42, 'end': 45}, {'entity': 'I-PER', 'score': 0.9627305, 'index': 17, 'word': '##han', 'start': 45, 'end': 48}, {'entity': 'I-LOC', 'score': 0.9986286, 'index': 23, 'word': 'WA', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.97315705, 'index': 24, 'word': '##S', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9819036, 'index': 25, 'word': '##H', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.98621535, 'index': 26, 'word': '##ING', 'start': 60, 'end': 63}, {'entity': 'I-LOC', 'score': 0.99201125, 'index': 27, 'word': '##TO', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9963727, 'index': 28, 'word': '##N', 'start': 65, 'end': 66}, {'entity': 'I-ORG', 'score': 0.998845, 'index': 39, 'word': 'State', 'start': 87, 'end': 92}, {'entity': 'I-ORG', 'score': 0.99892706, 'index': 40, 'word': 'Department', 'start': 93, 'end': 103}, {'entity': 'I-PER', 'score': 0.9989287, 'index': 56, 'word': 'Louis', 'start': 171, 'end': 176}, {'entity': 'I-PER', 'score': 0.9995615, 'index': 57, 'word': 'Far', 'start': 177, 'end': 180}, {'entity': 'I-PER', 'score': 0.96362764, 'index': 58, 'word': '##rak', 'start': 180, 'end': 183}, {'entity': 'I-PER', 'score': 0.99830014, 'index': 59, 'word': '##han', 'start': 183, 'end': 186}, {'entity': 'I-LOC', 'score': 0.99870217, 'index': 62, 'word': 'U', 'start': 193, 'end': 194}, {'entity': 'I-LOC', 'score': 0.98324263, 'index': 64, 'word': 'S', 'start': 195, 'end': 196}, {'entity': 'I-LOC', 'score': 0.99972767, 'index': 80, 'word': 'Libya', 'start': 261, 'end': 266}, {'entity': 'I-ORG', 'score': 0.9988142, 'index': 108, 'word': 'State', 'start': 354, 'end': 359}, {'entity': 'I-ORG', 'score': 0.9991954, 'index': 109, 'word': 'Department', 'start': 360, 'end': 370}, {'entity': 'I-PER', 'score': 0.9996339, 'index': 111, 'word': 'G', 'start': 381, 'end': 382}, {'entity': 'I-PER', 'score': 0.99938285, 'index': 112, 'word': '##lyn', 'start': 382, 'end': 385}, {'entity': 'I-PER', 'score': 0.9997471, 'index': 113, 'word': 'Davies', 'start': 386, 'end': 392}, {'entity': 'I-LOC', 'score': 0.99887544, 'index': 128, 'word': 'U', 'start': 427, 'end': 428}, {'entity': 'I-LOC', 'score': 0.99396753, 'index': 130, 'word': 'S', 'start': 429, 'end': 430}, {'entity': 'I-PER', 'score': 0.9992693, 'index': 135, 'word': 'Far', 'start': 448, 'end': 451}, {'entity': 'I-PER', 'score': 0.9083511, 'index': 136, 'word': '##rak', 'start': 451, 'end': 454}, {'entity': 'I-PER', 'score': 0.96740705, 'index': 137, 'word': '##han', 'start': 454, 'end': 457}, {'entity': 'I-LOC', 'score': 0.9998754, 'index': 146, 'word': 'Libya', 'start': 492, 'end': 497}, {'entity': 'I-PER', 'score': 0.99953043, 'index': 157, 'word': 'Davies', 'start': 521, 'end': 527}, {'entity': 'I-LOC', 'score': 0.9998399, 'index': 173, 'word': 'Libya', 'start': 602, 'end': 607}, {'entity': 'I-ORG', 'score': 0.99709535, 'index': 186, 'word': 'U', 'start': 646, 'end': 647}, {'entity': 'I-ORG', 'score': 0.9966184, 'index': 188, 'word': 'S', 'start': 648, 'end': 649}, {'entity': 'I-ORG', 'score': 0.5056089, 'index': 189, 'word': '.', 'start': 649, 'end': 650}, {'entity': 'I-ORG', 'score': 0.9992872, 'index': 190, 'word': 'Treasury', 'start': 651, 'end': 659}, {'entity': 'I-ORG', 'score': 0.9979242, 'index': 191, 'word': 'Department', 'start': 660, 'end': 670}, {'entity': 'I-PER', 'score': 0.999509, 'index': 195, 'word': 'Far', 'start': 691, 'end': 694}, {'entity': 'I-PER', 'score': 0.9606913, 'index': 196, 'word': '##rak', 'start': 694, 'end': 697}, {'entity': 'I-PER', 'score': 0.9910217, 'index': 197, 'word': '##han', 'start': 697, 'end': 700}, {'entity': 'I-MISC', 'score': 0.99882096, 'index': 215, 'word': 'Libyan', 'start': 773, 'end': 779}, {'entity': 'I-PER', 'score': 0.9996464, 'index': 217, 'word': 'Mu', 'start': 787, 'end': 789}, {'entity': 'I-PER', 'score': 0.99901104, 'index': 218, 'word': '##am', 'start': 789, 'end': 791}, {'entity': 'I-PER', 'score': 0.99948764, 'index': 219, 'word': '##mar', 'start': 791, 'end': 794}, {'entity': 'I-PER', 'score': 0.99948967, 'index': 220, 'word': 'G', 'start': 795, 'end': 796}, {'entity': 'I-PER', 'score': 0.9964469, 'index': 221, 'word': '##ad', 'start': 796, 'end': 798}, {'entity': 'I-PER', 'score': 0.9415329, 'index': 222, 'word': '##da', 'start': 798, 'end': 800}, {'entity': 'I-PER', 'score': 0.9974464, 'index': 223, 'word': '##fi', 'start': 800, 'end': 802}, {'entity': 'I-PER', 'score': 0.99925894, 'index': 227, 'word': 'Far', 'start': 818, 'end': 821}, {'entity': 'I-PER', 'score': 0.8511599, 'index': 228, 'word': '##rak', 'start': 821, 'end': 824}, {'entity': 'I-PER', 'score': 0.98041415, 'index': 229, 'word': '##han', 'start': 824, 'end': 827}, {'entity': 'I-ORG', 'score': 0.998971, 'index': 232, 'word': 'Nation', 'start': 831, 'end': 837}, {'entity': 'I-ORG', 'score': 0.99903786, 'index': 233, 'word': 'of', 'start': 838, 'end': 840}, {'entity': 'I-ORG', 'score': 0.99618465, 'index': 234, 'word': 'Islam', 'start': 841, 'end': 846}, {'entity': 'I-PER', 'score': 0.99912864, 'index': 246, 'word': 'Far', 'start': 888, 'end': 891}, {'entity': 'I-PER', 'score': 0.95317143, 'index': 247, 'word': '##rak', 'start': 891, 'end': 894}, {'entity': 'I-PER', 'score': 0.97997355, 'index': 248, 'word': '##han', 'start': 894, 'end': 897}, {'entity': 'I-MISC', 'score': 0.9948025, 'index': 254, 'word': 'Million', 'start': 924, 'end': 931}, {'entity': 'I-MISC', 'score': 0.9959799, 'index': 255, 'word': 'Man', 'start': 932, 'end': 935}, {'entity': 'I-MISC', 'score': 0.99500567, 'index': 256, 'word': 'March', 'start': 936, 'end': 941}, {'entity': 'I-LOC', 'score': 0.998765, 'index': 264, 'word': 'Washington', 'start': 981, 'end': 991}, {'entity': 'I-ORG', 'score': 0.9988335, 'index': 275, 'word': 'Treasury', 'start': 1024, 'end': 1032}, {'entity': 'I-ORG', 'score': 0.99769765, 'index': 276, 'word': 'Department', 'start': 1033, 'end': 1043}, {'entity': 'I-LOC', 'score': 0.9998344, 'index': 278, 'word': 'Libya', 'start': 1049, 'end': 1054}, {'entity': 'I-LOC', 'score': 0.99837947, 'index': 282, 'word': 'U', 'start': 1066, 'end': 1067}, {'entity': 'I-LOC', 'score': 0.97912747, 'index': 284, 'word': 'S', 'start': 1068, 'end': 1069}, {'entity': 'I-LOC', 'score': 0.99916625, 'index': 296, 'word': 'Tripoli', 'start': 1138, 'end': 1145}, {'entity': 'I-MISC', 'score': 0.9986059, 'index': 303, 'word': 'Libyan', 'start': 1175, 'end': 1181}, {'entity': 'I-ORG', 'score': 0.8921665, 'index': 310, 'word': 'Pan', 'start': 1214, 'end': 1217}, {'entity': 'I-ORG', 'score': 0.7598942, 'index': 311, 'word': 'Am', 'start': 1218, 'end': 1220}, {'entity': 'I-MISC', 'score': 0.68720376, 'index': 313, 'word': '103', 'start': 1228, 'end': 1231}, {'entity': 'I-LOC', 'score': 0.9962147, 'index': 315, 'word': 'Locke', 'start': 1237, 'end': 1242}, {'entity': 'I-LOC', 'score': 0.84742856, 'index': 316, 'word': '##rb', 'start': 1242, 'end': 1244}, {'entity': 'I-LOC', 'score': 0.9892173, 'index': 317, 'word': '##ie', 'start': 1244, 'end': 1246}, {'entity': 'I-LOC', 'score': 0.99977666, 'index': 319, 'word': 'Scotland', 'start': 1249, 'end': 1257}, {'entity': 'I-ORG', 'score': 0.995141, 'index': 334, 'word': 'U', 'start': 1303, 'end': 1304}, {'entity': 'I-ORG', 'score': 0.9980392, 'index': 336, 'word': 'N', 'start': 1305, 'end': 1306}, {'entity': 'I-LOC', 'score': 0.9998184, 'index': 340, 'word': 'Libya', 'start': 1321, 'end': 1326}]
[{'entity': 'I-LOC', 'score': 0.9992822, 'index': 1, 'word': 'U', 'start': 0, 'end': 1}, {'entity': 'I-LOC', 'score': 0.9988764, 'index': 3, 'word': 'S', 'start': 2, 'end': 3}, {'entity': 'I-LOC', 'score': 0.7089061, 'index': 4, 'word': '.', 'start': 3, 'end': 4}, {'entity': 'I-LOC', 'score': 0.99768543, 'index': 5, 'word': 'Gulf', 'start': 5, 'end': 9}, {'entity': 'I-LOC', 'score': 0.9995479, 'index': 19, 'word': 'NE', 'start': 48, 'end': 50}, {'entity': 'I-LOC', 'score': 0.9964194, 'index': 20, 'word': '##W', 'start': 50, 'end': 51}, {'entity': 'I-LOC', 'score': 0.99961543, 'index': 21, 'word': 'Y', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9641935, 'index': 22, 'word': '##OR', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.9995515, 'index': 23, 'word': '##K', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9984666, 'index': 42, 'word': 'U', 'start': 115, 'end': 116}, {'entity': 'I-LOC', 'score': 0.9978733, 'index': 44, 'word': 'S', 'start': 117, 'end': 118}, {'entity': 'I-LOC', 'score': 0.99838483, 'index': 46, 'word': 'Gulf', 'start': 120, 'end': 124}, {'entity': 'I-ORG', 'score': 0.99947995, 'index': 59, 'word': 'Off', 'start': 174, 'end': 177}, {'entity': 'I-ORG', 'score': 0.9985429, 'index': 60, 'word': '##shore', 'start': 177, 'end': 182}, {'entity': 'I-ORG', 'score': 0.9985084, 'index': 61, 'word': 'Data', 'start': 183, 'end': 187}, {'entity': 'I-ORG', 'score': 0.99893314, 'index': 62, 'word': 'Services', 'start': 188, 'end': 196}, {'entity': 'I-LOC', 'score': 0.999097, 'index': 80, 'word': 'Gulf', 'start': 254, 'end': 258}, {'entity': 'I-LOC', 'score': 0.9895654, 'index': 107, 'word': 'European', 'start': 347, 'end': 355}, {'entity': 'I-LOC', 'score': 0.99876773, 'index': 109, 'word': 'Mediterranean', 'start': 358, 'end': 371}, {'entity': 'I-ORG', 'score': 0.99971503, 'index': 178, 'word': 'New', 'start': 627, 'end': 630}, {'entity': 'I-ORG', 'score': 0.9996251, 'index': 179, 'word': 'York', 'start': 631, 'end': 635}, {'entity': 'I-ORG', 'score': 0.9993912, 'index': 180, 'word': 'Energy', 'start': 636, 'end': 642}, {'entity': 'I-ORG', 'score': 0.99939847, 'index': 181, 'word': 'Des', 'start': 643, 'end': 646}, {'entity': 'I-ORG', 'score': 0.99895704, 'index': 182, 'word': '##k', 'start': 646, 'end': 647}]
[{'entity': 'I-PER', 'score': 0.560923, 'index': 1, 'word': 'Do', 'start': 0, 'end': 2}, {'entity': 'I-ORG', 'score': 0.9667351, 'index': 2, 'word': '##le', 'start': 2, 'end': 4}, {'entity': 'I-LOC', 'score': 0.9968669, 'index': 15, 'word': 'I', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.98949975, 'index': 16, 'word': '##R', 'start': 53, 'end': 54}, {'entity': 'I-LOC', 'score': 0.98105097, 'index': 17, 'word': '##VI', 'start': 54, 'end': 56}, {'entity': 'I-LOC', 'score': 0.99635196, 'index': 18, 'word': '##NE', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9993235, 'index': 20, 'word': 'Cal', 'start': 61, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9874414, 'index': 21, 'word': '##if', 'start': 64, 'end': 66}, {'entity': 'I-MISC', 'score': 0.996007, 'index': 39, 'word': 'Republicans', 'start': 125, 'end': 136}, {'entity': 'I-PER', 'score': 0.9997365, 'index': 59, 'word': 'Clinton', 'start': 235, 'end': 242}, {'entity': 'I-PER', 'score': 0.9671009, 'index': 77, 'word': 'Do', 'start': 309, 'end': 311}, {'entity': 'I-ORG', 'score': 0.547878, 'index': 78, 'word': '##le', 'start': 311, 'end': 313}, {'entity': 'I-PER', 'score': 0.9990119, 'index': 86, 'word': 'Clinton', 'start': 363, 'end': 370}, {'entity': 'I-PER', 'score': 0.76687205, 'index': 91, 'word': 'Do', 'start': 397, 'end': 399}, {'entity': 'I-ORG', 'score': 0.9871552, 'index': 92, 'word': '##le', 'start': 399, 'end': 401}, {'entity': 'I-PER', 'score': 0.9996817, 'index': 95, 'word': 'Scott', 'start': 419, 'end': 424}, {'entity': 'I-PER', 'score': 0.99977213, 'index': 96, 'word': 'Reed', 'start': 425, 'end': 429}, {'entity': 'I-PER', 'score': 0.8392319, 'index': 143, 'word': 'Do', 'start': 663, 'end': 665}, {'entity': 'I-ORG', 'score': 0.9701891, 'index': 144, 'word': '##le', 'start': 665, 'end': 667}, {'entity': 'I-PER', 'score': 0.9997296, 'index': 147, 'word': 'Scott', 'start': 685, 'end': 690}, {'entity': 'I-PER', 'score': 0.99973434, 'index': 148, 'word': 'Reed', 'start': 691, 'end': 695}, {'entity': 'I-PER', 'score': 0.99916565, 'index': 151, 'word': 'Clinton', 'start': 705, 'end': 712}, {'entity': 'I-PER', 'score': 0.99960285, 'index': 154, 'word': 'Peter', 'start': 730, 'end': 735}, {'entity': 'I-PER', 'score': 0.99978846, 'index': 155, 'word': 'Knight', 'start': 736, 'end': 742}, {'entity': 'I-LOC', 'score': 0.9993709, 'index': 204, 'word': 'South', 'start': 896, 'end': 901}, {'entity': 'I-LOC', 'score': 0.99910563, 'index': 205, 'word': 'Carolina', 'start': 902, 'end': 910}, {'entity': 'I-PER', 'score': 0.9995672, 'index': 213, 'word': 'Carroll', 'start': 922, 'end': 929}, {'entity': 'I-PER', 'score': 0.9998024, 'index': 214, 'word': 'Campbell', 'start': 930, 'end': 938}, {'entity': 'I-PER', 'score': 0.9986381, 'index': 219, 'word': 'Do', 'start': 952, 'end': 954}, {'entity': 'I-PER', 'score': 0.96021014, 'index': 220, 'word': '##le', 'start': 954, 'end': 956}, {'entity': 'I-PER', 'score': 0.9978635, 'index': 228, 'word': 'Do', 'start': 996, 'end': 998}, {'entity': 'I-PER', 'score': 0.8867965, 'index': 229, 'word': '##le', 'start': 998, 'end': 1000}, {'entity': 'I-PER', 'score': 0.9995042, 'index': 232, 'word': 'Jack', 'start': 1012, 'end': 1016}, {'entity': 'I-PER', 'score': 0.99967504, 'index': 233, 'word': 'Kemp', 'start': 1017, 'end': 1021}, {'entity': 'I-PER', 'score': 0.99930775, 'index': 237, 'word': 'Do', 'start': 1034, 'end': 1036}, {'entity': 'I-PER', 'score': 0.9802531, 'index': 238, 'word': '##le', 'start': 1036, 'end': 1038}, {'entity': 'I-LOC', 'score': 0.9992378, 'index': 257, 'word': 'Texas', 'start': 1105, 'end': 1110}, {'entity': 'I-PER', 'score': 0.9995227, 'index': 259, 'word': 'Ross', 'start': 1123, 'end': 1127}, {'entity': 'I-PER', 'score': 0.9994758, 'index': 260, 'word': 'Per', 'start': 1128, 'end': 1131}, {'entity': 'I-PER', 'score': 0.9989197, 'index': 261, 'word': '##ot', 'start': 1131, 'end': 1133}, {'entity': 'I-ORG', 'score': 0.99914193, 'index': 264, 'word': 'Reform', 'start': 1140, 'end': 1146}, {'entity': 'I-ORG', 'score': 0.99884987, 'index': 265, 'word': 'Party', 'start': 1147, 'end': 1152}, {'entity': 'I-ORG', 'score': 0.9994017, 'index': 282, 'word': 'Commission', 'start': 1240, 'end': 1250}, {'entity': 'I-ORG', 'score': 0.9980533, 'index': 283, 'word': 'on', 'start': 1251, 'end': 1253}, {'entity': 'I-ORG', 'score': 0.98775244, 'index': 284, 'word': 'Presidential', 'start': 1254, 'end': 1266}, {'entity': 'I-ORG', 'score': 0.9926831, 'index': 285, 'word': 'De', 'start': 1267, 'end': 1269}, {'entity': 'I-ORG', 'score': 0.8172662, 'index': 286, 'word': '##bate', 'start': 1269, 'end': 1273}, {'entity': 'I-ORG', 'score': 0.91143876, 'index': 287, 'word': '##s', 'start': 1273, 'end': 1274}, {'entity': 'I-ORG', 'score': 0.9995702, 'index': 307, 'word': 'League', 'start': 1361, 'end': 1367}, {'entity': 'I-ORG', 'score': 0.9996214, 'index': 308, 'word': 'of', 'start': 1368, 'end': 1370}, {'entity': 'I-ORG', 'score': 0.9992943, 'index': 309, 'word': 'Women', 'start': 1371, 'end': 1376}, {'entity': 'I-ORG', 'score': 0.9995695, 'index': 310, 'word': 'V', 'start': 1377, 'end': 1378}, {'entity': 'I-ORG', 'score': 0.9989343, 'index': 311, 'word': '##oters', 'start': 1378, 'end': 1383}]
[{'entity': 'I-MISC', 'score': 0.80842614, 'index': 1, 'word': 'Titanic', 'start': 0, 'end': 7}, {'entity': 'I-LOC', 'score': 0.99951863, 'index': 11, 'word': 'NE', 'start': 44, 'end': 46}, {'entity': 'I-LOC', 'score': 0.9968393, 'index': 12, 'word': '##W', 'start': 46, 'end': 47}, {'entity': 'I-LOC', 'score': 0.9995857, 'index': 13, 'word': 'Y', 'start': 48, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9736138, 'index': 14, 'word': '##OR', 'start': 49, 'end': 51}, {'entity': 'I-LOC', 'score': 0.9995453, 'index': 15, 'word': '##K', 'start': 51, 'end': 52}, {'entity': 'I-MISC', 'score': 0.9758744, 'index': 45, 'word': 'R', 'start': 191, 'end': 192}, {'entity': 'I-MISC', 'score': 0.9576148, 'index': 46, 'word': '##MS', 'start': 192, 'end': 194}, {'entity': 'I-MISC', 'score': 0.96670014, 'index': 47, 'word': 'Titanic', 'start': 195, 'end': 202}, {'entity': 'I-MISC', 'score': 0.8945251, 'index': 72, 'word': 'Titanic', 'start': 284, 'end': 291}, {'entity': 'I-LOC', 'score': 0.99952734, 'index': 92, 'word': 'Newfoundland', 'start': 378, 'end': 390}, {'entity': 'I-LOC', 'score': 0.99971384, 'index': 94, 'word': 'Canada', 'start': 393, 'end': 399}, {'entity': 'I-PER', 'score': 0.9995572, 'index': 106, 'word': 'Erin', 'start': 444, 'end': 448}, {'entity': 'I-PER', 'score': 0.9998191, 'index': 107, 'word': 'P', 'start': 449, 'end': 450}, {'entity': 'I-PER', 'score': 0.99755704, 'index': 108, 'word': '##ur', 'start': 450, 'end': 452}, {'entity': 'I-PER', 'score': 0.99961406, 'index': 109, 'word': '##cell', 'start': 452, 'end': 456}, {'entity': 'I-MISC', 'score': 0.9158139, 'index': 111, 'word': 'Boston', 'start': 460, 'end': 466}, {'entity': 'I-ORG', 'score': 0.9984652, 'index': 114, 'word': 'Reagan', 'start': 473, 'end': 479}, {'entity': 'I-ORG', 'score': 0.9979474, 'index': 115, 'word': 'Communications', 'start': 480, 'end': 494}, {'entity': 'I-MISC', 'score': 0.9052544, 'index': 215, 'word': 'Titanic', 'start': 921, 'end': 928}, {'entity': 'I-PER', 'score': 0.9980509, 'index': 297, 'word': 'P', 'start': 1244, 'end': 1245}, {'entity': 'I-PER', 'score': 0.9713518, 'index': 298, 'word': '##ur', 'start': 1245, 'end': 1247}, {'entity': 'I-PER', 'score': 0.97294736, 'index': 299, 'word': '##cell', 'start': 1247, 'end': 1251}]
[{'entity': 'I-LOC', 'score': 0.99955267, 'index': 1, 'word': 'Bonn', 'start': 0, 'end': 4}, {'entity': 'I-LOC', 'score': 0.9997516, 'index': 4, 'word': 'Middle', 'start': 17, 'end': 23}, {'entity': 'I-LOC', 'score': 0.99963796, 'index': 5, 'word': 'East', 'start': 24, 'end': 28}, {'entity': 'I-LOC', 'score': 0.9978911, 'index': 12, 'word': 'B', 'start': 42, 'end': 43}, {'entity': 'I-LOC', 'score': 0.96511656, 'index': 13, 'word': '##ON', 'start': 43, 'end': 45}, {'entity': 'I-LOC', 'score': 0.9962459, 'index': 14, 'word': '##N', 'start': 45, 'end': 46}, {'entity': 'I-MISC', 'score': 0.99931383, 'index': 25, 'word': 'German', 'start': 67, 'end': 73}, {'entity': 'I-MISC', 'score': 0.99786097, 'index': 28, 'word': 'Israeli', 'start': 91, 'end': 98}, {'entity': 'I-MISC', 'score': 0.99461293, 'index': 31, 'word': 'Palestinians', 'start': 104, 'end': 116}, {'entity': 'I-LOC', 'score': 0.9998136, 'index': 51, 'word': 'Middle', 'start': 204, 'end': 210}, {'entity': 'I-LOC', 'score': 0.9996587, 'index': 52, 'word': 'East', 'start': 211, 'end': 215}, {'entity': 'I-LOC', 'score': 0.9997229, 'index': 58, 'word': 'Israel', 'start': 223, 'end': 229}, {'entity': 'I-MISC', 'score': 0.99004143, 'index': 65, 'word': 'Jewish', 'start': 267, 'end': 273}, {'entity': 'I-LOC', 'score': 0.9963486, 'index': 66, 'word': 'West', 'start': 274, 'end': 278}, {'entity': 'I-LOC', 'score': 0.99871373, 'index': 67, 'word': 'Bank', 'start': 279, 'end': 283}, {'entity': 'I-LOC', 'score': 0.999734, 'index': 70, 'word': 'Jerusalem', 'start': 308, 'end': 317}, {'entity': 'I-MISC', 'score': 0.9962515, 'index': 76, 'word': 'Arab', 'start': 343, 'end': 347}, {'entity': 'I-LOC', 'score': 0.9992925, 'index': 80, 'word': 'East', 'start': 368, 'end': 372}, {'entity': 'I-LOC', 'score': 0.9997372, 'index': 81, 'word': 'Jerusalem', 'start': 373, 'end': 382}, {'entity': 'I-MISC', 'score': 0.99779534, 'index': 103, 'word': 'Palestinian', 'start': 466, 'end': 477}, {'entity': 'I-PER', 'score': 0.99968064, 'index': 105, 'word': 'Ya', 'start': 488, 'end': 490}, {'entity': 'I-PER', 'score': 0.9994885, 'index': 106, 'word': '##sser', 'start': 490, 'end': 494}, {'entity': 'I-PER', 'score': 0.9997234, 'index': 107, 'word': 'Ara', 'start': 495, 'end': 498}, {'entity': 'I-PER', 'score': 0.9983584, 'index': 108, 'word': '##fa', 'start': 498, 'end': 500}, {'entity': 'I-PER', 'score': 0.99858713, 'index': 109, 'word': '##t', 'start': 500, 'end': 501}, {'entity': 'I-PER', 'score': 0.9995734, 'index': 116, 'word': 'Benjamin', 'start': 535, 'end': 543}, {'entity': 'I-PER', 'score': 0.99961746, 'index': 117, 'word': 'Net', 'start': 544, 'end': 547}, {'entity': 'I-PER', 'score': 0.9664208, 'index': 118, 'word': '##any', 'start': 547, 'end': 550}, {'entity': 'I-PER', 'score': 0.9996087, 'index': 119, 'word': '##ahu', 'start': 550, 'end': 553}, {'entity': 'I-MISC', 'score': 0.9987919, 'index': 154, 'word': 'Israeli', 'start': 671, 'end': 678}, {'entity': 'I-MISC', 'score': 0.99868363, 'index': 171, 'word': 'German', 'start': 768, 'end': 774}, {'entity': 'I-ORG', 'score': 0.9079309, 'index': 172, 'word': 'Foreign', 'start': 775, 'end': 782}, {'entity': 'I-ORG', 'score': 0.98339015, 'index': 173, 'word': 'Ministry', 'start': 783, 'end': 791}, {'entity': 'I-PER', 'score': 0.99967706, 'index': 175, 'word': 'Martin', 'start': 802, 'end': 808}, {'entity': 'I-PER', 'score': 0.9997831, 'index': 176, 'word': 'E', 'start': 809, 'end': 810}, {'entity': 'I-PER', 'score': 0.9866991, 'index': 177, 'word': '##rd', 'start': 810, 'end': 812}, {'entity': 'I-PER', 'score': 0.99273735, 'index': 178, 'word': '##mann', 'start': 812, 'end': 816}, {'entity': 'I-MISC', 'score': 0.9979043, 'index': 225, 'word': 'Arab', 'start': 1037, 'end': 1041}, {'entity': 'I-MISC', 'score': 0.99873453, 'index': 227, 'word': 'Israeli', 'start': 1042, 'end': 1049}, {'entity': 'I-LOC', 'score': 0.9997384, 'index': 231, 'word': 'Jerusalem', 'start': 1065, 'end': 1074}, {'entity': 'I-PER', 'score': 0.9994574, 'index': 237, 'word': 'E', 'start': 1082, 'end': 1083}, {'entity': 'I-PER', 'score': 0.9569135, 'index': 238, 'word': '##rd', 'start': 1083, 'end': 1085}, {'entity': 'I-PER', 'score': 0.8136939, 'index': 239, 'word': '##mann', 'start': 1085, 'end': 1089}, {'entity': 'I-LOC', 'score': 0.99870217, 'index': 242, 'word': 'Bonn', 'start': 1105, 'end': 1109}, {'entity': 'I-ORG', 'score': 0.99817276, 'index': 244, 'word': 'European', 'start': 1120, 'end': 1128}, {'entity': 'I-ORG', 'score': 0.99834216, 'index': 245, 'word': 'Union', 'start': 1129, 'end': 1134}, {'entity': 'I-LOC', 'score': 0.9996786, 'index': 249, 'word': 'Israel', 'start': 1155, 'end': 1161}, {'entity': 'I-MISC', 'score': 0.99526405, 'index': 253, 'word': 'Jewish', 'start': 1178, 'end': 1184}, {'entity': 'I-LOC', 'score': 0.999585, 'index': 257, 'word': 'West', 'start': 1203, 'end': 1207}, {'entity': 'I-LOC', 'score': 0.99966204, 'index': 258, 'word': 'Bank', 'start': 1208, 'end': 1212}, {'entity': 'I-MISC', 'score': 0.9989429, 'index': 269, 'word': 'Israeli', 'start': 1257, 'end': 1264}, {'entity': 'I-PER', 'score': 0.99971074, 'index': 272, 'word': 'David', 'start': 1282, 'end': 1287}, {'entity': 'I-PER', 'score': 0.9998098, 'index': 273, 'word': 'Levy', 'start': 1288, 'end': 1292}, {'entity': 'I-LOC', 'score': 0.9993799, 'index': 276, 'word': 'Bonn', 'start': 1305, 'end': 1309}, {'entity': 'I-MISC', 'score': 0.99900144, 'index': 281, 'word': 'German', 'start': 1329, 'end': 1335}, {'entity': 'I-PER', 'score': 0.99964523, 'index': 283, 'word': 'Klaus', 'start': 1348, 'end': 1353}, {'entity': 'I-PER', 'score': 0.99977475, 'index': 284, 'word': 'Ki', 'start': 1354, 'end': 1356}, {'entity': 'I-PER', 'score': 0.99932015, 'index': 285, 'word': '##nk', 'start': 1356, 'end': 1358}, {'entity': 'I-PER', 'score': 0.9944359, 'index': 286, 'word': '##el', 'start': 1358, 'end': 1360}, {'entity': 'I-PER', 'score': 0.99961436, 'index': 297, 'word': 'Levy', 'start': 1397, 'end': 1401}, {'entity': 'I-PER', 'score': 0.99955577, 'index': 299, 'word': 'Ki', 'start': 1406, 'end': 1408}, {'entity': 'I-PER', 'score': 0.9969432, 'index': 300, 'word': '##nk', 'start': 1408, 'end': 1410}, {'entity': 'I-PER', 'score': 0.925883, 'index': 301, 'word': '##el', 'start': 1410, 'end': 1412}, {'entity': 'I-LOC', 'score': 0.9993574, 'index': 305, 'word': 'Middle', 'start': 1431, 'end': 1437}, {'entity': 'I-LOC', 'score': 0.99951506, 'index': 306, 'word': 'East', 'start': 1438, 'end': 1442}, {'entity': 'I-MISC', 'score': 0.9983494, 'index': 309, 'word': 'German', 'start': 1455, 'end': 1461}, {'entity': 'I-MISC', 'score': 0.998613, 'index': 311, 'word': 'Israeli', 'start': 1462, 'end': 1469}, {'entity': 'I-PER', 'score': 0.99965966, 'index': 324, 'word': 'Levy', 'start': 1519, 'end': 1523}, {'entity': 'I-MISC', 'score': 0.9989617, 'index': 334, 'word': 'Israeli', 'start': 1558, 'end': 1565}, {'entity': 'I-PER', 'score': 0.9995633, 'index': 338, 'word': 'Net', 'start': 1589, 'end': 1592}, {'entity': 'I-PER', 'score': 0.9376042, 'index': 339, 'word': '##any', 'start': 1592, 'end': 1595}, {'entity': 'I-PER', 'score': 0.9984744, 'index': 340, 'word': '##ahu', 'start': 1595, 'end': 1598}, {'entity': 'I-PER', 'score': 0.9995503, 'index': 361, 'word': 'Levy', 'start': 1688, 'end': 1692}, {'entity': 'I-LOC', 'score': 0.99916995, 'index': 366, 'word': 'Bonn', 'start': 1707, 'end': 1711}, {'entity': 'I-MISC', 'score': 0.9987783, 'index': 368, 'word': 'German', 'start': 1714, 'end': 1720}, {'entity': 'I-PER', 'score': 0.999663, 'index': 371, 'word': 'Vol', 'start': 1738, 'end': 1741}, {'entity': 'I-PER', 'score': 0.9995616, 'index': 372, 'word': '##ker', 'start': 1741, 'end': 1744}, {'entity': 'I-PER', 'score': 0.9997416, 'index': 373, 'word': 'Rue', 'start': 1745, 'end': 1748}, {'entity': 'I-PER', 'score': 0.9902119, 'index': 374, 'word': '##he', 'start': 1748, 'end': 1750}, {'entity': 'I-LOC', 'score': 0.99981946, 'index': 377, 'word': 'Israel', 'start': 1762, 'end': 1768}, {'entity': 'I-PER', 'score': 0.8416303, 'index': 391, 'word': 'S', 'start': 1823, 'end': 1824}, {'entity': 'I-PER', 'score': 0.9989374, 'index': 393, 'word': 'Rue', 'start': 1826, 'end': 1829}, {'entity': 'I-PER', 'score': 0.9094478, 'index': 394, 'word': '##he', 'start': 1829, 'end': 1831}, {'entity': 'I-MISC', 'score': 0.9990375, 'index': 399, 'word': 'Israeli', 'start': 1852, 'end': 1859}, {'entity': 'I-PER', 'score': 0.9947359, 'index': 401, 'word': 'Yi', 'start': 1872, 'end': 1874}, {'entity': 'I-PER', 'score': 0.94687647, 'index': 402, 'word': '##tz', 'start': 1874, 'end': 1876}, {'entity': 'I-PER', 'score': 0.945772, 'index': 403, 'word': '##hak', 'start': 1876, 'end': 1879}, {'entity': 'I-PER', 'score': 0.9983841, 'index': 404, 'word': 'Mo', 'start': 1880, 'end': 1882}, {'entity': 'I-PER', 'score': 0.928673, 'index': 405, 'word': '##rde', 'start': 1882, 'end': 1885}, {'entity': 'I-PER', 'score': 0.7906186, 'index': 406, 'word': '##cha', 'start': 1885, 'end': 1888}, {'entity': 'I-PER', 'score': 0.86463356, 'index': 407, 'word': '##i', 'start': 1888, 'end': 1889}, {'entity': 'I-MISC', 'score': 0.99900204, 'index': 409, 'word': 'Israeli', 'start': 1894, 'end': 1901}, {'entity': 'I-PER', 'score': 0.99809843, 'index': 411, 'word': 'E', 'start': 1912, 'end': 1913}, {'entity': 'I-PER', 'score': 0.58118284, 'index': 412, 'word': '##zer', 'start': 1913, 'end': 1916}, {'entity': 'I-PER', 'score': 0.99964726, 'index': 413, 'word': 'Wei', 'start': 1917, 'end': 1920}, {'entity': 'I-PER', 'score': 0.995874, 'index': 414, 'word': '##zman', 'start': 1920, 'end': 1924}, {'entity': 'I-PER', 'score': 0.98377246, 'index': 422, 'word': 'S', 'start': 1949, 'end': 1950}, {'entity': 'I-PER', 'score': 0.998538, 'index': 424, 'word': 'He', 'start': 1952, 'end': 1954}, {'entity': 'I-PER', 'score': 0.967259, 'index': 432, 'word': 'Net', 'start': 1996, 'end': 1999}, {'entity': 'I-PER', 'score': 0.6564986, 'index': 433, 'word': '##any', 'start': 1999, 'end': 2002}, {'entity': 'I-PER', 'score': 0.9982644, 'index': 434, 'word': '##ahu', 'start': 2002, 'end': 2005}, {'entity': 'I-PER', 'score': 0.99822825, 'index': 438, 'word': 'Shi', 'start': 2028, 'end': 2031}, {'entity': 'I-PER', 'score': 0.97185916, 'index': 439, 'word': '##mon', 'start': 2031, 'end': 2034}, {'entity': 'I-PER', 'score': 0.99943167, 'index': 440, 'word': 'Per', 'start': 2035, 'end': 2038}, {'entity': 'I-PER', 'score': 0.9351008, 'index': 447, 'word': 'S', 'start': 2055, 'end': 2056}]
[{'entity': 'I-LOC', 'score': 0.99966407, 'index': 1, 'word': 'France', 'start': 0, 'end': 6}, {'entity': 'I-MISC', 'score': 0.99815553, 'index': 5, 'word': 'African', 'start': 14, 'end': 21}, {'entity': 'I-ORG', 'score': 0.99881387, 'index': 7, 'word': 'Air', 'start': 24, 'end': 27}, {'entity': 'I-ORG', 'score': 0.9960498, 'index': 8, 'word': 'France', 'start': 28, 'end': 34}, {'entity': 'I-LOC', 'score': 0.99827826, 'index': 16, 'word': 'PA', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.99658513, 'index': 17, 'word': '##RI', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.99865216, 'index': 18, 'word': '##S', 'start': 61, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9997037, 'index': 28, 'word': 'France', 'start': 79, 'end': 85}, {'entity': 'I-MISC', 'score': 0.9984359, 'index': 33, 'word': 'African', 'start': 113, 'end': 120}, {'entity': 'I-LOC', 'score': 0.9996276, 'index': 42, 'word': 'Paris', 'start': 154, 'end': 159}, {'entity': 'I-ORG', 'score': 0.999348, 'index': 47, 'word': 'Air', 'start': 180, 'end': 183}, {'entity': 'I-ORG', 'score': 0.997248, 'index': 48, 'word': 'France', 'start': 184, 'end': 190}, {'entity': 'I-MISC', 'score': 0.94756746, 'index': 69, 'word': 'Guinea', 'start': 276, 'end': 282}, {'entity': 'I-MISC', 'score': 0.9969121, 'index': 70, 'word': '##n', 'start': 282, 'end': 283}, {'entity': 'I-LOC', 'score': 0.99673575, 'index': 81, 'word': 'Saint', 'start': 320, 'end': 325}, {'entity': 'I-LOC', 'score': 0.9932214, 'index': 82, 'word': '-', 'start': 325, 'end': 326}, {'entity': 'I-LOC', 'score': 0.9940732, 'index': 83, 'word': 'Bernard', 'start': 326, 'end': 333}, {'entity': 'I-ORG', 'score': 0.99829847, 'index': 94, 'word': 'Air', 'start': 382, 'end': 385}, {'entity': 'I-ORG', 'score': 0.99190044, 'index': 95, 'word': 'France', 'start': 386, 'end': 392}, {'entity': 'I-LOC', 'score': 0.9995647, 'index': 98, 'word': 'Con', 'start': 403, 'end': 406}, {'entity': 'I-LOC', 'score': 0.9968606, 'index': 99, 'word': '##ak', 'start': 406, 'end': 408}, {'entity': 'I-LOC', 'score': 0.9995173, 'index': 100, 'word': '##ry', 'start': 408, 'end': 410}, {'entity': 'I-ORG', 'score': 0.9984908, 'index': 109, 'word': 'Air', 'start': 454, 'end': 457}, {'entity': 'I-ORG', 'score': 0.995479, 'index': 110, 'word': 'France', 'start': 458, 'end': 464}, {'entity': 'I-MISC', 'score': 0.60640997, 'index': 113, 'word': 'pro', 'start': 468, 'end': 471}, {'entity': 'I-MISC', 'score': 0.87494236, 'index': 115, 'word': 'Socialist', 'start': 472, 'end': 481}, {'entity': 'I-ORG', 'score': 0.9918275, 'index': 116, 'word': 'CF', 'start': 482, 'end': 484}, {'entity': 'I-ORG', 'score': 0.98192215, 'index': 117, 'word': '##D', 'start': 484, 'end': 485}, {'entity': 'I-ORG', 'score': 0.985399, 'index': 118, 'word': '##T', 'start': 485, 'end': 486}, {'entity': 'I-MISC', 'score': 0.99836475, 'index': 131, 'word': 'African', 'start': 534, 'end': 541}, {'entity': 'I-ORG', 'score': 0.9912203, 'index': 184, 'word': 'CF', 'start': 783, 'end': 785}, {'entity': 'I-ORG', 'score': 0.9788462, 'index': 185, 'word': '##D', 'start': 785, 'end': 786}, {'entity': 'I-ORG', 'score': 0.96347666, 'index': 186, 'word': '##T', 'start': 786, 'end': 787}, {'entity': 'I-MISC', 'score': 0.98529667, 'index': 189, 'word': 'Communist', 'start': 796, 'end': 805}, {'entity': 'I-ORG', 'score': 0.9918534, 'index': 192, 'word': 'C', 'start': 810, 'end': 811}, {'entity': 'I-ORG', 'score': 0.98889333, 'index': 193, 'word': '##G', 'start': 811, 'end': 812}, {'entity': 'I-ORG', 'score': 0.97794455, 'index': 194, 'word': '##T', 'start': 812, 'end': 813}, {'entity': 'I-ORG', 'score': 0.9990532, 'index': 198, 'word': 'Air', 'start': 837, 'end': 840}, {'entity': 'I-ORG', 'score': 0.99644035, 'index': 199, 'word': 'France', 'start': 841, 'end': 847}, {'entity': 'I-LOC', 'score': 0.99884367, 'index': 202, 'word': 'Charles', 'start': 864, 'end': 871}, {'entity': 'I-LOC', 'score': 0.99555725, 'index': 203, 'word': 'de', 'start': 872, 'end': 874}, {'entity': 'I-LOC', 'score': 0.9960343, 'index': 204, 'word': 'G', 'start': 875, 'end': 876}, {'entity': 'I-LOC', 'score': 0.99078006, 'index': 205, 'word': '##aul', 'start': 876, 'end': 879}, {'entity': 'I-LOC', 'score': 0.9982591, 'index': 206, 'word': '##le', 'start': 879, 'end': 881}, {'entity': 'I-LOC', 'score': 0.9995733, 'index': 210, 'word': 'Paris', 'start': 899, 'end': 904}, {'entity': 'I-ORG', 'score': 0.99940157, 'index': 239, 'word': 'Air', 'start': 1031, 'end': 1034}, {'entity': 'I-ORG', 'score': 0.9981652, 'index': 240, 'word': 'France', 'start': 1035, 'end': 1041}, {'entity': 'I-PER', 'score': 0.99926716, 'index': 243, 'word': 'Christian', 'start': 1053, 'end': 1062}, {'entity': 'I-PER', 'score': 0.9994172, 'index': 244, 'word': 'Blanc', 'start': 1063, 'end': 1068}, {'entity': 'I-ORG', 'score': 0.9956434, 'index': 265, 'word': 'CF', 'start': 1164, 'end': 1166}, {'entity': 'I-ORG', 'score': 0.9854337, 'index': 266, 'word': '##D', 'start': 1166, 'end': 1167}, {'entity': 'I-ORG', 'score': 0.9558177, 'index': 267, 'word': '##T', 'start': 1167, 'end': 1168}, {'entity': 'I-PER', 'score': 0.99936515, 'index': 269, 'word': 'Franco', 'start': 1179, 'end': 1185}, {'entity': 'I-PER', 'score': 0.9992442, 'index': 270, 'word': '##is', 'start': 1185, 'end': 1187}, {'entity': 'I-PER', 'score': 0.9969131, 'index': 271, 'word': 'C', 'start': 1188, 'end': 1189}, {'entity': 'I-PER', 'score': 0.988808, 'index': 272, 'word': '##ab', 'start': 1189, 'end': 1191}, {'entity': 'I-PER', 'score': 0.983094, 'index': 273, 'word': '##rera', 'start': 1191, 'end': 1195}, {'entity': 'I-PER', 'score': 0.999353, 'index': 312, 'word': 'Alain', 'start': 1350, 'end': 1355}, {'entity': 'I-PER', 'score': 0.99971634, 'index': 313, 'word': 'Ju', 'start': 1356, 'end': 1358}, {'entity': 'I-PER', 'score': 0.9988281, 'index': 314, 'word': '##ppe', 'start': 1358, 'end': 1361}, {'entity': 'I-PER', 'score': 0.999736, 'index': 347, 'word': 'Ju', 'start': 1484, 'end': 1486}, {'entity': 'I-PER', 'score': 0.9927043, 'index': 348, 'word': '##ppe', 'start': 1486, 'end': 1489}, {'entity': 'I-PER', 'score': 0.9765096, 'index': 399, 'word': 'Ju', 'start': 1753, 'end': 1755}, {'entity': 'I-PER', 'score': 0.97730905, 'index': 400, 'word': '##ppe', 'start': 1755, 'end': 1758}]
[{'entity': 'I-MISC', 'score': 0.9992605, 'index': 1, 'word': 'German', 'start': 0, 'end': 6}, {'entity': 'I-LOC', 'score': 0.9987797, 'index': 15, 'word': 'B', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9959863, 'index': 16, 'word': '##ER', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9900919, 'index': 17, 'word': '##L', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9983876, 'index': 18, 'word': '##IN', 'start': 61, 'end': 63}, {'entity': 'I-MISC', 'score': 0.99926037, 'index': 28, 'word': 'German', 'start': 80, 'end': 86}, {'entity': 'I-PER', 'score': 0.99931896, 'index': 67, 'word': 'Nicole', 'start': 269, 'end': 275}, {'entity': 'I-PER', 'score': 0.99970955, 'index': 68, 'word': 'Ni', 'start': 276, 'end': 278}, {'entity': 'I-PER', 'score': 0.99531317, 'index': 69, 'word': '##cht', 'start': 278, 'end': 281}, {'entity': 'I-PER', 'score': 0.92248267, 'index': 70, 'word': '##er', 'start': 281, 'end': 283}, {'entity': 'I-PER', 'score': 0.94661117, 'index': 71, 'word': '##witz', 'start': 283, 'end': 287}, {'entity': 'I-LOC', 'score': 0.9998381, 'index': 87, 'word': 'Netherlands', 'start': 355, 'end': 366}, {'entity': 'I-LOC', 'score': 0.99819154, 'index': 105, 'word': 'V', 'start': 435, 'end': 436}, {'entity': 'I-LOC', 'score': 0.99284583, 'index': 106, 'word': '##el', 'start': 436, 'end': 438}, {'entity': 'I-LOC', 'score': 0.99353194, 'index': 107, 'word': '##ten', 'start': 438, 'end': 441}, {'entity': 'I-LOC', 'score': 0.9992849, 'index': 109, 'word': 'Berlin', 'start': 447, 'end': 453}, {'entity': 'I-ORG', 'score': 0.99940825, 'index': 164, 'word': 'Re', 'start': 702, 'end': 704}, {'entity': 'I-ORG', 'score': 0.9897196, 'index': 165, 'word': '##uters', 'start': 704, 'end': 709}]
[{'entity': 'I-MISC', 'score': 0.9990576, 'index': 2, 'word': 'German', 'start': 8, 'end': 14}, {'entity': 'I-MISC', 'score': 0.9994789, 'index': 7, 'word': 'Dutch', 'start': 35, 'end': 40}, {'entity': 'I-LOC', 'score': 0.9975769, 'index': 15, 'word': 'G', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9834078, 'index': 16, 'word': '##RO', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.98851717, 'index': 17, 'word': '##NI', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.98486656, 'index': 18, 'word': '##NG', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9933043, 'index': 19, 'word': '##EN', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.9997824, 'index': 21, 'word': 'Netherlands', 'start': 69, 'end': 80}, {'entity': 'I-MISC', 'score': 0.99916995, 'index': 31, 'word': 'Dutch', 'start': 97, 'end': 102}, {'entity': 'I-MISC', 'score': 0.9992341, 'index': 40, 'word': 'German', 'start': 148, 'end': 154}, {'entity': 'I-PER', 'score': 0.9990509, 'index': 42, 'word': 'Nicole', 'start': 160, 'end': 166}, {'entity': 'I-PER', 'score': 0.99968696, 'index': 43, 'word': 'Ni', 'start': 167, 'end': 169}, {'entity': 'I-PER', 'score': 0.997717, 'index': 44, 'word': '##cht', 'start': 169, 'end': 172}, {'entity': 'I-PER', 'score': 0.9576187, 'index': 45, 'word': '##er', 'start': 172, 'end': 174}, {'entity': 'I-PER', 'score': 0.9810539, 'index': 46, 'word': '##witz', 'start': 174, 'end': 178}, {'entity': 'I-LOC', 'score': 0.9993425, 'index': 57, 'word': 'G', 'start': 223, 'end': 224}, {'entity': 'I-LOC', 'score': 0.99879336, 'index': 58, 'word': '##ron', 'start': 224, 'end': 227}, {'entity': 'I-LOC', 'score': 0.99928147, 'index': 59, 'word': '##ingen', 'start': 227, 'end': 232}, {'entity': 'I-PER', 'score': 0.9993113, 'index': 80, 'word': 'Nicole', 'start': 321, 'end': 327}, {'entity': 'I-LOC', 'score': 0.99934894, 'index': 86, 'word': 'G', 'start': 345, 'end': 346}, {'entity': 'I-LOC', 'score': 0.99883634, 'index': 87, 'word': '##ron', 'start': 346, 'end': 349}, {'entity': 'I-LOC', 'score': 0.999461, 'index': 88, 'word': '##ingen', 'start': 349, 'end': 354}, {'entity': 'I-MISC', 'score': 0.99928075, 'index': 95, 'word': 'Dutch', 'start': 382, 'end': 387}, {'entity': 'I-MISC', 'score': 0.9993755, 'index': 121, 'word': 'Dutch', 'start': 487, 'end': 492}, {'entity': 'I-LOC', 'score': 0.99817944, 'index': 190, 'word': 'V', 'start': 734, 'end': 735}, {'entity': 'I-LOC', 'score': 0.9910829, 'index': 191, 'word': '##el', 'start': 735, 'end': 737}, {'entity': 'I-LOC', 'score': 0.99450666, 'index': 192, 'word': '##ten', 'start': 737, 'end': 740}, {'entity': 'I-LOC', 'score': 0.9996325, 'index': 194, 'word': 'Berlin', 'start': 746, 'end': 752}, {'entity': 'I-MISC', 'score': 0.99920183, 'index': 202, 'word': 'German', 'start': 770, 'end': 776}, {'entity': 'I-LOC', 'score': 0.9998472, 'index': 289, 'word': 'Germany', 'start': 1170, 'end': 1177}, {'entity': 'I-MISC', 'score': 0.9992224, 'index': 297, 'word': 'Dutch', 'start': 1222, 'end': 1227}, {'entity': 'I-MISC', 'score': 0.9993144, 'index': 319, 'word': 'Dutch', 'start': 1305, 'end': 1310}]
[{'entity': 'I-MISC', 'score': 0.9987692, 'index': 1, 'word': 'Indian', 'start': 0, 'end': 6}, {'entity': 'I-LOC', 'score': 0.99517363, 'index': 15, 'word': 'B', 'start': 54, 'end': 55}, {'entity': 'I-LOC', 'score': 0.960861, 'index': 16, 'word': '##OM', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9318389, 'index': 17, 'word': '##BA', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9885179, 'index': 18, 'word': '##Y', 'start': 59, 'end': 60}, {'entity': 'I-MISC', 'score': 0.998868, 'index': 28, 'word': 'Indian', 'start': 77, 'end': 83}, {'entity': 'I-ORG', 'score': 0.999708, 'index': 49, 'word': 'Hindus', 'start': 197, 'end': 203}, {'entity': 'I-ORG', 'score': 0.9997054, 'index': 50, 'word': '##tan', 'start': 203, 'end': 206}, {'entity': 'I-ORG', 'score': 0.9995555, 'index': 51, 'word': 'Copper', 'start': 207, 'end': 213}, {'entity': 'I-ORG', 'score': 0.999503, 'index': 52, 'word': 'Ltd', 'start': 214, 'end': 217}, {'entity': 'I-ORG', 'score': 0.9992567, 'index': 110, 'word': 'Hindus', 'start': 444, 'end': 450}, {'entity': 'I-ORG', 'score': 0.9992907, 'index': 111, 'word': '##tan', 'start': 450, 'end': 453}, {'entity': 'I-ORG', 'score': 0.99872273, 'index': 112, 'word': 'Copper', 'start': 454, 'end': 460}, {'entity': 'I-ORG', 'score': 0.99935716, 'index': 202, 'word': 'Bombay', 'start': 726, 'end': 732}, {'entity': 'I-ORG', 'score': 0.9988135, 'index': 203, 'word': 'Co', 'start': 733, 'end': 735}, {'entity': 'I-ORG', 'score': 0.98684573, 'index': 204, 'word': '##mm', 'start': 735, 'end': 737}, {'entity': 'I-ORG', 'score': 0.9759621, 'index': 205, 'word': '##od', 'start': 737, 'end': 739}, {'entity': 'I-ORG', 'score': 0.99651504, 'index': 206, 'word': '##ities', 'start': 739, 'end': 744}]
[{'entity': 'I-LOC', 'score': 0.99763215, 'index': 1, 'word': 'MA', 'start': 0, 'end': 2}, {'entity': 'I-LOC', 'score': 0.9673601, 'index': 2, 'word': '##RT', 'start': 2, 'end': 4}, {'entity': 'I-LOC', 'score': 0.9432658, 'index': 3, 'word': '##EL', 'start': 4, 'end': 6}, {'entity': 'I-LOC', 'score': 0.9893931, 'index': 4, 'word': '##A', 'start': 6, 'end': 7}, {'entity': 'I-LOC', 'score': 0.99757975, 'index': 32, 'word': 'H', 'start': 49, 'end': 50}, {'entity': 'I-LOC', 'score': 0.9952419, 'index': 33, 'word': '##EL', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.989764, 'index': 34, 'word': '##SI', 'start': 52, 'end': 54}, {'entity': 'I-LOC', 'score': 0.96878046, 'index': 35, 'word': '##N', 'start': 54, 'end': 55}, {'entity': 'I-LOC', 'score': 0.974312, 'index': 36, 'word': '##K', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9961994, 'index': 37, 'word': '##I', 'start': 56, 'end': 57}]
[{'entity': 'I-MISC', 'score': 0.99911207, 'index': 1, 'word': 'Canadian', 'start': 0, 'end': 8}, {'entity': 'I-LOC', 'score': 0.99944144, 'index': 8, 'word': 'U', 'start': 40, 'end': 41}, {'entity': 'I-LOC', 'score': 0.9982981, 'index': 10, 'word': 'S', 'start': 42, 'end': 43}, {'entity': 'I-LOC', 'score': 0.9978853, 'index': 18, 'word': 'TO', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.99031633, 'index': 19, 'word': '##RO', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9857407, 'index': 20, 'word': '##NT', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.996833, 'index': 21, 'word': '##O', 'start': 65, 'end': 66}, {'entity': 'I-MISC', 'score': 0.9991341, 'index': 31, 'word': 'Canadian', 'start': 83, 'end': 91}, {'entity': 'I-LOC', 'score': 0.9993849, 'index': 43, 'word': 'U', 'start': 150, 'end': 151}, {'entity': 'I-LOC', 'score': 0.99133354, 'index': 45, 'word': 'S', 'start': 152, 'end': 153}, {'entity': 'I-LOC', 'score': 0.9993993, 'index': 53, 'word': 'U', 'start': 181, 'end': 182}, {'entity': 'I-LOC', 'score': 0.97627366, 'index': 55, 'word': 'S', 'start': 183, 'end': 184}, {'entity': 'I-MISC', 'score': 0.9993974, 'index': 60, 'word': 'Canadian', 'start': 204, 'end': 212}, {'entity': 'I-MISC', 'score': 0.9992618, 'index': 78, 'word': 'Canadian', 'start': 276, 'end': 284}, {'entity': 'I-PER', 'score': 0.999318, 'index': 95, 'word': 'Jim', 'start': 385, 'end': 388}, {'entity': 'I-PER', 'score': 0.9996711, 'index': 96, 'word': 'Webber', 'start': 389, 'end': 395}, {'entity': 'I-ORG', 'score': 0.99966216, 'index': 105, 'word': 'TD', 'start': 437, 'end': 439}, {'entity': 'I-ORG', 'score': 0.9996118, 'index': 106, 'word': 'Securities', 'start': 440, 'end': 450}, {'entity': 'I-ORG', 'score': 0.99937266, 'index': 107, 'word': 'Inc', 'start': 451, 'end': 454}, {'entity': 'I-LOC', 'score': 0.99958414, 'index': 113, 'word': 'Canada', 'start': 462, 'end': 468}, {'entity': 'I-MISC', 'score': 0.997707, 'index': 125, 'word': 'C', 'start': 503, 'end': 504}, {'entity': 'I-MISC', 'score': 0.99794656, 'index': 131, 'word': 'C', 'start': 514, 'end': 515}, {'entity': 'I-LOC', 'score': 0.9994735, 'index': 149, 'word': 'U', 'start': 558, 'end': 559}, {'entity': 'I-LOC', 'score': 0.99754983, 'index': 151, 'word': 'S', 'start': 560, 'end': 561}, {'entity': 'I-ORG', 'score': 0.9959894, 'index': 199, 'word': 'Statistics', 'start': 746, 'end': 756}, {'entity': 'I-ORG', 'score': 0.9969259, 'index': 200, 'word': 'Canada', 'start': 757, 'end': 763}, {'entity': 'I-LOC', 'score': 0.99961877, 'index': 204, 'word': 'Canada', 'start': 783, 'end': 789}, {'entity': 'I-MISC', 'score': 0.99783295, 'index': 217, 'word': 'C', 'start': 841, 'end': 842}, {'entity': 'I-MISC', 'score': 0.99784505, 'index': 228, 'word': 'C', 'start': 887, 'end': 888}, {'entity': 'I-LOC', 'score': 0.99957854, 'index': 264, 'word': 'Canada', 'start': 1029, 'end': 1035}, {'entity': 'I-MISC', 'score': 0.99933726, 'index': 307, 'word': 'Canadian', 'start': 1209, 'end': 1217}, {'entity': 'I-MISC', 'score': 0.9991779, 'index': 311, 'word': 'Canadian', 'start': 1231, 'end': 1239}, {'entity': 'I-LOC', 'score': 0.9993475, 'index': 313, 'word': 'U', 'start': 1244, 'end': 1245}, {'entity': 'I-LOC', 'score': 0.9935163, 'index': 315, 'word': 'S', 'start': 1246, 'end': 1247}, {'entity': 'I-LOC', 'score': 0.9992286, 'index': 324, 'word': 'U', 'start': 1294, 'end': 1295}, {'entity': 'I-LOC', 'score': 0.97119695, 'index': 326, 'word': 'S', 'start': 1296, 'end': 1297}, {'entity': 'I-ORG', 'score': 0.99894065, 'index': 336, 'word': 'Chicago', 'start': 1346, 'end': 1353}, {'entity': 'I-ORG', 'score': 0.99884063, 'index': 337, 'word': 'P', 'start': 1354, 'end': 1355}, {'entity': 'I-ORG', 'score': 0.8971868, 'index': 338, 'word': '##ur', 'start': 1355, 'end': 1357}, {'entity': 'I-ORG', 'score': 0.9866348, 'index': 339, 'word': '##cha', 'start': 1357, 'end': 1360}, {'entity': 'I-ORG', 'score': 0.99345315, 'index': 340, 'word': '##sing', 'start': 1360, 'end': 1364}, {'entity': 'I-ORG', 'score': 0.9972126, 'index': 341, 'word': 'Manager', 'start': 1365, 'end': 1372}, {'entity': 'I-ORG', 'score': 0.99621755, 'index': 342, 'word': '##s', 'start': 1372, 'end': 1373}, {'entity': 'I-PER', 'score': 0.99942017, 'index': 373, 'word': 'Webber', 'start': 1499, 'end': 1505}, {'entity': 'I-LOC', 'score': 0.9694296, 'index': 384, 'word': 'Toronto', 'start': 1533, 'end': 1540}, {'entity': 'I-MISC', 'score': 0.99834657, 'index': 399, 'word': 'Canadian', 'start': 1613, 'end': 1621}, {'entity': 'I-ORG', 'score': 0.88480574, 'index': 411, 'word': 'GM', 'start': 1663, 'end': 1665}, {'entity': 'I-MISC', 'score': 0.903207, 'index': 418, 'word': 'S', 'start': 1681, 'end': 1682}, {'entity': 'I-MISC', 'score': 0.99794227, 'index': 421, 'word': 'Canadian', 'start': 1688, 'end': 1696}, {'entity': 'I-MISC', 'score': 0.9970657, 'index': 430, 'word': 'Canadian', 'start': 1751, 'end': 1759}, {'entity': 'I-MISC', 'score': 0.8807004, 'index': 444, 'word': 'S', 'start': 1822, 'end': 1823}, {'entity': 'I-MISC', 'score': 0.81539, 'index': 458, 'word': 'C', 'start': 1872, 'end': 1873}, {'entity': 'I-MISC', 'score': 0.8639058, 'index': 464, 'word': 'C', 'start': 1883, 'end': 1884}, {'entity': 'I-MISC', 'score': 0.83001435, 'index': 479, 'word': 'S', 'start': 1919, 'end': 1920}, {'entity': 'I-LOC', 'score': 0.50083417, 'index': 482, 'word': 'U', 'start': 1926, 'end': 1927}, {'entity': 'I-MISC', 'score': 0.7916916, 'index': 484, 'word': 'S', 'start': 1928, 'end': 1929}, {'entity': 'I-MISC', 'score': 0.77178097, 'index': 504, 'word': 'S', 'start': 1986, 'end': 1987}]
[{'entity': 'I-ORG', 'score': 0.9928861, 'index': 1, 'word': 'A', 'start': 0, 'end': 1}, {'entity': 'I-ORG', 'score': 0.9854247, 'index': 2, 'word': '##w', 'start': 1, 'end': 2}, {'entity': 'I-ORG', 'score': 0.99915016, 'index': 3, 'word': 'Computer', 'start': 3, 'end': 11}, {'entity': 'I-ORG', 'score': 0.99879587, 'index': 4, 'word': 'Systems', 'start': 12, 'end': 19}, {'entity': 'I-ORG', 'score': 0.9993327, 'index': 5, 'word': 'Inc', 'start': 20, 'end': 23}, {'entity': 'I-LOC', 'score': 0.99925524, 'index': 16, 'word': 'NE', 'start': 46, 'end': 48}, {'entity': 'I-LOC', 'score': 0.9983531, 'index': 17, 'word': '##W', 'start': 48, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9993906, 'index': 18, 'word': 'Y', 'start': 50, 'end': 51}, {'entity': 'I-LOC', 'score': 0.9517519, 'index': 19, 'word': '##OR', 'start': 51, 'end': 53}, {'entity': 'I-LOC', 'score': 0.99932075, 'index': 20, 'word': '##K', 'start': 53, 'end': 54}, {'entity': 'I-ORG', 'score': 0.9993467, 'index': 176, 'word': 'New', 'start': 375, 'end': 378}, {'entity': 'I-ORG', 'score': 0.9993992, 'index': 177, 'word': 'York', 'start': 379, 'end': 383}, {'entity': 'I-ORG', 'score': 0.9985116, 'index': 178, 'word': 'News', 'start': 384, 'end': 388}, {'entity': 'I-ORG', 'score': 0.99580824, 'index': 179, 'word': '##des', 'start': 388, 'end': 391}, {'entity': 'I-ORG', 'score': 0.9944351, 'index': 180, 'word': '##k', 'start': 391, 'end': 392}]
[{'entity': 'I-ORG', 'score': 0.9996425, 'index': 8, 'word': 'Home', 'start': 14, 'end': 18}, {'entity': 'I-ORG', 'score': 0.9995377, 'index': 9, 'word': '##gate', 'start': 18, 'end': 22}, {'entity': 'I-ORG', 'score': 0.99779665, 'index': 10, 'word': 'Hospital', 'start': 23, 'end': 31}, {'entity': 'I-ORG', 'score': 0.99844605, 'index': 11, 'word': '##ity', 'start': 31, 'end': 34}, {'entity': 'I-ORG', 'score': 0.9992648, 'index': 12, 'word': 'Inc', 'start': 35, 'end': 38}, {'entity': 'I-LOC', 'score': 0.99736446, 'index': 18, 'word': 'WA', 'start': 46, 'end': 48}, {'entity': 'I-LOC', 'score': 0.86888033, 'index': 19, 'word': '##S', 'start': 48, 'end': 49}, {'entity': 'I-LOC', 'score': 0.90650904, 'index': 20, 'word': '##H', 'start': 49, 'end': 50}, {'entity': 'I-LOC', 'score': 0.94935465, 'index': 21, 'word': '##ING', 'start': 50, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9652794, 'index': 22, 'word': '##TO', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.9772035, 'index': 23, 'word': '##N', 'start': 55, 'end': 56}, {'entity': 'I-ORG', 'score': 0.9995018, 'index': 35, 'word': 'Home', 'start': 86, 'end': 90}, {'entity': 'I-ORG', 'score': 0.99942064, 'index': 36, 'word': '##gate', 'start': 90, 'end': 94}, {'entity': 'I-ORG', 'score': 0.9983505, 'index': 37, 'word': 'Hospital', 'start': 95, 'end': 103}, {'entity': 'I-ORG', 'score': 0.99872166, 'index': 38, 'word': '##ity', 'start': 103, 'end': 106}, {'entity': 'I-ORG', 'score': 0.99944645, 'index': 39, 'word': 'Inc', 'start': 107, 'end': 110}, {'entity': 'I-MISC', 'score': 0.96316016, 'index': 44, 'word': 'Na', 'start': 116, 'end': 118}, {'entity': 'I-MISC', 'score': 0.8143036, 'index': 45, 'word': '##s', 'start': 118, 'end': 119}, {'entity': 'I-MISC', 'score': 0.8662725, 'index': 46, 'word': '##da', 'start': 119, 'end': 121}, {'entity': 'I-ORG', 'score': 0.9994586, 'index': 111, 'word': 'Bear', 'start': 307, 'end': 311}, {'entity': 'I-ORG', 'score': 0.9996941, 'index': 112, 'word': 'St', 'start': 312, 'end': 314}, {'entity': 'I-ORG', 'score': 0.9959105, 'index': 113, 'word': '##ear', 'start': 314, 'end': 317}, {'entity': 'I-ORG', 'score': 0.99954873, 'index': 114, 'word': '##ns', 'start': 317, 'end': 319}, {'entity': 'I-ORG', 'score': 0.99935716, 'index': 115, 'word': '&', 'start': 320, 'end': 321}, {'entity': 'I-ORG', 'score': 0.99946254, 'index': 116, 'word': 'Co', 'start': 322, 'end': 324}, {'entity': 'I-ORG', 'score': 0.99951303, 'index': 117, 'word': 'Inc', 'start': 325, 'end': 328}, {'entity': 'I-LOC', 'score': 0.9991146, 'index': 163, 'word': 'United', 'start': 527, 'end': 533}, {'entity': 'I-LOC', 'score': 0.9983259, 'index': 164, 'word': 'States', 'start': 534, 'end': 540}]
[{'entity': 'I-LOC', 'score': 0.99980396, 'index': 1, 'word': 'Syria', 'start': 0, 'end': 5}, {'entity': 'I-LOC', 'score': 0.99978393, 'index': 4, 'word': 'Israel', 'start': 12, 'end': 18}, {'entity': 'I-LOC', 'score': 0.997687, 'index': 12, 'word': 'D', 'start': 41, 'end': 42}, {'entity': 'I-LOC', 'score': 0.9866014, 'index': 13, 'word': '##AM', 'start': 42, 'end': 44}, {'entity': 'I-LOC', 'score': 0.97477096, 'index': 14, 'word': '##AS', 'start': 44, 'end': 46}, {'entity': 'I-LOC', 'score': 0.9877275, 'index': 15, 'word': '##CU', 'start': 46, 'end': 48}, {'entity': 'I-LOC', 'score': 0.9960829, 'index': 16, 'word': '##S', 'start': 48, 'end': 49}, {'entity': 'I-LOC', 'score': 0.99981886, 'index': 26, 'word': 'Syria', 'start': 66, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9997248, 'index': 30, 'word': 'Israel', 'start': 92, 'end': 98}, {'entity': 'I-PER', 'score': 0.9994029, 'index': 39, 'word': 'Benjamin', 'start': 144, 'end': 152}, {'entity': 'I-PER', 'score': 0.99961996, 'index': 40, 'word': 'Net', 'start': 153, 'end': 156}, {'entity': 'I-PER', 'score': 0.9471568, 'index': 41, 'word': '##any', 'start': 156, 'end': 159}, {'entity': 'I-PER', 'score': 0.99927384, 'index': 42, 'word': '##ahu', 'start': 159, 'end': 162}, {'entity': 'I-MISC', 'score': 0.9952437, 'index': 48, 'word': 'Arabs', 'start': 190, 'end': 195}, {'entity': 'I-MISC', 'score': 0.9992224, 'index': 59, 'word': 'Israeli', 'start': 222, 'end': 229}, {'entity': 'I-MISC', 'score': 0.99825567, 'index': 84, 'word': 'Arab', 'start': 365, 'end': 369}, {'entity': 'I-ORG', 'score': 0.99930143, 'index': 91, 'word': 'Damascus', 'start': 390, 'end': 398}, {'entity': 'I-ORG', 'score': 0.99830365, 'index': 92, 'word': 'Radio', 'start': 399, 'end': 404}, {'entity': 'I-MISC', 'score': 0.9978567, 'index': 135, 'word': 'Palestinian', 'start': 583, 'end': 594}, {'entity': 'I-PER', 'score': 0.99964356, 'index': 137, 'word': 'Ya', 'start': 605, 'end': 607}, {'entity': 'I-PER', 'score': 0.9987973, 'index': 138, 'word': '##sser', 'start': 607, 'end': 611}, {'entity': 'I-PER', 'score': 0.999529, 'index': 139, 'word': 'Ara', 'start': 612, 'end': 615}, {'entity': 'I-PER', 'score': 0.99568343, 'index': 140, 'word': '##fa', 'start': 615, 'end': 617}, {'entity': 'I-PER', 'score': 0.99608636, 'index': 141, 'word': '##t', 'start': 617, 'end': 618}, {'entity': 'I-LOC', 'score': 0.9997178, 'index': 152, 'word': 'West', 'start': 681, 'end': 685}, {'entity': 'I-LOC', 'score': 0.99970907, 'index': 153, 'word': 'Bank', 'start': 686, 'end': 690}, {'entity': 'I-MISC', 'score': 0.9920691, 'index': 164, 'word': 'Palestinians', 'start': 722, 'end': 734}, {'entity': 'I-LOC', 'score': 0.9996811, 'index': 167, 'word': 'West', 'start': 742, 'end': 746}, {'entity': 'I-LOC', 'score': 0.9996779, 'index': 168, 'word': 'Bank', 'start': 747, 'end': 751}, {'entity': 'I-LOC', 'score': 0.9997905, 'index': 170, 'word': 'Gaza', 'start': 756, 'end': 760}, {'entity': 'I-MISC', 'score': 0.9990067, 'index': 180, 'word': 'Israeli', 'start': 814, 'end': 821}, {'entity': 'I-MISC', 'score': 0.9873914, 'index': 190, 'word': 'Arabs', 'start': 850, 'end': 855}, {'entity': 'I-MISC', 'score': 0.9989956, 'index': 206, 'word': 'Israeli', 'start': 918, 'end': 925}, {'entity': 'I-LOC', 'score': 0.9995956, 'index': 214, 'word': 'Israel', 'start': 946, 'end': 952}, {'entity': 'I-MISC', 'score': 0.99795234, 'index': 220, 'word': 'Arab', 'start': 981, 'end': 985}, {'entity': 'I-MISC', 'score': 0.9968624, 'index': 230, 'word': 'Arab', 'start': 1026, 'end': 1030}, {'entity': 'I-LOC', 'score': 0.99723804, 'index': 243, 'word': 'Damascus', 'start': 1099, 'end': 1107}, {'entity': 'I-LOC', 'score': 0.9997404, 'index': 257, 'word': 'Israel', 'start': 1169, 'end': 1175}, {'entity': 'I-MISC', 'score': 0.99910116, 'index': 270, 'word': 'Israeli', 'start': 1243, 'end': 1250}, {'entity': 'I-LOC', 'score': 0.99971765, 'index': 295, 'word': 'Israel', 'start': 1371, 'end': 1377}, {'entity': 'I-LOC', 'score': 0.9997553, 'index': 322, 'word': 'Syria', 'start': 1501, 'end': 1506}, {'entity': 'I-MISC', 'score': 0.98870707, 'index': 324, 'word': 'Arabs', 'start': 1511, 'end': 1516}, {'entity': 'I-PER', 'score': 0.99957424, 'index': 330, 'word': 'Net', 'start': 1539, 'end': 1542}, {'entity': 'I-PER', 'score': 0.9288267, 'index': 331, 'word': '##any', 'start': 1542, 'end': 1545}, {'entity': 'I-PER', 'score': 0.99777895, 'index': 332, 'word': '##ahu', 'start': 1545, 'end': 1548}, {'entity': 'I-MISC', 'score': 0.99672616, 'index': 340, 'word': 'Arab', 'start': 1582, 'end': 1586}, {'entity': 'I-LOC', 'score': 0.9996276, 'index': 357, 'word': 'Jerusalem', 'start': 1672, 'end': 1681}, {'entity': 'I-LOC', 'score': 0.9996927, 'index': 365, 'word': 'Israel', 'start': 1706, 'end': 1712}, {'entity': 'I-LOC', 'score': 0.99982053, 'index': 371, 'word': 'Syria', 'start': 1720, 'end': 1725}, {'entity': 'I-LOC', 'score': 0.9997768, 'index': 379, 'word': 'Israel', 'start': 1761, 'end': 1767}]
[{'entity': 'I-LOC', 'score': 0.9997986, 'index': 1, 'word': 'Egypt', 'start': 0, 'end': 5}, {'entity': 'I-MISC', 'score': 0.99605834, 'index': 7, 'word': 'Mo', 'start': 33, 'end': 35}, {'entity': 'I-MISC', 'score': 0.97552454, 'index': 8, 'word': '##sle', 'start': 35, 'end': 38}, {'entity': 'I-MISC', 'score': 0.9760799, 'index': 9, 'word': '##m', 'start': 38, 'end': 39}, {'entity': 'I-LOC', 'score': 0.9953884, 'index': 16, 'word': 'CA', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9674205, 'index': 17, 'word': '##IR', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.99668175, 'index': 18, 'word': '##O', 'start': 61, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9996841, 'index': 35, 'word': 'Egypt', 'start': 124, 'end': 129}, {'entity': 'I-ORG', 'score': 0.99534297, 'index': 41, 'word': 'al', 'start': 156, 'end': 158}, {'entity': 'I-ORG', 'score': 0.5806565, 'index': 42, 'word': '-', 'start': 158, 'end': 159}, {'entity': 'I-ORG', 'score': 0.9994629, 'index': 43, 'word': 'G', 'start': 159, 'end': 160}, {'entity': 'I-ORG', 'score': 0.9968299, 'index': 44, 'word': '##ama', 'start': 160, 'end': 163}, {'entity': 'I-ORG', 'score': 0.9410893, 'index': 45, 'word': "'", 'start': 163, 'end': 164}, {'entity': 'I-ORG', 'score': 0.9988483, 'index': 46, 'word': 'a', 'start': 164, 'end': 165}, {'entity': 'I-ORG', 'score': 0.99830604, 'index': 47, 'word': 'al', 'start': 166, 'end': 168}, {'entity': 'I-ORG', 'score': 0.9174397, 'index': 48, 'word': '-', 'start': 168, 'end': 169}, {'entity': 'I-ORG', 'score': 0.9978442, 'index': 49, 'word': 'Islam', 'start': 169, 'end': 174}, {'entity': 'I-ORG', 'score': 0.99860686, 'index': 50, 'word': '##iya', 'start': 174, 'end': 177}, {'entity': 'I-ORG', 'score': 0.99921334, 'index': 52, 'word': 'Islamic', 'start': 180, 'end': 187}, {'entity': 'I-ORG', 'score': 0.99938965, 'index': 53, 'word': 'Group', 'start': 188, 'end': 193}, {'entity': 'I-LOC', 'score': 0.998367, 'index': 75, 'word': 'S', 'start': 301, 'end': 302}, {'entity': 'I-LOC', 'score': 0.99702495, 'index': 76, 'word': '##har', 'start': 302, 'end': 305}, {'entity': 'I-LOC', 'score': 0.9912281, 'index': 77, 'word': '##qi', 'start': 305, 'end': 307}, {'entity': 'I-LOC', 'score': 0.99838734, 'index': 78, 'word': '##yah', 'start': 307, 'end': 310}, {'entity': 'I-PER', 'score': 0.9994361, 'index': 84, 'word': 'Ram', 'start': 349, 'end': 352}, {'entity': 'I-PER', 'score': 0.99900013, 'index': 85, 'word': '##i', 'start': 352, 'end': 353}, {'entity': 'I-PER', 'score': 0.99903035, 'index': 86, 'word': 'al', 'start': 354, 'end': 356}, {'entity': 'I-PER', 'score': 0.547847, 'index': 87, 'word': '-', 'start': 356, 'end': 357}, {'entity': 'I-PER', 'score': 0.99149126, 'index': 88, 'word': 'Sa', 'start': 357, 'end': 359}, {'entity': 'I-PER', 'score': 0.98741233, 'index': 89, 'word': '##ada', 'start': 359, 'end': 362}, {'entity': 'I-PER', 'score': 0.9929454, 'index': 90, 'word': '##ni', 'start': 362, 'end': 364}, {'entity': 'I-LOC', 'score': 0.99959904, 'index': 96, 'word': 'Cairo', 'start': 393, 'end': 398}, {'entity': 'I-ORG', 'score': 0.99673516, 'index': 102, 'word': 'Al', 'start': 406, 'end': 408}, {'entity': 'I-ORG', 'score': 0.8181028, 'index': 103, 'word': '-', 'start': 408, 'end': 409}, {'entity': 'I-ORG', 'score': 0.99615026, 'index': 104, 'word': 'A', 'start': 409, 'end': 410}, {'entity': 'I-ORG', 'score': 0.8348841, 'index': 105, 'word': '##kh', 'start': 410, 'end': 412}, {'entity': 'I-ORG', 'score': 0.9654198, 'index': 106, 'word': '##bar', 'start': 412, 'end': 415}, {'entity': 'I-ORG', 'score': 0.99685067, 'index': 174, 'word': 'G', 'start': 750, 'end': 751}, {'entity': 'I-ORG', 'score': 0.99257386, 'index': 175, 'word': '##ama', 'start': 751, 'end': 754}, {'entity': 'I-ORG', 'score': 0.95402867, 'index': 176, 'word': "'", 'start': 754, 'end': 755}, {'entity': 'I-ORG', 'score': 0.99203694, 'index': 177, 'word': 'a', 'start': 755, 'end': 756}, {'entity': 'I-PER', 'score': 0.9993166, 'index': 185, 'word': 'Ho', 'start': 794, 'end': 796}, {'entity': 'I-PER', 'score': 0.94855374, 'index': 186, 'word': '##s', 'start': 796, 'end': 797}, {'entity': 'I-PER', 'score': 0.9971227, 'index': 187, 'word': '##ni', 'start': 797, 'end': 799}, {'entity': 'I-PER', 'score': 0.9990508, 'index': 188, 'word': 'Mu', 'start': 800, 'end': 802}, {'entity': 'I-PER', 'score': 0.917996, 'index': 189, 'word': '##bara', 'start': 802, 'end': 806}, {'entity': 'I-PER', 'score': 0.9470937, 'index': 190, 'word': '##k', 'start': 806, 'end': 807}, {'entity': 'I-MISC', 'score': 0.99004465, 'index': 199, 'word': 'Islamic', 'start': 845, 'end': 852}]
[{'entity': 'I-LOC', 'score': 0.9996166, 'index': 1, 'word': 'Israel', 'start': 0, 'end': 6}, {'entity': 'I-MISC', 'score': 0.9981166, 'index': 3, 'word': 'Palestinian', 'start': 14, 'end': 25}, {'entity': 'I-PER', 'score': 0.9995228, 'index': 12, 'word': 'Sami', 'start': 53, 'end': 57}, {'entity': 'I-PER', 'score': 0.99956197, 'index': 13, 'word': 'A', 'start': 58, 'end': 59}, {'entity': 'I-PER', 'score': 0.9755769, 'index': 14, 'word': '##bo', 'start': 59, 'end': 61}, {'entity': 'I-PER', 'score': 0.9974591, 'index': 15, 'word': '##udi', 'start': 61, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9917311, 'index': 20, 'word': 'AL', 'start': 70, 'end': 72}, {'entity': 'I-LOC', 'score': 0.8574905, 'index': 21, 'word': '-', 'start': 72, 'end': 73}, {'entity': 'I-LOC', 'score': 0.9866013, 'index': 22, 'word': 'RAM', 'start': 73, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9997056, 'index': 24, 'word': 'West', 'start': 79, 'end': 83}, {'entity': 'I-LOC', 'score': 0.99973196, 'index': 25, 'word': 'Bank', 'start': 84, 'end': 88}, {'entity': 'I-PER', 'score': 0.99961674, 'index': 35, 'word': 'Ka', 'start': 105, 'end': 107}, {'entity': 'I-PER', 'score': 0.99939334, 'index': 36, 'word': '##mi', 'start': 107, 'end': 109}, {'entity': 'I-PER', 'score': 0.99957675, 'index': 37, 'word': '##l', 'start': 109, 'end': 110}, {'entity': 'I-PER', 'score': 0.9998099, 'index': 38, 'word': 'Jam', 'start': 111, 'end': 114}, {'entity': 'I-PER', 'score': 0.9987662, 'index': 39, 'word': '##il', 'start': 114, 'end': 116}, {'entity': 'I-MISC', 'score': 0.9991161, 'index': 53, 'word': 'Israeli', 'start': 149, 'end': 156}, {'entity': 'I-MISC', 'score': 0.99820375, 'index': 63, 'word': 'Palestinian', 'start': 191, 'end': 202}, {'entity': 'I-PER', 'score': 0.9996, 'index': 66, 'word': 'Ya', 'start': 218, 'end': 220}, {'entity': 'I-PER', 'score': 0.999382, 'index': 67, 'word': '##sser', 'start': 220, 'end': 224}, {'entity': 'I-PER', 'score': 0.9996741, 'index': 68, 'word': 'Ara', 'start': 225, 'end': 228}, {'entity': 'I-PER', 'score': 0.99724495, 'index': 69, 'word': '##fa', 'start': 228, 'end': 230}, {'entity': 'I-PER', 'score': 0.998495, 'index': 70, 'word': '##t', 'start': 230, 'end': 231}, {'entity': 'I-LOC', 'score': 0.9997545, 'index': 77, 'word': 'Jerusalem', 'start': 254, 'end': 263}, {'entity': 'I-LOC', 'score': 0.9988851, 'index': 80, 'word': 'al', 'start': 267, 'end': 269}, {'entity': 'I-LOC', 'score': 0.9738046, 'index': 81, 'word': '-', 'start': 269, 'end': 270}, {'entity': 'I-LOC', 'score': 0.9983569, 'index': 82, 'word': 'A', 'start': 270, 'end': 271}, {'entity': 'I-LOC', 'score': 0.9944771, 'index': 83, 'word': '##q', 'start': 271, 'end': 272}, {'entity': 'I-LOC', 'score': 0.9987509, 'index': 84, 'word': '##sa', 'start': 272, 'end': 274}, {'entity': 'I-MISC', 'score': 0.9990446, 'index': 109, 'word': 'Israeli', 'start': 350, 'end': 357}, {'entity': 'I-PER', 'score': 0.99973863, 'index': 113, 'word': 'Jam', 'start': 376, 'end': 379}, {'entity': 'I-PER', 'score': 0.9921864, 'index': 114, 'word': '##il', 'start': 379, 'end': 381}, {'entity': 'I-MISC', 'score': 0.9921759, 'index': 116, 'word': 'Hebrew', 'start': 385, 'end': 391}, {'entity': 'I-MISC', 'score': 0.9976325, 'index': 122, 'word': 'Palestinian', 'start': 399, 'end': 410}, {'entity': 'I-PER', 'score': 0.9996748, 'index': 124, 'word': 'Ara', 'start': 421, 'end': 424}, {'entity': 'I-PER', 'score': 0.99857783, 'index': 125, 'word': '##fa', 'start': 424, 'end': 426}, {'entity': 'I-PER', 'score': 0.99905246, 'index': 126, 'word': '##t', 'start': 426, 'end': 427}, {'entity': 'I-LOC', 'score': 0.9996481, 'index': 129, 'word': 'Israel', 'start': 440, 'end': 446}, {'entity': 'I-MISC', 'score': 0.99708587, 'index': 135, 'word': 'Jewish', 'start': 469, 'end': 475}, {'entity': 'I-LOC', 'score': 0.9997638, 'index': 141, 'word': 'Jerusalem', 'start': 506, 'end': 515}, {'entity': 'I-MISC', 'score': 0.9985001, 'index': 146, 'word': 'Palestinian', 'start': 534, 'end': 545}, {'entity': 'I-MISC', 'score': 0.9885169, 'index': 155, 'word': 'Arabs', 'start': 595, 'end': 600}, {'entity': 'I-LOC', 'score': 0.999747, 'index': 158, 'word': 'West', 'start': 608, 'end': 612}, {'entity': 'I-LOC', 'score': 0.9995875, 'index': 159, 'word': 'Bank', 'start': 613, 'end': 617}, {'entity': 'I-LOC', 'score': 0.99979407, 'index': 161, 'word': 'Gaza', 'start': 622, 'end': 626}, {'entity': 'I-MISC', 'score': 0.99706835, 'index': 188, 'word': 'Palestinians', 'start': 712, 'end': 724}, {'entity': 'I-LOC', 'score': 0.9997044, 'index': 193, 'word': 'Israel', 'start': 745, 'end': 751}, {'entity': 'I-LOC', 'score': 0.9997167, 'index': 198, 'word': 'West', 'start': 777, 'end': 781}, {'entity': 'I-LOC', 'score': 0.9997162, 'index': 199, 'word': 'Bank', 'start': 782, 'end': 786}, {'entity': 'I-LOC', 'score': 0.9997882, 'index': 201, 'word': 'Jerusalem', 'start': 790, 'end': 799}, {'entity': 'I-MISC', 'score': 0.99493635, 'index': 206, 'word': 'Mo', 'start': 826, 'end': 828}, {'entity': 'I-MISC', 'score': 0.9633138, 'index': 207, 'word': '##sle', 'start': 828, 'end': 831}, {'entity': 'I-MISC', 'score': 0.98243815, 'index': 208, 'word': '##m', 'start': 831, 'end': 832}, {'entity': 'I-MISC', 'score': 0.9966425, 'index': 215, 'word': 'Jewish', 'start': 867, 'end': 873}, {'entity': 'I-MISC', 'score': 0.9990809, 'index': 227, 'word': 'Israeli', 'start': 913, 'end': 920}, {'entity': 'I-LOC', 'score': 0.9996779, 'index': 232, 'word': 'Jerusalem', 'start': 946, 'end': 955}, {'entity': 'I-LOC', 'score': 0.99952006, 'index': 242, 'word': 'Israel', 'start': 1005, 'end': 1011}, {'entity': 'I-ORG', 'score': 0.9994236, 'index': 260, 'word': 'P', 'start': 1074, 'end': 1075}, {'entity': 'I-ORG', 'score': 0.99907035, 'index': 261, 'word': '##L', 'start': 1075, 'end': 1076}, {'entity': 'I-ORG', 'score': 0.99775404, 'index': 262, 'word': '##O', 'start': 1076, 'end': 1077}, {'entity': 'I-LOC', 'score': 0.9987262, 'index': 264, 'word': 'Arab', 'start': 1084, 'end': 1088}, {'entity': 'I-LOC', 'score': 0.9988458, 'index': 265, 'word': 'East', 'start': 1089, 'end': 1093}, {'entity': 'I-LOC', 'score': 0.9994535, 'index': 266, 'word': 'Jerusalem', 'start': 1094, 'end': 1103}, {'entity': 'I-MISC', 'score': 0.9982077, 'index': 273, 'word': 'Palestinian', 'start': 1131, 'end': 1142}, {'entity': 'I-MISC', 'score': 0.9964114, 'index': 283, 'word': 'Palestinians', 'start': 1167, 'end': 1179}, {'entity': 'I-PER', 'score': 0.9982126, 'index': 311, 'word': 'Abu', 'start': 1270, 'end': 1273}, {'entity': 'I-PER', 'score': 0.9992663, 'index': 312, 'word': 'Am', 'start': 1274, 'end': 1276}, {'entity': 'I-PER', 'score': 0.99879897, 'index': 313, 'word': '##mar', 'start': 1276, 'end': 1279}, {'entity': 'I-PER', 'score': 0.9994266, 'index': 317, 'word': 'Ara', 'start': 1285, 'end': 1288}, {'entity': 'I-PER', 'score': 0.9937464, 'index': 318, 'word': '##fa', 'start': 1288, 'end': 1290}, {'entity': 'I-PER', 'score': 0.99434483, 'index': 319, 'word': '##t', 'start': 1290, 'end': 1291}, {'entity': 'I-LOC', 'score': 0.9990357, 'index': 327, 'word': 'al', 'start': 1313, 'end': 1315}, {'entity': 'I-LOC', 'score': 0.9803618, 'index': 328, 'word': '-', 'start': 1315, 'end': 1316}, {'entity': 'I-LOC', 'score': 0.9987684, 'index': 329, 'word': 'A', 'start': 1316, 'end': 1317}, {'entity': 'I-LOC', 'score': 0.994263, 'index': 330, 'word': '##q', 'start': 1317, 'end': 1318}, {'entity': 'I-LOC', 'score': 0.9988305, 'index': 331, 'word': '##sa', 'start': 1318, 'end': 1320}, {'entity': 'I-LOC', 'score': 0.9975848, 'index': 345, 'word': 'al', 'start': 1362, 'end': 1364}, {'entity': 'I-LOC', 'score': 0.9309402, 'index': 346, 'word': '-', 'start': 1364, 'end': 1365}, {'entity': 'I-LOC', 'score': 0.99794966, 'index': 347, 'word': 'A', 'start': 1365, 'end': 1366}, {'entity': 'I-LOC', 'score': 0.9884291, 'index': 348, 'word': '##q', 'start': 1366, 'end': 1367}, {'entity': 'I-LOC', 'score': 0.99735165, 'index': 349, 'word': '##sa', 'start': 1367, 'end': 1369}, {'entity': 'I-PER', 'score': 0.99977225, 'index': 356, 'word': 'Jam', 'start': 1391, 'end': 1394}, {'entity': 'I-PER', 'score': 0.9915417, 'index': 357, 'word': '##il', 'start': 1394, 'end': 1396}, {'entity': 'I-LOC', 'score': 0.99980384, 'index': 367, 'word': 'Jordan', 'start': 1424, 'end': 1430}, {'entity': 'I-MISC', 'score': 0.9988424, 'index': 372, 'word': 'Israeli', 'start': 1448, 'end': 1455}, {'entity': 'I-LOC', 'score': 0.9934256, 'index': 376, 'word': 'al', 'start': 1472, 'end': 1474}, {'entity': 'I-LOC', 'score': 0.79771703, 'index': 377, 'word': '-', 'start': 1474, 'end': 1475}, {'entity': 'I-LOC', 'score': 0.9939652, 'index': 378, 'word': 'Ram', 'start': 1475, 'end': 1478}, {'entity': 'I-LOC', 'score': 0.99926203, 'index': 386, 'word': 'Jerusalem', 'start': 1514, 'end': 1523}, {'entity': 'I-MISC', 'score': 0.72957593, 'index': 390, 'word': 'S', 'start': 1528, 'end': 1529}, {'entity': 'I-LOC', 'score': 0.9996253, 'index': 412, 'word': 'Jordan', 'start': 1622, 'end': 1628}, {'entity': 'I-MISC', 'score': 0.7214811, 'index': 431, 'word': 'S', 'start': 1677, 'end': 1678}, {'entity': 'I-MISC', 'score': 0.5528598, 'index': 439, 'word': 'S', 'start': 1700, 'end': 1701}, {'entity': 'I-LOC', 'score': 0.9991549, 'index': 446, 'word': 'Jerusalem', 'start': 1724, 'end': 1733}, {'entity': 'I-MISC', 'score': 0.7500677, 'index': 454, 'word': 'S', 'start': 1750, 'end': 1751}, {'entity': 'I-MISC', 'score': 0.99662244, 'index': 457, 'word': 'Palestinians', 'start': 1758, 'end': 1770}, {'entity': 'I-MISC', 'score': 0.9990362, 'index': 468, 'word': 'Israeli', 'start': 1817, 'end': 1824}, {'entity': 'I-MISC', 'score': 0.7336764, 'index': 474, 'word': 'S', 'start': 1845, 'end': 1846}, {'entity': 'I-MISC', 'score': 0.9989579, 'index': 478, 'word': 'Israeli', 'start': 1854, 'end': 1861}, {'entity': 'I-MISC', 'score': 0.7467925, 'index': 493, 'word': 'S', 'start': 1914, 'end': 1915}]
[{'entity': 'I-ORG', 'score': 0.9992743, 'index': 6, 'word': 'Bay', 'start': 10, 'end': 13}, {'entity': 'I-ORG', 'score': 0.99873406, 'index': 7, 'word': 'Co', 'start': 14, 'end': 16}, {'entity': 'I-ORG', 'score': 0.69777846, 'index': 8, 'word': 'B', 'start': 17, 'end': 18}, {'entity': 'I-LOC', 'score': 0.98308176, 'index': 14, 'word': 'Mi', 'start': 29, 'end': 31}, {'entity': 'I-LOC', 'score': 0.94421476, 'index': 15, 'word': '##ch', 'start': 31, 'end': 33}, {'entity': 'I-LOC', 'score': 0.32197288, 'index': 39, 'word': 'NYC', 'start': 74, 'end': 77}, {'entity': 'I-MISC', 'score': 0.88334584, 'index': 40, 'word': 'Time', 'start': 78, 'end': 82}, {'entity': 'I-ORG', 'score': 0.9994192, 'index': 59, 'word': 'Bay', 'start': 119, 'end': 122}, {'entity': 'I-ORG', 'score': 0.99938655, 'index': 60, 'word': 'Co', 'start': 123, 'end': 125}, {'entity': 'I-ORG', 'score': 0.99859554, 'index': 61, 'word': 'Building', 'start': 126, 'end': 134}, {'entity': 'I-ORG', 'score': 0.9988379, 'index': 62, 'word': 'Authority', 'start': 135, 'end': 144}, {'entity': 'I-ORG', 'score': 0.5617997, 'index': 97, 'word': 'R', 'start': 232, 'end': 233}, {'entity': 'I-ORG', 'score': 0.9994892, 'index': 253, 'word': 'Michigan', 'start': 513, 'end': 521}, {'entity': 'I-ORG', 'score': 0.9991007, 'index': 254, 'word': 'National', 'start': 522, 'end': 530}, {'entity': 'I-ORG', 'score': 0.9972556, 'index': 255, 'word': 'Bank', 'start': 531, 'end': 535}, {'entity': 'I-LOC', 'score': 0.9775302, 'index': 257, 'word': 'Detroit', 'start': 538, 'end': 545}, {'entity': 'I-ORG', 'score': 0.99732095, 'index': 267, 'word': 'Bo', 'start': 558, 'end': 560}, {'entity': 'I-ORG', 'score': 0.9969302, 'index': 268, 'word': '##dman', 'start': 560, 'end': 564}, {'entity': 'I-ORG', 'score': 0.9952685, 'index': 269, 'word': ',', 'start': 565, 'end': 566}, {'entity': 'I-ORG', 'score': 0.9848467, 'index': 270, 'word': 'Long', 'start': 567, 'end': 571}, {'entity': 'I-ORG', 'score': 0.9908598, 'index': 271, 'word': '##ely', 'start': 571, 'end': 574}, {'entity': 'I-ORG', 'score': 0.99707437, 'index': 272, 'word': '&', 'start': 575, 'end': 576}, {'entity': 'I-ORG', 'score': 0.99380034, 'index': 273, 'word': 'Da', 'start': 577, 'end': 579}, {'entity': 'I-ORG', 'score': 0.887896, 'index': 274, 'word': '##hl', 'start': 579, 'end': 581}, {'entity': 'I-ORG', 'score': 0.9838284, 'index': 275, 'word': '##ing', 'start': 581, 'end': 584}, {'entity': 'I-LOC', 'score': 0.9817701, 'index': 277, 'word': 'Detroit', 'start': 587, 'end': 594}, {'entity': 'I-ORG', 'score': 0.9989484, 'index': 287, 'word': 'First', 'start': 607, 'end': 612}, {'entity': 'I-ORG', 'score': 0.9968604, 'index': 288, 'word': 'of', 'start': 613, 'end': 615}, {'entity': 'I-ORG', 'score': 0.9987068, 'index': 289, 'word': 'Michigan', 'start': 616, 'end': 624}, {'entity': 'I-ORG', 'score': 0.9988059, 'index': 290, 'word': 'Corp', 'start': 625, 'end': 629}, {'entity': 'I-ORG', 'score': 0.74632025, 'index': 291, 'word': '.', 'start': 629, 'end': 630}, {'entity': 'I-LOC', 'score': 0.9815444, 'index': 293, 'word': 'Detroit', 'start': 633, 'end': 640}]
[{'entity': 'I-PER', 'score': 0.8981424, 'index': 15, 'word': 'Glenn', 'start': 51, 'end': 56}, {'entity': 'I-PER', 'score': 0.96648717, 'index': 16, 'word': 'Some', 'start': 57, 'end': 61}, {'entity': 'I-LOC', 'score': 0.5011538, 'index': 17, 'word': '##rville', 'start': 61, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9979176, 'index': 22, 'word': 'WA', 'start': 73, 'end': 75}, {'entity': 'I-LOC', 'score': 0.9199429, 'index': 23, 'word': '##S', 'start': 75, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9383727, 'index': 24, 'word': '##H', 'start': 76, 'end': 77}, {'entity': 'I-LOC', 'score': 0.96194315, 'index': 25, 'word': '##ING', 'start': 77, 'end': 80}, {'entity': 'I-LOC', 'score': 0.9732574, 'index': 26, 'word': '##TO', 'start': 80, 'end': 82}, {'entity': 'I-LOC', 'score': 0.9924585, 'index': 27, 'word': '##N', 'start': 82, 'end': 83}, {'entity': 'I-ORG', 'score': 0.99928844, 'index': 46, 'word': 'Commerce', 'start': 148, 'end': 156}, {'entity': 'I-ORG', 'score': 0.99906117, 'index': 47, 'word': 'Department', 'start': 157, 'end': 167}, {'entity': 'I-ORG', 'score': 0.74892676, 'index': 144, 'word': 'Department', 'start': 530, 'end': 540}, {'entity': 'I-ORG', 'score': 0.9942655, 'index': 256, 'word': 'Commerce', 'start': 1043, 'end': 1051}, {'entity': 'I-LOC', 'score': 0.99837047, 'index': 360, 'word': 'U', 'start': 1493, 'end': 1494}, {'entity': 'I-LOC', 'score': 0.99493945, 'index': 362, 'word': 'S', 'start': 1495, 'end': 1496}, {'entity': 'I-ORG', 'score': 0.7397565, 'index': 410, 'word': 'Street', 'start': 1729, 'end': 1735}, {'entity': 'I-ORG', 'score': 0.9749571, 'index': 434, 'word': 'Commerce', 'start': 1820, 'end': 1828}, {'entity': 'I-MISC', 'score': 0.6631675, 'index': 466, 'word': 'S', 'start': 1974, 'end': 1975}, {'entity': 'I-ORG', 'score': 0.9462934, 'index': 473, 'word': 'Department', 'start': 2002, 'end': 2012}]
[{'entity': 'I-MISC', 'score': 0.81488603, 'index': 1, 'word': 'World', 'start': 0, 'end': 5}, {'entity': 'I-MISC', 'score': 0.60554725, 'index': 2, 'word': 'Markets', 'start': 6, 'end': 13}, {'entity': 'I-LOC', 'score': 0.9992793, 'index': 16, 'word': 'NE', 'start': 48, 'end': 50}, {'entity': 'I-LOC', 'score': 0.9801507, 'index': 17, 'word': '##W', 'start': 50, 'end': 51}, {'entity': 'I-LOC', 'score': 0.99918574, 'index': 18, 'word': 'Y', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9204609, 'index': 19, 'word': '##OR', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.9994686, 'index': 20, 'word': '##K', 'start': 55, 'end': 56}, {'entity': 'I-ORG', 'score': 0.45452195, 'index': 59, 'word': 'NY', 'start': 125, 'end': 127}, {'entity': 'I-MISC', 'score': 0.85554737, 'index': 60, 'word': 'Dow', 'start': 128, 'end': 131}, {'entity': 'I-LOC', 'score': 0.97397023, 'index': 62, 'word': 'London', 'start': 138, 'end': 144}, {'entity': 'I-ORG', 'score': 0.9848599, 'index': 64, 'word': 'L', 'start': 153, 'end': 154}, {'entity': 'I-ORG', 'score': 0.9927457, 'index': 65, 'word': '##ME', 'start': 154, 'end': 156}, {'entity': 'I-MISC', 'score': 0.99521095, 'index': 94, 'word': 'Nik', 'start': 219, 'end': 222}, {'entity': 'I-MISC', 'score': 0.8145168, 'index': 95, 'word': '##ke', 'start': 222, 'end': 224}, {'entity': 'I-MISC', 'score': 0.75096124, 'index': 96, 'word': '##i', 'start': 224, 'end': 225}, {'entity': 'I-MISC', 'score': 0.6074384, 'index': 122, 'word': 'Brent', 'start': 284, 'end': 289}, {'entity': 'I-ORG', 'score': 0.7815109, 'index': 131, 'word': 'F', 'start': 310, 'end': 311}, {'entity': 'I-ORG', 'score': 0.6692329, 'index': 132, 'word': '##TS', 'start': 311, 'end': 313}, {'entity': 'I-ORG', 'score': 0.7104983, 'index': 133, 'word': '##E', 'start': 313, 'end': 314}, {'entity': 'I-MISC', 'score': 0.34314215, 'index': 199, 'word': 'D', 'start': 427, 'end': 428}, {'entity': 'I-ORG', 'score': 0.4731514, 'index': 200, 'word': '##AT', 'start': 428, 'end': 430}, {'entity': 'I-MISC', 'score': 0.9994728, 'index': 250, 'word': 'German', 'start': 651, 'end': 657}, {'entity': 'I-MISC', 'score': 0.9992786, 'index': 258, 'word': 'Japanese', 'start': 693, 'end': 701}, {'entity': 'I-MISC', 'score': 0.99836594, 'index': 267, 'word': 'Dow', 'start': 717, 'end': 720}, {'entity': 'I-MISC', 'score': 0.99801874, 'index': 268, 'word': 'Jones', 'start': 721, 'end': 726}, {'entity': 'I-ORG', 'score': 0.9992131, 'index': 331, 'word': 'New', 'start': 981, 'end': 984}, {'entity': 'I-ORG', 'score': 0.9990952, 'index': 332, 'word': 'York', 'start': 985, 'end': 989}, {'entity': 'I-ORG', 'score': 0.9987997, 'index': 333, 'word': 'Stock', 'start': 990, 'end': 995}, {'entity': 'I-ORG', 'score': 0.99865025, 'index': 334, 'word': 'Exchange', 'start': 996, 'end': 1004}, {'entity': 'I-ORG', 'score': 0.9974884, 'index': 349, 'word': 'Treasury', 'start': 1045, 'end': 1053}, {'entity': 'I-PER', 'score': 0.98730564, 'index': 422, 'word': 'Ralph', 'start': 1336, 'end': 1341}, {'entity': 'I-ORG', 'score': 0.5096377, 'index': 423, 'word': 'Bloc', 'start': 1342, 'end': 1346}, {'entity': 'I-PER', 'score': 0.9784938, 'index': 430, 'word': 'Raymond', 'start': 1377, 'end': 1384}, {'entity': 'I-PER', 'score': 0.99253863, 'index': 431, 'word': 'James', 'start': 1385, 'end': 1390}, {'entity': 'I-MISC', 'score': 0.96714526, 'index': 447, 'word': 'Dow', 'start': 1447, 'end': 1450}, {'entity': 'I-LOC', 'score': 0.75887, 'index': 492, 'word': 'Wall', 'start': 1581, 'end': 1585}, {'entity': 'I-ORG', 'score': 0.41829976, 'index': 493, 'word': 'Street', 'start': 1586, 'end': 1592}]
[{'entity': 'I-ORG', 'score': 0.9973991, 'index': 1, 'word': 'Pi', 'start': 0, 'end': 2}, {'entity': 'I-ORG', 'score': 0.99691004, 'index': 2, 'word': '##relli', 'start': 2, 'end': 7}, {'entity': 'I-MISC', 'score': 0.9990206, 'index': 7, 'word': 'Chinese', 'start': 27, 'end': 34}, {'entity': 'I-ORG', 'score': 0.6845852, 'index': 14, 'word': 'David', 'start': 49, 'end': 54}, {'entity': 'I-ORG', 'score': 0.7995812, 'index': 15, 'word': 'Jones', 'start': 55, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9977985, 'index': 20, 'word': 'MI', 'start': 66, 'end': 68}, {'entity': 'I-LOC', 'score': 0.9953113, 'index': 21, 'word': '##LA', 'start': 68, 'end': 70}, {'entity': 'I-LOC', 'score': 0.99657214, 'index': 22, 'word': '##N', 'start': 70, 'end': 71}, {'entity': 'I-MISC', 'score': 0.9979394, 'index': 32, 'word': 'Italian', 'start': 88, 'end': 95}, {'entity': 'I-ORG', 'score': 0.99937433, 'index': 38, 'word': 'Pi', 'start': 118, 'end': 120}, {'entity': 'I-ORG', 'score': 0.99945265, 'index': 39, 'word': '##relli', 'start': 120, 'end': 125}, {'entity': 'I-LOC', 'score': 0.9998055, 'index': 49, 'word': 'China', 'start': 173, 'end': 178}, {'entity': 'I-MISC', 'score': 0.9990276, 'index': 64, 'word': 'Chinese', 'start': 248, 'end': 255}, {'entity': 'I-ORG', 'score': 0.99892116, 'index': 72, 'word': 'Pi', 'start': 289, 'end': 291}, {'entity': 'I-ORG', 'score': 0.9990959, 'index': 73, 'word': '##relli', 'start': 291, 'end': 296}, {'entity': 'I-MISC', 'score': 0.9938028, 'index': 77, 'word': 'Hong', 'start': 313, 'end': 317}, {'entity': 'I-MISC', 'score': 0.99164915, 'index': 78, 'word': 'Kong', 'start': 318, 'end': 322}, {'entity': 'I-ORG', 'score': 0.99962926, 'index': 82, 'word': 'C', 'start': 335, 'end': 336}, {'entity': 'I-ORG', 'score': 0.99946004, 'index': 83, 'word': '##IT', 'start': 336, 'end': 338}, {'entity': 'I-ORG', 'score': 0.9993293, 'index': 84, 'word': '##IC', 'start': 338, 'end': 340}, {'entity': 'I-ORG', 'score': 0.998884, 'index': 85, 'word': 'Pacific', 'start': 341, 'end': 348}, {'entity': 'I-ORG', 'score': 0.99953616, 'index': 93, 'word': 'Wu', 'start': 379, 'end': 381}, {'entity': 'I-ORG', 'score': 0.9995473, 'index': 94, 'word': '##xi', 'start': 381, 'end': 383}, {'entity': 'I-ORG', 'score': 0.99933416, 'index': 95, 'word': 'Tong', 'start': 384, 'end': 388}, {'entity': 'I-ORG', 'score': 0.9993843, 'index': 96, 'word': 'Ling', 'start': 389, 'end': 393}, {'entity': 'I-ORG', 'score': 0.9990619, 'index': 97, 'word': 'Company', 'start': 394, 'end': 401}, {'entity': 'I-ORG', 'score': 0.99929047, 'index': 98, 'word': 'Ltd', 'start': 402, 'end': 405}, {'entity': 'I-LOC', 'score': 0.998602, 'index': 115, 'word': 'Wu', 'start': 501, 'end': 503}, {'entity': 'I-LOC', 'score': 0.99697566, 'index': 116, 'word': '##xi', 'start': 503, 'end': 505}, {'entity': 'I-LOC', 'score': 0.99853516, 'index': 118, 'word': 'Jiang', 'start': 508, 'end': 513}, {'entity': 'I-LOC', 'score': 0.9975284, 'index': 119, 'word': '##su', 'start': 513, 'end': 515}, {'entity': 'I-LOC', 'score': 0.999057, 'index': 122, 'word': 'Shanghai', 'start': 527, 'end': 535}, {'entity': 'I-LOC', 'score': 0.99937975, 'index': 143, 'word': 'Wu', 'start': 626, 'end': 628}, {'entity': 'I-LOC', 'score': 0.9989712, 'index': 144, 'word': '##xi', 'start': 628, 'end': 630}, {'entity': 'I-ORG', 'score': 0.99797374, 'index': 181, 'word': 'Pi', 'start': 807, 'end': 809}, {'entity': 'I-ORG', 'score': 0.9975495, 'index': 182, 'word': '##relli', 'start': 809, 'end': 814}, {'entity': 'I-LOC', 'score': 0.63812155, 'index': 194, 'word': 'Far', 'start': 864, 'end': 867}, {'entity': 'I-MISC', 'score': 0.66388965, 'index': 195, 'word': 'Eastern', 'start': 868, 'end': 875}, {'entity': 'I-LOC', 'score': 0.9998319, 'index': 204, 'word': 'Indonesia', 'start': 929, 'end': 938}, {'entity': 'I-LOC', 'score': 0.99984, 'index': 206, 'word': 'India', 'start': 941, 'end': 946}, {'entity': 'I-LOC', 'score': 0.9998704, 'index': 208, 'word': 'Malaysia', 'start': 951, 'end': 959}, {'entity': 'I-ORG', 'score': 0.9976432, 'index': 221, 'word': 'Pi', 'start': 1002, 'end': 1004}, {'entity': 'I-ORG', 'score': 0.9987632, 'index': 222, 'word': '##relli', 'start': 1004, 'end': 1009}, {'entity': 'I-MISC', 'score': 0.99765176, 'index': 246, 'word': 'Italian', 'start': 1127, 'end': 1134}, {'entity': 'I-PER', 'score': 0.99701995, 'index': 252, 'word': 'Paula', 'start': 1162, 'end': 1167}, {'entity': 'I-PER', 'score': 0.99948704, 'index': 253, 'word': 'B', 'start': 1168, 'end': 1169}, {'entity': 'I-PER', 'score': 0.88190824, 'index': 254, 'word': '##ura', 'start': 1169, 'end': 1172}, {'entity': 'I-PER', 'score': 0.95379794, 'index': 255, 'word': '##tti', 'start': 1172, 'end': 1175}, {'entity': 'I-ORG', 'score': 0.99888533, 'index': 257, 'word': 'Indo', 'start': 1179, 'end': 1183}, {'entity': 'I-ORG', 'score': 0.99365765, 'index': 258, 'word': '##su', 'start': 1183, 'end': 1185}, {'entity': 'I-ORG', 'score': 0.99532664, 'index': 259, 'word': '##ez', 'start': 1185, 'end': 1187}, {'entity': 'I-ORG', 'score': 0.9981311, 'index': 274, 'word': 'Pi', 'start': 1245, 'end': 1247}, {'entity': 'I-ORG', 'score': 0.9979809, 'index': 275, 'word': '##relli', 'start': 1247, 'end': 1252}, {'entity': 'I-MISC', 'score': 0.998492, 'index': 282, 'word': 'Chinese', 'start': 1289, 'end': 1296}, {'entity': 'I-ORG', 'score': 0.9972459, 'index': 292, 'word': 'Pi', 'start': 1345, 'end': 1347}, {'entity': 'I-ORG', 'score': 0.9962148, 'index': 293, 'word': '##relli', 'start': 1347, 'end': 1352}, {'entity': 'I-ORG', 'score': 0.99801636, 'index': 309, 'word': 'Pi', 'start': 1415, 'end': 1417}, {'entity': 'I-ORG', 'score': 0.9953974, 'index': 310, 'word': '##relli', 'start': 1417, 'end': 1422}, {'entity': 'I-MISC', 'score': 0.9988279, 'index': 354, 'word': 'GM', 'start': 1606, 'end': 1608}, {'entity': 'I-LOC', 'score': 0.99825734, 'index': 359, 'word': 'Milan', 'start': 1623, 'end': 1628}, {'entity': 'I-ORG', 'score': 0.9989159, 'index': 370, 'word': 'Pi', 'start': 1662, 'end': 1664}, {'entity': 'I-ORG', 'score': 0.9989196, 'index': 371, 'word': '##relli', 'start': 1664, 'end': 1669}, {'entity': 'I-MISC', 'score': 0.99873906, 'index': 379, 'word': 'Chinese', 'start': 1707, 'end': 1714}, {'entity': 'I-ORG', 'score': 0.63822645, 'index': 413, 'word': 'S', 'start': 1877, 'end': 1878}, {'entity': 'I-LOC', 'score': 0.999435, 'index': 415, 'word': 'China', 'start': 1880, 'end': 1885}, {'entity': 'I-ORG', 'score': 0.53370833, 'index': 425, 'word': 'Un', 'start': 1922, 'end': 1924}, {'entity': 'I-ORG', 'score': 0.5667439, 'index': 464, 'word': 'S', 'start': 2120, 'end': 2121}, {'entity': 'I-LOC', 'score': 0.99950016, 'index': 474, 'word': 'China', 'start': 2165, 'end': 2170}, {'entity': 'I-LOC', 'score': 0.9870026, 'index': 496, 'word': 'Asia', 'start': 2277, 'end': 2281}, {'entity': 'I-ORG', 'score': 0.8932521, 'index': 500, 'word': 'Pi', 'start': 2291, 'end': 2293}, {'entity': 'I-ORG', 'score': 0.971992, 'index': 501, 'word': '##relli', 'start': 2293, 'end': 2298}, {'entity': 'I-ORG', 'score': 0.4994202, 'index': 502, 'word': 'S', 'start': 2299, 'end': 2300}]
[{'entity': 'I-MISC', 'score': 0.99894255, 'index': 1, 'word': 'Dutch', 'start': 0, 'end': 5}, {'entity': 'I-ORG', 'score': 0.99907374, 'index': 8, 'word': 'E', 'start': 37, 'end': 38}, {'entity': 'I-ORG', 'score': 0.9977913, 'index': 9, 'word': '##OE', 'start': 38, 'end': 40}, {'entity': 'I-LOC', 'score': 0.99701035, 'index': 15, 'word': 'AM', 'start': 48, 'end': 50}, {'entity': 'I-LOC', 'score': 0.9831291, 'index': 16, 'word': '##ST', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.9829428, 'index': 17, 'word': '##ER', 'start': 52, 'end': 54}, {'entity': 'I-LOC', 'score': 0.9038085, 'index': 18, 'word': '##DA', 'start': 54, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9868303, 'index': 19, 'word': '##M', 'start': 56, 'end': 57}, {'entity': 'I-MISC', 'score': 0.9994137, 'index': 36, 'word': 'Dutch', 'start': 110, 'end': 115}, {'entity': 'I-ORG', 'score': 0.9996848, 'index': 57, 'word': 'European', 'start': 225, 'end': 233}, {'entity': 'I-ORG', 'score': 0.9996408, 'index': 58, 'word': 'Op', 'start': 234, 'end': 236}, {'entity': 'I-ORG', 'score': 0.99937016, 'index': 59, 'word': '##tions', 'start': 236, 'end': 241}, {'entity': 'I-ORG', 'score': 0.99943584, 'index': 60, 'word': 'Exchange', 'start': 242, 'end': 250}, {'entity': 'I-ORG', 'score': 0.99958426, 'index': 62, 'word': 'E', 'start': 253, 'end': 254}, {'entity': 'I-ORG', 'score': 0.9990784, 'index': 63, 'word': '##OE', 'start': 254, 'end': 256}, {'entity': 'I-MISC', 'score': 0.56056726, 'index': 81, 'word': 'F', 'start': 316, 'end': 317}, {'entity': 'I-ORG', 'score': 0.8962754, 'index': 82, 'word': '##TO', 'start': 317, 'end': 319}, {'entity': 'I-ORG', 'score': 0.9994667, 'index': 92, 'word': 'E', 'start': 366, 'end': 367}, {'entity': 'I-ORG', 'score': 0.9978878, 'index': 93, 'word': '##OE', 'start': 367, 'end': 369}, {'entity': 'I-ORG', 'score': 0.9993087, 'index': 154, 'word': 'E', 'start': 639, 'end': 640}, {'entity': 'I-ORG', 'score': 0.9962769, 'index': 155, 'word': '##OE', 'start': 640, 'end': 642}, {'entity': 'I-PER', 'score': 0.99921393, 'index': 157, 'word': 'Lex', 'start': 653, 'end': 656}, {'entity': 'I-PER', 'score': 0.9989613, 'index': 158, 'word': 'van', 'start': 657, 'end': 660}, {'entity': 'I-PER', 'score': 0.9979176, 'index': 159, 'word': 'Dr', 'start': 661, 'end': 663}, {'entity': 'I-PER', 'score': 0.8629768, 'index': 160, 'word': '##oo', 'start': 663, 'end': 665}, {'entity': 'I-PER', 'score': 0.96743584, 'index': 161, 'word': '##ge', 'start': 665, 'end': 667}, {'entity': 'I-ORG', 'score': 0.9995827, 'index': 163, 'word': 'Re', 'start': 673, 'end': 675}, {'entity': 'I-ORG', 'score': 0.99786144, 'index': 164, 'word': '##uters', 'start': 675, 'end': 680}, {'entity': 'I-ORG', 'score': 0.9993179, 'index': 193, 'word': 'E', 'start': 787, 'end': 788}, {'entity': 'I-ORG', 'score': 0.9968534, 'index': 194, 'word': '##OE', 'start': 788, 'end': 790}, {'entity': 'I-MISC', 'score': 0.9993062, 'index': 217, 'word': 'Dutch', 'start': 877, 'end': 882}, {'entity': 'I-MISC', 'score': 0.99936384, 'index': 221, 'word': 'German', 'start': 903, 'end': 909}, {'entity': 'I-ORG', 'score': 0.57808334, 'index': 232, 'word': 'F', 'start': 961, 'end': 962}, {'entity': 'I-ORG', 'score': 0.9065835, 'index': 233, 'word': '##TO', 'start': 962, 'end': 964}, {'entity': 'I-LOC', 'score': 0.99960333, 'index': 267, 'word': 'Amsterdam', 'start': 1074, 'end': 1083}]
[{'entity': 'I-ORG', 'score': 0.9996125, 'index': 1, 'word': 'OS', 'start': 0, 'end': 2}, {'entity': 'I-ORG', 'score': 0.99924123, 'index': 2, 'word': '##CE', 'start': 2, 'end': 4}, {'entity': 'I-LOC', 'score': 0.99965334, 'index': 7, 'word': 'Ch', 'start': 25, 'end': 27}, {'entity': 'I-LOC', 'score': 0.9995467, 'index': 8, 'word': '##ech', 'start': 27, 'end': 30}, {'entity': 'I-LOC', 'score': 0.99965274, 'index': 9, 'word': '##nya', 'start': 30, 'end': 33}, {'entity': 'I-LOC', 'score': 0.9981862, 'index': 17, 'word': 'B', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9874315, 'index': 18, 'word': '##ON', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.99684024, 'index': 19, 'word': '##N', 'start': 58, 'end': 59}, {'entity': 'I-MISC', 'score': 0.9153498, 'index': 48, 'word': 'pro', 'start': 181, 'end': 184}, {'entity': 'I-LOC', 'score': 0.465681, 'index': 50, 'word': 'Moscow', 'start': 185, 'end': 191}, {'entity': 'I-LOC', 'score': 0.9996165, 'index': 55, 'word': 'Ch', 'start': 212, 'end': 214}, {'entity': 'I-LOC', 'score': 0.99964976, 'index': 56, 'word': '##ech', 'start': 214, 'end': 217}, {'entity': 'I-LOC', 'score': 0.9997085, 'index': 57, 'word': '##nya', 'start': 217, 'end': 220}, {'entity': 'I-PER', 'score': 0.99965024, 'index': 76, 'word': 'F', 'start': 292, 'end': 293}, {'entity': 'I-PER', 'score': 0.9994746, 'index': 77, 'word': '##lav', 'start': 293, 'end': 296}, {'entity': 'I-PER', 'score': 0.9994842, 'index': 78, 'word': '##io', 'start': 296, 'end': 298}, {'entity': 'I-PER', 'score': 0.99961805, 'index': 79, 'word': 'Co', 'start': 299, 'end': 301}, {'entity': 'I-PER', 'score': 0.9974833, 'index': 80, 'word': '##tti', 'start': 301, 'end': 304}, {'entity': 'I-ORG', 'score': 0.99967, 'index': 86, 'word': 'Organisation', 'start': 327, 'end': 339}, {'entity': 'I-ORG', 'score': 0.99956113, 'index': 87, 'word': 'for', 'start': 340, 'end': 343}, {'entity': 'I-ORG', 'score': 0.99969375, 'index': 88, 'word': 'Security', 'start': 344, 'end': 352}, {'entity': 'I-ORG', 'score': 0.9996209, 'index': 89, 'word': 'and', 'start': 353, 'end': 356}, {'entity': 'I-ORG', 'score': 0.99966836, 'index': 90, 'word': 'Cooperation', 'start': 357, 'end': 368}, {'entity': 'I-ORG', 'score': 0.9993167, 'index': 91, 'word': 'in', 'start': 369, 'end': 371}, {'entity': 'I-ORG', 'score': 0.99904805, 'index': 92, 'word': 'Europe', 'start': 372, 'end': 378}, {'entity': 'I-ORG', 'score': 0.9997009, 'index': 94, 'word': 'OS', 'start': 381, 'end': 383}, {'entity': 'I-ORG', 'score': 0.99949706, 'index': 95, 'word': '##CE', 'start': 383, 'end': 385}, {'entity': 'I-MISC', 'score': 0.99851185, 'index': 99, 'word': 'German', 'start': 395, 'end': 401}, {'entity': 'I-MISC', 'score': 0.9206331, 'index': 102, 'word': 'Vienna', 'start': 412, 'end': 418}, {'entity': 'I-LOC', 'score': 0.99957997, 'index': 110, 'word': 'Ch', 'start': 453, 'end': 455}, {'entity': 'I-LOC', 'score': 0.999506, 'index': 111, 'word': '##ech', 'start': 455, 'end': 458}, {'entity': 'I-LOC', 'score': 0.999683, 'index': 112, 'word': '##nya', 'start': 458, 'end': 461}, {'entity': 'I-MISC', 'score': 0.9991849, 'index': 116, 'word': 'Russian', 'start': 477, 'end': 484}, {'entity': 'I-ORG', 'score': 0.9996099, 'index': 125, 'word': 'OS', 'start': 506, 'end': 508}, {'entity': 'I-ORG', 'score': 0.999308, 'index': 126, 'word': '##CE', 'start': 508, 'end': 510}, {'entity': 'I-ORG', 'score': 0.9995566, 'index': 142, 'word': 'OS', 'start': 574, 'end': 576}, {'entity': 'I-ORG', 'score': 0.9992017, 'index': 143, 'word': '##CE', 'start': 576, 'end': 578}, {'entity': 'I-PER', 'score': 0.99957985, 'index': 152, 'word': 'Co', 'start': 618, 'end': 620}, {'entity': 'I-PER', 'score': 0.9977646, 'index': 153, 'word': '##tti', 'start': 620, 'end': 623}, {'entity': 'I-MISC', 'score': 0.99903786, 'index': 159, 'word': 'Swiss', 'start': 642, 'end': 647}, {'entity': 'I-LOC', 'score': 0.9995732, 'index': 171, 'word': 'Ch', 'start': 689, 'end': 691}, {'entity': 'I-LOC', 'score': 0.99946445, 'index': 172, 'word': '##ech', 'start': 691, 'end': 694}, {'entity': 'I-LOC', 'score': 0.99971634, 'index': 173, 'word': '##nya', 'start': 694, 'end': 697}, {'entity': 'I-MISC', 'score': 0.841705, 'index': 189, 'word': 'Pro', 'start': 756, 'end': 759}, {'entity': 'I-MISC', 'score': 0.9404861, 'index': 191, 'word': 'Moscow', 'start': 760, 'end': 766}, {'entity': 'I-LOC', 'score': 0.9995478, 'index': 194, 'word': 'Ch', 'start': 778, 'end': 780}, {'entity': 'I-LOC', 'score': 0.9994765, 'index': 195, 'word': '##ech', 'start': 780, 'end': 783}, {'entity': 'I-LOC', 'score': 0.9996766, 'index': 196, 'word': '##nya', 'start': 783, 'end': 786}, {'entity': 'I-PER', 'score': 0.9996567, 'index': 199, 'word': 'Tim', 'start': 803, 'end': 806}, {'entity': 'I-PER', 'score': 0.9998259, 'index': 200, 'word': 'G', 'start': 807, 'end': 808}, {'entity': 'I-PER', 'score': 0.9890771, 'index': 201, 'word': '##uld', 'start': 808, 'end': 811}, {'entity': 'I-PER', 'score': 0.995017, 'index': 202, 'word': '##iman', 'start': 811, 'end': 815}, {'entity': 'I-PER', 'score': 0.99768496, 'index': 203, 'word': '##n', 'start': 815, 'end': 816}, {'entity': 'I-MISC', 'score': 0.99881566, 'index': 206, 'word': 'Swiss', 'start': 823, 'end': 828}, {'entity': 'I-ORG', 'score': 0.9984409, 'index': 211, 'word': 'OS', 'start': 852, 'end': 854}, {'entity': 'I-ORG', 'score': 0.99709797, 'index': 212, 'word': '##CE', 'start': 854, 'end': 856}, {'entity': 'I-LOC', 'score': 0.86341906, 'index': 213, 'word': 'Ch', 'start': 857, 'end': 859}, {'entity': 'I-LOC', 'score': 0.95655876, 'index': 214, 'word': '##ech', 'start': 859, 'end': 862}, {'entity': 'I-LOC', 'score': 0.98421836, 'index': 215, 'word': '##nya', 'start': 862, 'end': 865}, {'entity': 'I-PER', 'score': 0.99967194, 'index': 224, 'word': 'Z', 'start': 904, 'end': 905}, {'entity': 'I-PER', 'score': 0.99878365, 'index': 225, 'word': '##eli', 'start': 905, 'end': 908}, {'entity': 'I-PER', 'score': 0.99917525, 'index': 226, 'word': '##m', 'start': 908, 'end': 909}, {'entity': 'I-PER', 'score': 0.9990496, 'index': 227, 'word': '##kha', 'start': 909, 'end': 912}, {'entity': 'I-PER', 'score': 0.99917334, 'index': 228, 'word': '##n', 'start': 912, 'end': 913}, {'entity': 'I-PER', 'score': 0.9996063, 'index': 229, 'word': 'Yan', 'start': 914, 'end': 917}, {'entity': 'I-PER', 'score': 0.99843127, 'index': 230, 'word': '##dar', 'start': 917, 'end': 920}, {'entity': 'I-PER', 'score': 0.98679525, 'index': 231, 'word': '##bi', 'start': 920, 'end': 922}, {'entity': 'I-PER', 'score': 0.98331094, 'index': 232, 'word': '##yev', 'start': 922, 'end': 925}, {'entity': 'I-MISC', 'score': 0.99878114, 'index': 250, 'word': 'Russian', 'start': 988, 'end': 995}, {'entity': 'I-PER', 'score': 0.99960035, 'index': 253, 'word': 'Alexander', 'start': 1007, 'end': 1016}, {'entity': 'I-PER', 'score': 0.9996898, 'index': 254, 'word': 'Le', 'start': 1017, 'end': 1019}, {'entity': 'I-PER', 'score': 0.99719006, 'index': 255, 'word': '##bed', 'start': 1019, 'end': 1022}, {'entity': 'I-MISC', 'score': 0.99754626, 'index': 257, 'word': 'Ch', 'start': 1027, 'end': 1029}, {'entity': 'I-MISC', 'score': 0.9947903, 'index': 258, 'word': '##ech', 'start': 1029, 'end': 1032}, {'entity': 'I-MISC', 'score': 0.99761045, 'index': 259, 'word': '##en', 'start': 1032, 'end': 1034}, {'entity': 'I-PER', 'score': 0.99967813, 'index': 266, 'word': 'As', 'start': 1062, 'end': 1064}, {'entity': 'I-PER', 'score': 0.9993666, 'index': 267, 'word': '##lan', 'start': 1064, 'end': 1067}, {'entity': 'I-PER', 'score': 0.99973553, 'index': 268, 'word': 'Mask', 'start': 1068, 'end': 1072}, {'entity': 'I-PER', 'score': 0.98830056, 'index': 269, 'word': '##had', 'start': 1072, 'end': 1075}, {'entity': 'I-PER', 'score': 0.99427396, 'index': 270, 'word': '##ov', 'start': 1075, 'end': 1077}, {'entity': 'I-PER', 'score': 0.9993585, 'index': 290, 'word': 'Co', 'start': 1160, 'end': 1162}, {'entity': 'I-PER', 'score': 0.9864659, 'index': 291, 'word': '##tti', 'start': 1162, 'end': 1165}, {'entity': 'I-LOC', 'score': 0.9995425, 'index': 293, 'word': 'Ch', 'start': 1171, 'end': 1173}, {'entity': 'I-LOC', 'score': 0.9995141, 'index': 294, 'word': '##ech', 'start': 1173, 'end': 1176}, {'entity': 'I-LOC', 'score': 0.99970007, 'index': 295, 'word': '##nya', 'start': 1176, 'end': 1179}, {'entity': 'I-LOC', 'score': 0.9998097, 'index': 300, 'word': 'Russia', 'start': 1200, 'end': 1206}, {'entity': 'I-LOC', 'score': 0.99982446, 'index': 317, 'word': 'Russia', 'start': 1296, 'end': 1302}, {'entity': 'I-LOC', 'score': 0.99962866, 'index': 332, 'word': 'Ch', 'start': 1346, 'end': 1348}, {'entity': 'I-LOC', 'score': 0.9995048, 'index': 333, 'word': '##ech', 'start': 1348, 'end': 1351}, {'entity': 'I-LOC', 'score': 0.99963844, 'index': 334, 'word': '##nya', 'start': 1351, 'end': 1354}, {'entity': 'I-ORG', 'score': 0.9976948, 'index': 338, 'word': 'OS', 'start': 1370, 'end': 1372}, {'entity': 'I-ORG', 'score': 0.99726117, 'index': 339, 'word': '##CE', 'start': 1372, 'end': 1374}, {'entity': 'I-LOC', 'score': 0.9998332, 'index': 347, 'word': 'Russia', 'start': 1414, 'end': 1420}, {'entity': 'I-LOC', 'score': 0.99981064, 'index': 356, 'word': 'Russia', 'start': 1453, 'end': 1459}, {'entity': 'I-ORG', 'score': 0.9989761, 'index': 359, 'word': 'OS', 'start': 1467, 'end': 1469}, {'entity': 'I-ORG', 'score': 0.99827874, 'index': 360, 'word': '##CE', 'start': 1469, 'end': 1471}, {'entity': 'I-ORG', 'score': 0.9900962, 'index': 385, 'word': 'OS', 'start': 1581, 'end': 1583}, {'entity': 'I-ORG', 'score': 0.98498255, 'index': 386, 'word': '##CE', 'start': 1583, 'end': 1585}, {'entity': 'I-LOC', 'score': 0.9927395, 'index': 398, 'word': 'Ch', 'start': 1650, 'end': 1652}, {'entity': 'I-LOC', 'score': 0.98967427, 'index': 399, 'word': '##ech', 'start': 1652, 'end': 1655}, {'entity': 'I-LOC', 'score': 0.9839463, 'index': 400, 'word': '##nya', 'start': 1655, 'end': 1658}, {'entity': 'I-MISC', 'score': 0.60239774, 'index': 430, 'word': 'S', 'start': 1799, 'end': 1800}, {'entity': 'I-MISC', 'score': 0.6293574, 'index': 452, 'word': 'S', 'start': 1881, 'end': 1882}, {'entity': 'I-LOC', 'score': 0.9917135, 'index': 454, 'word': 'Ch', 'start': 1884, 'end': 1886}, {'entity': 'I-LOC', 'score': 0.9942141, 'index': 455, 'word': '##ech', 'start': 1886, 'end': 1889}, {'entity': 'I-LOC', 'score': 0.97665286, 'index': 456, 'word': '##nya', 'start': 1889, 'end': 1892}, {'entity': 'I-MISC', 'score': 0.998582, 'index': 469, 'word': 'Russian', 'start': 1964, 'end': 1971}, {'entity': 'I-PER', 'score': 0.47681397, 'index': 474, 'word': 'Co', 'start': 1991, 'end': 1993}, {'entity': 'I-PER', 'score': 0.93651485, 'index': 475, 'word': '##tti', 'start': 1993, 'end': 1996}, {'entity': 'I-MISC', 'score': 0.62529504, 'index': 479, 'word': 'S', 'start': 2001, 'end': 2002}]
[{'entity': 'I-MISC', 'score': 0.99838734, 'index': 1, 'word': 'Dutch', 'start': 0, 'end': 5}, {'entity': 'I-ORG', 'score': 0.9696913, 'index': 9, 'word': 'El', 'start': 30, 'end': 32}, {'entity': 'I-ORG', 'score': 0.9766555, 'index': 10, 'word': 'Al', 'start': 33, 'end': 35}, {'entity': 'I-LOC', 'score': 0.48841906, 'index': 22, 'word': 'THE', 'start': 57, 'end': 60}, {'entity': 'I-LOC', 'score': 0.3971119, 'index': 23, 'word': 'H', 'start': 61, 'end': 62}, {'entity': 'I-MISC', 'score': 0.47568607, 'index': 24, 'word': '##AG', 'start': 62, 'end': 64}, {'entity': 'I-MISC', 'score': 0.99921906, 'index': 36, 'word': 'Dutch', 'start': 87, 'end': 92}, {'entity': 'I-PER', 'score': 0.9996809, 'index': 39, 'word': 'Anne', 'start': 112, 'end': 116}, {'entity': 'I-PER', 'score': 0.9993094, 'index': 40, 'word': '##mar', 'start': 116, 'end': 119}, {'entity': 'I-PER', 'score': 0.99938035, 'index': 41, 'word': '##ie', 'start': 119, 'end': 121}, {'entity': 'I-PER', 'score': 0.99979645, 'index': 42, 'word': 'Jo', 'start': 122, 'end': 124}, {'entity': 'I-PER', 'score': 0.9993304, 'index': 43, 'word': '##rri', 'start': 124, 'end': 127}, {'entity': 'I-PER', 'score': 0.99667597, 'index': 44, 'word': '##ts', 'start': 127, 'end': 129}, {'entity': 'I-PER', 'score': 0.99702066, 'index': 45, 'word': '##ma', 'start': 129, 'end': 131}, {'entity': 'I-MISC', 'score': 0.82108957, 'index': 65, 'word': 'El', 'start': 232, 'end': 234}, {'entity': 'I-ORG', 'score': 0.6299714, 'index': 66, 'word': 'Al', 'start': 235, 'end': 237}, {'entity': 'I-LOC', 'score': 0.9994485, 'index': 75, 'word': 'Amsterdam', 'start': 273, 'end': 282}, {'entity': 'I-ORG', 'score': 0.99944645, 'index': 113, 'word': 'El', 'start': 462, 'end': 464}, {'entity': 'I-ORG', 'score': 0.99919003, 'index': 114, 'word': 'Al', 'start': 465, 'end': 467}, {'entity': 'I-LOC', 'score': 0.9989888, 'index': 120, 'word': 'Tel', 'start': 486, 'end': 489}, {'entity': 'I-LOC', 'score': 0.9994367, 'index': 121, 'word': 'Aviv', 'start': 490, 'end': 494}, {'entity': 'I-MISC', 'score': 0.9991516, 'index': 128, 'word': 'Dutch', 'start': 506, 'end': 511}, {'entity': 'I-MISC', 'score': 0.9991634, 'index': 142, 'word': 'Dutch', 'start': 580, 'end': 585}, {'entity': 'I-PER', 'score': 0.99976844, 'index': 191, 'word': 'Jo', 'start': 796, 'end': 798}, {'entity': 'I-PER', 'score': 0.99769247, 'index': 192, 'word': '##rri', 'start': 798, 'end': 801}, {'entity': 'I-PER', 'score': 0.99508375, 'index': 193, 'word': '##ts', 'start': 801, 'end': 803}, {'entity': 'I-PER', 'score': 0.93307644, 'index': 194, 'word': '##ma', 'start': 803, 'end': 805}, {'entity': 'I-ORG', 'score': 0.9988617, 'index': 200, 'word': 'El', 'start': 836, 'end': 838}, {'entity': 'I-ORG', 'score': 0.9989215, 'index': 201, 'word': 'Al', 'start': 839, 'end': 841}, {'entity': 'I-ORG', 'score': 0.9997706, 'index': 229, 'word': 'Air', 'start': 972, 'end': 975}, {'entity': 'I-ORG', 'score': 0.9996208, 'index': 230, 'word': 'Car', 'start': 976, 'end': 979}, {'entity': 'I-ORG', 'score': 0.9993814, 'index': 231, 'word': '##go', 'start': 979, 'end': 981}, {'entity': 'I-ORG', 'score': 0.9994185, 'index': 232, 'word': 'News', 'start': 982, 'end': 986}, {'entity': 'I-ORG', 'score': 0.99880624, 'index': 233, 'word': '##room', 'start': 986, 'end': 990}]
[{'entity': 'I-MISC', 'score': 0.9876292, 'index': 1, 'word': 'Armenians', 'start': 0, 'end': 9}, {'entity': 'I-MISC', 'score': 0.99698156, 'index': 3, 'word': 'A', 'start': 12, 'end': 13}, {'entity': 'I-MISC', 'score': 0.9844579, 'index': 4, 'word': '##zer', 'start': 13, 'end': 16}, {'entity': 'I-MISC', 'score': 0.96769476, 'index': 5, 'word': '##is', 'start': 16, 'end': 18}, {'entity': 'I-LOC', 'score': 0.9998621, 'index': 10, 'word': 'Germany', 'start': 39, 'end': 46}, {'entity': 'I-LOC', 'score': 0.9978514, 'index': 16, 'word': 'B', 'start': 54, 'end': 55}, {'entity': 'I-LOC', 'score': 0.9834819, 'index': 17, 'word': '##ON', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.99565226, 'index': 18, 'word': '##N', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9997321, 'index': 30, 'word': 'Armenia', 'start': 96, 'end': 103}, {'entity': 'I-LOC', 'score': 0.9998022, 'index': 32, 'word': 'Azerbaijan', 'start': 108, 'end': 118}, {'entity': 'I-LOC', 'score': 0.99986434, 'index': 39, 'word': 'Germany', 'start': 151, 'end': 158}, {'entity': 'I-LOC', 'score': 0.99797434, 'index': 48, 'word': 'Na', 'start': 203, 'end': 205}, {'entity': 'I-LOC', 'score': 0.9972153, 'index': 49, 'word': '##gor', 'start': 205, 'end': 208}, {'entity': 'I-LOC', 'score': 0.9708062, 'index': 50, 'word': '##no', 'start': 208, 'end': 210}, {'entity': 'I-LOC', 'score': 0.4921225, 'index': 51, 'word': '-', 'start': 210, 'end': 211}, {'entity': 'I-LOC', 'score': 0.99895203, 'index': 52, 'word': 'Kara', 'start': 211, 'end': 215}, {'entity': 'I-LOC', 'score': 0.9787942, 'index': 53, 'word': '##ba', 'start': 215, 'end': 217}, {'entity': 'I-LOC', 'score': 0.99929905, 'index': 54, 'word': '##kh', 'start': 217, 'end': 219}, {'entity': 'I-MISC', 'score': 0.99793196, 'index': 85, 'word': 'Azerbaijani', 'start': 346, 'end': 357}, {'entity': 'I-PER', 'score': 0.99954706, 'index': 88, 'word': 'V', 'start': 379, 'end': 380}, {'entity': 'I-PER', 'score': 0.9937836, 'index': 89, 'word': '##af', 'start': 380, 'end': 382}, {'entity': 'I-PER', 'score': 0.99921954, 'index': 90, 'word': '##a', 'start': 382, 'end': 383}, {'entity': 'I-PER', 'score': 0.999713, 'index': 91, 'word': 'G', 'start': 384, 'end': 385}, {'entity': 'I-PER', 'score': 0.99842274, 'index': 92, 'word': '##uli', 'start': 385, 'end': 388}, {'entity': 'I-PER', 'score': 0.996806, 'index': 93, 'word': '##zad', 'start': 388, 'end': 391}, {'entity': 'I-PER', 'score': 0.99217355, 'index': 94, 'word': '##e', 'start': 391, 'end': 392}, {'entity': 'I-MISC', 'score': 0.99784243, 'index': 97, 'word': 'Armenian', 'start': 401, 'end': 409}, {'entity': 'I-PER', 'score': 0.999696, 'index': 99, 'word': 'Z', 'start': 422, 'end': 423}, {'entity': 'I-PER', 'score': 0.9991321, 'index': 100, 'word': '##hir', 'start': 423, 'end': 426}, {'entity': 'I-PER', 'score': 0.9950793, 'index': 101, 'word': '##ay', 'start': 426, 'end': 428}, {'entity': 'I-PER', 'score': 0.9993369, 'index': 102, 'word': '##r', 'start': 428, 'end': 429}, {'entity': 'I-PER', 'score': 0.9996495, 'index': 103, 'word': 'Li', 'start': 430, 'end': 432}, {'entity': 'I-PER', 'score': 0.99661833, 'index': 104, 'word': '##par', 'start': 432, 'end': 435}, {'entity': 'I-PER', 'score': 0.9794281, 'index': 105, 'word': '##ity', 'start': 435, 'end': 438}, {'entity': 'I-PER', 'score': 0.98820496, 'index': 106, 'word': '##an', 'start': 438, 'end': 440}, {'entity': 'I-LOC', 'score': 0.99934477, 'index': 133, 'word': 'Na', 'start': 557, 'end': 559}, {'entity': 'I-LOC', 'score': 0.99864954, 'index': 134, 'word': '##gor', 'start': 559, 'end': 562}, {'entity': 'I-LOC', 'score': 0.98523825, 'index': 135, 'word': '##no', 'start': 562, 'end': 564}, {'entity': 'I-LOC', 'score': 0.62301373, 'index': 136, 'word': '-', 'start': 564, 'end': 565}, {'entity': 'I-LOC', 'score': 0.9995352, 'index': 137, 'word': 'Kara', 'start': 565, 'end': 569}, {'entity': 'I-LOC', 'score': 0.98839986, 'index': 138, 'word': '##ba', 'start': 569, 'end': 571}, {'entity': 'I-LOC', 'score': 0.9993579, 'index': 139, 'word': '##kh', 'start': 571, 'end': 573}, {'entity': 'I-MISC', 'score': 0.9984384, 'index': 147, 'word': 'A', 'start': 614, 'end': 615}, {'entity': 'I-MISC', 'score': 0.9964637, 'index': 148, 'word': '##zer', 'start': 615, 'end': 618}, {'entity': 'I-MISC', 'score': 0.99095446, 'index': 149, 'word': '##i', 'start': 618, 'end': 619}, {'entity': 'I-MISC', 'score': 0.9897551, 'index': 157, 'word': 'Armenians', 'start': 660, 'end': 669}, {'entity': 'I-MISC', 'score': 0.99728334, 'index': 159, 'word': 'A', 'start': 676, 'end': 677}, {'entity': 'I-MISC', 'score': 0.9945538, 'index': 160, 'word': '##zer', 'start': 677, 'end': 680}, {'entity': 'I-MISC', 'score': 0.85053533, 'index': 161, 'word': '##is', 'start': 680, 'end': 682}, {'entity': 'I-LOC', 'score': 0.9982358, 'index': 207, 'word': 'Na', 'start': 857, 'end': 859}, {'entity': 'I-LOC', 'score': 0.9973896, 'index': 208, 'word': '##gor', 'start': 859, 'end': 862}, {'entity': 'I-LOC', 'score': 0.9844893, 'index': 209, 'word': '##no', 'start': 862, 'end': 864}, {'entity': 'I-LOC', 'score': 0.99905354, 'index': 211, 'word': 'Kara', 'start': 865, 'end': 869}, {'entity': 'I-LOC', 'score': 0.9739155, 'index': 212, 'word': '##ba', 'start': 869, 'end': 871}, {'entity': 'I-LOC', 'score': 0.9986284, 'index': 213, 'word': '##kh', 'start': 871, 'end': 873}, {'entity': 'I-LOC', 'score': 0.9998516, 'index': 242, 'word': 'Germany', 'start': 998, 'end': 1005}, {'entity': 'I-LOC', 'score': 0.9997979, 'index': 248, 'word': 'Azerbaijan', 'start': 1013, 'end': 1023}, {'entity': 'I-LOC', 'score': 0.9985007, 'index': 258, 'word': 'Na', 'start': 1069, 'end': 1071}, {'entity': 'I-LOC', 'score': 0.998206, 'index': 259, 'word': '##gor', 'start': 1071, 'end': 1074}, {'entity': 'I-LOC', 'score': 0.97906333, 'index': 260, 'word': '##no', 'start': 1074, 'end': 1076}, {'entity': 'I-LOC', 'score': 0.99923897, 'index': 262, 'word': 'Kara', 'start': 1077, 'end': 1081}, {'entity': 'I-LOC', 'score': 0.9546884, 'index': 263, 'word': '##ba', 'start': 1081, 'end': 1083}, {'entity': 'I-LOC', 'score': 0.9992453, 'index': 264, 'word': '##kh', 'start': 1083, 'end': 1085}, {'entity': 'I-MISC', 'score': 0.99829954, 'index': 266, 'word': 'Armenian', 'start': 1089, 'end': 1097}, {'entity': 'I-LOC', 'score': 0.9997428, 'index': 275, 'word': 'Armenia', 'start': 1136, 'end': 1143}, {'entity': 'I-LOC', 'score': 0.9998135, 'index': 291, 'word': 'Russia', 'start': 1198, 'end': 1204}, {'entity': 'I-ORG', 'score': 0.99765223, 'index': 294, 'word': 'Inter', 'start': 1208, 'end': 1213}, {'entity': 'I-ORG', 'score': 0.979341, 'index': 295, 'word': '##fa', 'start': 1213, 'end': 1215}, {'entity': 'I-ORG', 'score': 0.99185646, 'index': 296, 'word': '##x', 'start': 1215, 'end': 1216}, {'entity': 'I-LOC', 'score': 0.9998369, 'index': 309, 'word': 'Germany', 'start': 1296, 'end': 1303}, {'entity': 'I-LOC', 'score': 0.9995449, 'index': 329, 'word': 'Amsterdam', 'start': 1393, 'end': 1402}, {'entity': 'I-ORG', 'score': 0.9984958, 'index': 335, 'word': 'Inter', 'start': 1410, 'end': 1415}, {'entity': 'I-ORG', 'score': 0.9835324, 'index': 336, 'word': '##fa', 'start': 1415, 'end': 1417}, {'entity': 'I-ORG', 'score': 0.98719364, 'index': 337, 'word': '##x', 'start': 1417, 'end': 1418}, {'entity': 'I-ORG', 'score': 0.9994368, 'index': 352, 'word': 'Organisation', 'start': 1501, 'end': 1513}, {'entity': 'I-ORG', 'score': 0.9992706, 'index': 353, 'word': 'for', 'start': 1514, 'end': 1517}, {'entity': 'I-ORG', 'score': 0.9995246, 'index': 354, 'word': 'Security', 'start': 1518, 'end': 1526}, {'entity': 'I-ORG', 'score': 0.99949, 'index': 355, 'word': 'and', 'start': 1527, 'end': 1530}, {'entity': 'I-ORG', 'score': 0.99953187, 'index': 356, 'word': 'Cooperation', 'start': 1531, 'end': 1542}, {'entity': 'I-ORG', 'score': 0.9987966, 'index': 357, 'word': 'in', 'start': 1543, 'end': 1545}, {'entity': 'I-ORG', 'score': 0.99800557, 'index': 358, 'word': 'Europe', 'start': 1546, 'end': 1552}, {'entity': 'I-ORG', 'score': 0.9995745, 'index': 360, 'word': 'OS', 'start': 1555, 'end': 1557}, {'entity': 'I-ORG', 'score': 0.99927455, 'index': 361, 'word': '##CE', 'start': 1557, 'end': 1559}, {'entity': 'I-ORG', 'score': 0.9983285, 'index': 368, 'word': 'Minsk', 'start': 1582, 'end': 1587}, {'entity': 'I-ORG', 'score': 0.99818784, 'index': 369, 'word': 'Group', 'start': 1588, 'end': 1593}, {'entity': 'I-LOC', 'score': 0.9995468, 'index': 374, 'word': 'Russia', 'start': 1614, 'end': 1620}, {'entity': 'I-LOC', 'score': 0.999091, 'index': 376, 'word': 'Finland', 'start': 1625, 'end': 1632}]
[{'entity': 'I-MISC', 'score': 0.8464335, 'index': 5, 'word': 'Arctic', 'start': 15, 'end': 21}, {'entity': 'I-PER', 'score': 0.7589361, 'index': 15, 'word': 'Rolf', 'start': 54, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9696042, 'index': 16, 'word': 'So', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.7595578, 'index': 17, 'word': '##der', 'start': 61, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9271826, 'index': 18, 'word': '##lind', 'start': 64, 'end': 68}, {'entity': 'I-LOC', 'score': 0.9966743, 'index': 23, 'word': 'L', 'start': 74, 'end': 75}, {'entity': 'I-LOC', 'score': 0.9933662, 'index': 24, 'word': '##ON', 'start': 75, 'end': 77}, {'entity': 'I-LOC', 'score': 0.9888919, 'index': 25, 'word': '##G', 'start': 77, 'end': 78}, {'entity': 'I-LOC', 'score': 0.9837299, 'index': 26, 'word': '##Y', 'start': 78, 'end': 79}, {'entity': 'I-LOC', 'score': 0.91905695, 'index': 27, 'word': '##EA', 'start': 79, 'end': 81}, {'entity': 'I-LOC', 'score': 0.9905595, 'index': 28, 'word': '##R', 'start': 81, 'end': 82}, {'entity': 'I-LOC', 'score': 0.9996123, 'index': 30, 'word': 'Norway', 'start': 85, 'end': 91}, {'entity': 'I-MISC', 'score': 0.95644075, 'index': 51, 'word': 'Arctic', 'start': 152, 'end': 158}, {'entity': 'I-LOC', 'score': 0.9942601, 'index': 79, 'word': 'Long', 'start': 259, 'end': 263}, {'entity': 'I-LOC', 'score': 0.95913565, 'index': 80, 'word': '##ye', 'start': 263, 'end': 265}, {'entity': 'I-LOC', 'score': 0.99489033, 'index': 81, 'word': '##ar', 'start': 265, 'end': 267}, {'entity': 'I-MISC', 'score': 0.9989397, 'index': 108, 'word': 'Russian', 'start': 381, 'end': 388}, {'entity': 'I-PER', 'score': 0.99920255, 'index': 166, 'word': 'St', 'start': 608, 'end': 610}, {'entity': 'I-PER', 'score': 0.9985361, 'index': 167, 'word': '##ig', 'start': 610, 'end': 612}, {'entity': 'I-PER', 'score': 0.9994905, 'index': 168, 'word': 'On', 'start': 613, 'end': 615}, {'entity': 'I-PER', 'score': 0.99507153, 'index': 169, 'word': '##ar', 'start': 615, 'end': 617}, {'entity': 'I-PER', 'score': 0.9970975, 'index': 170, 'word': '##heim', 'start': 617, 'end': 621}, {'entity': 'I-MISC', 'score': 0.9905501, 'index': 221, 'word': 'Arctic', 'start': 824, 'end': 830}, {'entity': 'I-LOC', 'score': 0.99850607, 'index': 224, 'word': 'S', 'start': 841, 'end': 842}, {'entity': 'I-LOC', 'score': 0.9962794, 'index': 225, 'word': '##pit', 'start': 842, 'end': 845}, {'entity': 'I-LOC', 'score': 0.99572057, 'index': 226, 'word': '##z', 'start': 845, 'end': 846}, {'entity': 'I-LOC', 'score': 0.9946385, 'index': 227, 'word': '##berg', 'start': 846, 'end': 850}, {'entity': 'I-LOC', 'score': 0.9992455, 'index': 228, 'word': '##en', 'start': 850, 'end': 852}, {'entity': 'I-LOC', 'score': 0.9974241, 'index': 235, 'word': 'Long', 'start': 880, 'end': 884}, {'entity': 'I-LOC', 'score': 0.9593757, 'index': 236, 'word': '##ye', 'start': 884, 'end': 886}, {'entity': 'I-LOC', 'score': 0.99727756, 'index': 237, 'word': '##ar', 'start': 886, 'end': 888}, {'entity': 'I-PER', 'score': 0.9995919, 'index': 279, 'word': 'On', 'start': 1048, 'end': 1050}, {'entity': 'I-PER', 'score': 0.99840826, 'index': 280, 'word': '##ar', 'start': 1050, 'end': 1052}, {'entity': 'I-PER', 'score': 0.99782735, 'index': 281, 'word': '##heim', 'start': 1052, 'end': 1056}, {'entity': 'I-ORG', 'score': 0.99931824, 'index': 286, 'word': 'Re', 'start': 1069, 'end': 1071}, {'entity': 'I-ORG', 'score': 0.99115855, 'index': 287, 'word': '##uters', 'start': 1071, 'end': 1076}, {'entity': 'I-MISC', 'score': 0.99823135, 'index': 334, 'word': 'Russians', 'start': 1274, 'end': 1282}, {'entity': 'I-MISC', 'score': 0.99491876, 'index': 336, 'word': 'Ukrainian', 'start': 1287, 'end': 1296}, {'entity': 'I-LOC', 'score': 0.99849546, 'index': 347, 'word': 'Bar', 'start': 1338, 'end': 1341}, {'entity': 'I-LOC', 'score': 0.9968405, 'index': 348, 'word': '##ents', 'start': 1341, 'end': 1345}, {'entity': 'I-LOC', 'score': 0.9980007, 'index': 349, 'word': '##burg', 'start': 1345, 'end': 1349}, {'entity': 'I-LOC', 'score': 0.99684983, 'index': 351, 'word': 'Pyramid', 'start': 1354, 'end': 1361}, {'entity': 'I-LOC', 'score': 0.99884087, 'index': 352, 'word': '##en', 'start': 1361, 'end': 1363}, {'entity': 'I-LOC', 'score': 0.9973328, 'index': 358, 'word': 'Long', 'start': 1371, 'end': 1375}, {'entity': 'I-LOC', 'score': 0.9659972, 'index': 359, 'word': '##ye', 'start': 1375, 'end': 1377}, {'entity': 'I-LOC', 'score': 0.9965025, 'index': 360, 'word': '##ar', 'start': 1377, 'end': 1379}, {'entity': 'I-MISC', 'score': 0.9992131, 'index': 363, 'word': 'Norwegian', 'start': 1385, 'end': 1394}, {'entity': 'I-MISC', 'score': 0.5842525, 'index': 384, 'word': 'S', 'start': 1472, 'end': 1473}, {'entity': 'I-MISC', 'score': 0.5817293, 'index': 400, 'word': 'S', 'start': 1534, 'end': 1535}, {'entity': 'I-MISC', 'score': 0.59578234, 'index': 412, 'word': 'S', 'start': 1570, 'end': 1571}, {'entity': 'I-ORG', 'score': 0.40837705, 'index': 425, 'word': '##burg', 'start': 1619, 'end': 1623}, {'entity': 'I-PER', 'score': 0.9883437, 'index': 439, 'word': 'Johan', 'start': 1677, 'end': 1682}, {'entity': 'I-MISC', 'score': 0.5542792, 'index': 440, 'word': 'S', 'start': 1683, 'end': 1684}, {'entity': 'I-MISC', 'score': 0.58313835, 'index': 448, 'word': 'S', 'start': 1700, 'end': 1701}, {'entity': 'I-MISC', 'score': 0.5830875, 'index': 450, 'word': 'S', 'start': 1703, 'end': 1704}, {'entity': 'I-MISC', 'score': 0.99667346, 'index': 468, 'word': 'Norwegian', 'start': 1777, 'end': 1786}, {'entity': 'I-MISC', 'score': 0.9982815, 'index': 470, 'word': 'Russian', 'start': 1791, 'end': 1798}, {'entity': 'I-MISC', 'score': 0.5759832, 'index': 495, 'word': 'S', 'start': 1910, 'end': 1911}, {'entity': 'I-PER', 'score': 0.5632084, 'index': 500, 'word': 'Heidi', 'start': 1936, 'end': 1941}, {'entity': 'I-MISC', 'score': 0.5517584, 'index': 510, 'word': 'S', 'start': 1969, 'end': 1970}]
[{'entity': 'I-ORG', 'score': 0.99963284, 'index': 1, 'word': 'Eric', 'start': 0, 'end': 4}, {'entity': 'I-ORG', 'score': 0.99904877, 'index': 2, 'word': '##sson', 'start': 4, 'end': 8}, {'entity': 'I-MISC', 'score': 0.60419804, 'index': 10, 'word': 'SK', 'start': 27, 'end': 29}, {'entity': 'I-LOC', 'score': 0.99854016, 'index': 12, 'word': 'China', 'start': 31, 'end': 36}, {'entity': 'I-LOC', 'score': 0.9959468, 'index': 19, 'word': 'ST', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.72909355, 'index': 20, 'word': '##OC', 'start': 52, 'end': 54}, {'entity': 'I-LOC', 'score': 0.97969496, 'index': 21, 'word': '##K', 'start': 54, 'end': 55}, {'entity': 'I-LOC', 'score': 0.9613392, 'index': 22, 'word': '##H', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.8238476, 'index': 23, 'word': '##OL', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9904006, 'index': 24, 'word': '##M', 'start': 58, 'end': 59}, {'entity': 'I-MISC', 'score': 0.9991117, 'index': 34, 'word': 'Swedish', 'start': 76, 'end': 83}, {'entity': 'I-ORG', 'score': 0.99963677, 'index': 40, 'word': 'L', 'start': 99, 'end': 100}, {'entity': 'I-ORG', 'score': 0.9995369, 'index': 41, 'word': '##M', 'start': 100, 'end': 101}, {'entity': 'I-ORG', 'score': 0.9997192, 'index': 42, 'word': 'Eric', 'start': 102, 'end': 106}, {'entity': 'I-ORG', 'score': 0.99967504, 'index': 43, 'word': '##sson', 'start': 106, 'end': 110}, {'entity': 'I-ORG', 'score': 0.999498, 'index': 44, 'word': 'AB', 'start': 111, 'end': 113}, {'entity': 'I-LOC', 'score': 0.9991892, 'index': 70, 'word': 'Guangdong', 'start': 213, 'end': 222}, {'entity': 'I-LOC', 'score': 0.99932134, 'index': 73, 'word': 'China', 'start': 235, 'end': 240}, {'entity': 'I-ORG', 'score': 0.9995982, 'index': 79, 'word': 'Eric', 'start': 248, 'end': 252}, {'entity': 'I-ORG', 'score': 0.9989747, 'index': 80, 'word': '##sson', 'start': 252, 'end': 256}, {'entity': 'I-ORG', 'score': 0.9994672, 'index': 90, 'word': 'Guangdong', 'start': 300, 'end': 309}, {'entity': 'I-ORG', 'score': 0.9991227, 'index': 91, 'word': 'Post', 'start': 310, 'end': 314}, {'entity': 'I-ORG', 'score': 0.9987263, 'index': 92, 'word': 'and', 'start': 315, 'end': 318}, {'entity': 'I-ORG', 'score': 0.9993249, 'index': 93, 'word': 'Telecommunications', 'start': 319, 'end': 337}, {'entity': 'I-ORG', 'score': 0.9991393, 'index': 94, 'word': 'Administration', 'start': 338, 'end': 352}, {'entity': 'I-ORG', 'score': 0.9990828, 'index': 96, 'word': 'GP', 'start': 355, 'end': 357}, {'entity': 'I-ORG', 'score': 0.9980196, 'index': 97, 'word': '##TA', 'start': 357, 'end': 359}, {'entity': 'I-ORG', 'score': 0.49545482, 'index': 113, 'word': 'IS', 'start': 414, 'end': 416}, {'entity': 'I-ORG', 'score': 0.93769497, 'index': 118, 'word': 'Intel', 'start': 431, 'end': 436}, {'entity': 'I-ORG', 'score': 0.8428609, 'index': 119, 'word': '##ligent', 'start': 436, 'end': 442}, {'entity': 'I-ORG', 'score': 0.9026729, 'index': 120, 'word': 'Network', 'start': 443, 'end': 450}, {'entity': 'I-ORG', 'score': 0.8257622, 'index': 122, 'word': 'IN', 'start': 453, 'end': 455}, {'entity': 'I-ORG', 'score': 0.99883896, 'index': 140, 'word': 'Eric', 'start': 549, 'end': 553}, {'entity': 'I-ORG', 'score': 0.99615234, 'index': 141, 'word': '##sson', 'start': 553, 'end': 557}, {'entity': 'I-PER', 'score': 0.99932015, 'index': 143, 'word': 'Per', 'start': 568, 'end': 571}, {'entity': 'I-PER', 'score': 0.99963903, 'index': 144, 'word': 'Z', 'start': 572, 'end': 573}, {'entity': 'I-PER', 'score': 0.9962394, 'index': 145, 'word': '##ette', 'start': 573, 'end': 577}, {'entity': 'I-PER', 'score': 0.9787709, 'index': 146, 'word': '##r', 'start': 577, 'end': 578}, {'entity': 'I-PER', 'score': 0.9858073, 'index': 147, 'word': '##quist', 'start': 578, 'end': 583}, {'entity': 'I-ORG', 'score': 0.99950314, 'index': 149, 'word': 'Re', 'start': 589, 'end': 591}, {'entity': 'I-ORG', 'score': 0.9968796, 'index': 150, 'word': '##uters', 'start': 591, 'end': 596}, {'entity': 'I-LOC', 'score': 0.99977905, 'index': 177, 'word': 'Stockholm', 'start': 676, 'end': 685}]
[{'entity': 'I-LOC', 'score': 0.99955136, 'index': 1, 'word': 'HK', 'start': 0, 'end': 2}, {'entity': 'I-PER', 'score': 0.9989235, 'index': 11, 'word': 'T', 'start': 45, 'end': 46}, {'entity': 'I-PER', 'score': 0.99317014, 'index': 12, 'word': '##sang', 'start': 46, 'end': 50}, {'entity': 'I-LOC', 'score': 0.99883145, 'index': 18, 'word': 'AU', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9957671, 'index': 19, 'word': '##C', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9985146, 'index': 20, 'word': '##K', 'start': 61, 'end': 62}, {'entity': 'I-LOC', 'score': 0.99618286, 'index': 21, 'word': '##LA', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9990823, 'index': 22, 'word': '##ND', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.9996611, 'index': 32, 'word': 'Hong', 'start': 83, 'end': 87}, {'entity': 'I-LOC', 'score': 0.9993843, 'index': 33, 'word': 'Kong', 'start': 88, 'end': 92}, {'entity': 'I-PER', 'score': 0.999376, 'index': 36, 'word': 'Donald', 'start': 113, 'end': 119}, {'entity': 'I-PER', 'score': 0.99962735, 'index': 37, 'word': 'T', 'start': 120, 'end': 121}, {'entity': 'I-PER', 'score': 0.99902, 'index': 38, 'word': '##sang', 'start': 121, 'end': 125}, {'entity': 'I-MISC', 'score': 0.99915683, 'index': 62, 'word': 'Chinese', 'start': 235, 'end': 242}, {'entity': 'I-LOC', 'score': 0.9897451, 'index': 84, 'word': 'South', 'start': 329, 'end': 334}, {'entity': 'I-LOC', 'score': 0.98832124, 'index': 85, 'word': 'China', 'start': 335, 'end': 340}, {'entity': 'I-PER', 'score': 0.9996562, 'index': 113, 'word': 'T', 'start': 492, 'end': 493}, {'entity': 'I-PER', 'score': 0.9972824, 'index': 114, 'word': '##sang', 'start': 493, 'end': 497}, {'entity': 'I-LOC', 'score': 0.9992354, 'index': 120, 'word': 'Auckland', 'start': 518, 'end': 526}, {'entity': 'I-LOC', 'score': 0.99979967, 'index': 125, 'word': 'New', 'start': 545, 'end': 548}, {'entity': 'I-LOC', 'score': 0.99981123, 'index': 126, 'word': 'Zealand', 'start': 549, 'end': 556}, {'entity': 'I-LOC', 'score': 0.9998074, 'index': 132, 'word': 'Hong', 'start': 564, 'end': 568}, {'entity': 'I-LOC', 'score': 0.99976915, 'index': 133, 'word': 'Kong', 'start': 569, 'end': 573}, {'entity': 'I-LOC', 'score': 0.9998211, 'index': 159, 'word': 'Britain', 'start': 718, 'end': 725}, {'entity': 'I-LOC', 'score': 0.99983966, 'index': 161, 'word': 'China', 'start': 729, 'end': 734}, {'entity': 'I-LOC', 'score': 0.99978787, 'index': 175, 'word': 'Hong', 'start': 780, 'end': 784}, {'entity': 'I-LOC', 'score': 0.9997459, 'index': 176, 'word': 'Kong', 'start': 785, 'end': 789}, {'entity': 'I-PER', 'score': 0.9995747, 'index': 204, 'word': 'T', 'start': 944, 'end': 945}, {'entity': 'I-PER', 'score': 0.99547076, 'index': 205, 'word': '##sang', 'start': 945, 'end': 949}, {'entity': 'I-LOC', 'score': 0.9995802, 'index': 216, 'word': 'Hong', 'start': 988, 'end': 992}, {'entity': 'I-LOC', 'score': 0.99933535, 'index': 217, 'word': 'Kong', 'start': 993, 'end': 997}, {'entity': 'I-LOC', 'score': 0.99980396, 'index': 251, 'word': 'Hong', 'start': 1147, 'end': 1151}, {'entity': 'I-LOC', 'score': 0.99980503, 'index': 252, 'word': 'Kong', 'start': 1152, 'end': 1156}, {'entity': 'I-LOC', 'score': 0.9997596, 'index': 257, 'word': 'Hong', 'start': 1173, 'end': 1177}, {'entity': 'I-LOC', 'score': 0.99970335, 'index': 258, 'word': 'Kong', 'start': 1178, 'end': 1182}, {'entity': 'I-LOC', 'score': 0.99780875, 'index': 273, 'word': 'Wellington', 'start': 1219, 'end': 1229}]
[{'entity': 'I-MISC', 'score': 0.99868494, 'index': 9, 'word': 'Indonesian', 'start': 15, 'end': 25}, {'entity': 'I-MISC', 'score': 0.9986975, 'index': 25, 'word': 'Indonesian', 'start': 88, 'end': 98}, {'entity': 'I-ORG', 'score': 0.9996331, 'index': 36, 'word': 'Re', 'start': 166, 'end': 168}, {'entity': 'I-ORG', 'score': 0.9989818, 'index': 37, 'word': '##uters', 'start': 168, 'end': 173}, {'entity': 'I-LOC', 'score': 0.99936575, 'index': 39, 'word': 'Jakarta', 'start': 177, 'end': 184}, {'entity': 'I-ORG', 'score': 0.99961394, 'index': 45, 'word': 'Re', 'start': 192, 'end': 194}, {'entity': 'I-ORG', 'score': 0.9986986, 'index': 46, 'word': '##uters', 'start': 194, 'end': 199}, {'entity': 'I-ORG', 'score': 0.6625607, 'index': 105, 'word': 'K', 'start': 354, 'end': 355}, {'entity': 'I-MISC', 'score': 0.9982326, 'index': 113, 'word': 'Indonesian', 'start': 366, 'end': 376}, {'entity': 'I-PER', 'score': 0.99925095, 'index': 115, 'word': 'Su', 'start': 387, 'end': 389}, {'entity': 'I-PER', 'score': 0.9951414, 'index': 116, 'word': '##hart', 'start': 389, 'end': 393}, {'entity': 'I-PER', 'score': 0.9714072, 'index': 117, 'word': '##o', 'start': 393, 'end': 394}, {'entity': 'I-ORG', 'score': 0.94844306, 'index': 151, 'word': 'J', 'start': 525, 'end': 526}, {'entity': 'I-ORG', 'score': 0.8533283, 'index': 152, 'word': '##A', 'start': 526, 'end': 527}, {'entity': 'I-ORG', 'score': 0.8817999, 'index': 153, 'word': '##KA', 'start': 527, 'end': 529}, {'entity': 'I-ORG', 'score': 0.8309037, 'index': 154, 'word': '##RT', 'start': 529, 'end': 531}, {'entity': 'I-ORG', 'score': 0.9241831, 'index': 155, 'word': '##A', 'start': 531, 'end': 532}, {'entity': 'I-ORG', 'score': 0.71795666, 'index': 156, 'word': 'P', 'start': 533, 'end': 534}, {'entity': 'I-ORG', 'score': 0.99931204, 'index': 166, 'word': 'House', 'start': 558, 'end': 563}, {'entity': 'I-ORG', 'score': 0.9990393, 'index': 167, 'word': 'of', 'start': 564, 'end': 566}, {'entity': 'I-ORG', 'score': 0.9989749, 'index': 168, 'word': 'Representatives', 'start': 567, 'end': 582}, {'entity': 'I-PER', 'score': 0.99750865, 'index': 169, 'word': 'W', 'start': 583, 'end': 584}, {'entity': 'I-PER', 'score': 0.9688863, 'index': 170, 'word': '##ah', 'start': 584, 'end': 586}, {'entity': 'I-PER', 'score': 0.99337834, 'index': 171, 'word': '##ono', 'start': 586, 'end': 589}, {'entity': 'I-LOC', 'score': 0.9997018, 'index': 211, 'word': 'Philippines', 'start': 791, 'end': 802}, {'entity': 'I-MISC', 'score': 0.88517064, 'index': 224, 'word': 'Philippine', 'start': 861, 'end': 871}, {'entity': 'I-ORG', 'score': 0.9990675, 'index': 228, 'word': 'Mo', 'start': 891, 'end': 893}, {'entity': 'I-ORG', 'score': 0.99923027, 'index': 229, 'word': '##ro', 'start': 893, 'end': 895}, {'entity': 'I-ORG', 'score': 0.9994709, 'index': 230, 'word': 'National', 'start': 896, 'end': 904}, {'entity': 'I-ORG', 'score': 0.99959713, 'index': 231, 'word': 'Liberation', 'start': 905, 'end': 915}, {'entity': 'I-ORG', 'score': 0.9993612, 'index': 232, 'word': 'Front', 'start': 916, 'end': 921}, {'entity': 'I-ORG', 'score': 0.99958545, 'index': 234, 'word': 'M', 'start': 924, 'end': 925}, {'entity': 'I-ORG', 'score': 0.9988845, 'index': 235, 'word': '##NL', 'start': 925, 'end': 927}, {'entity': 'I-ORG', 'score': 0.9989526, 'index': 236, 'word': '##F', 'start': 927, 'end': 928}, {'entity': 'I-LOC', 'score': 0.6676619, 'index': 269, 'word': 'ME', 'start': 1050, 'end': 1052}, {'entity': 'I-ORG', 'score': 0.873165, 'index': 270, 'word': '##DI', 'start': 1052, 'end': 1054}, {'entity': 'I-ORG', 'score': 0.94073874, 'index': 271, 'word': '##A', 'start': 1054, 'end': 1055}, {'entity': 'I-ORG', 'score': 0.8355179, 'index': 272, 'word': 'IN', 'start': 1056, 'end': 1058}, {'entity': 'I-ORG', 'score': 0.7688571, 'index': 273, 'word': '##D', 'start': 1058, 'end': 1059}, {'entity': 'I-ORG', 'score': 0.8393586, 'index': 274, 'word': '##ON', 'start': 1059, 'end': 1061}, {'entity': 'I-ORG', 'score': 0.79073584, 'index': 275, 'word': '##ES', 'start': 1061, 'end': 1063}, {'entity': 'I-ORG', 'score': 0.78383267, 'index': 276, 'word': '##IA', 'start': 1063, 'end': 1065}, {'entity': 'I-LOC', 'score': 0.999498, 'index': 286, 'word': 'Indonesia', 'start': 1087, 'end': 1096}, {'entity': 'I-LOC', 'score': 0.99193734, 'index': 290, 'word': 'Timor', 'start': 1114, 'end': 1119}, {'entity': 'I-ORG', 'score': 0.99919707, 'index': 295, 'word': 'Ki', 'start': 1141, 'end': 1143}, {'entity': 'I-ORG', 'score': 0.9992397, 'index': 296, 'word': '##a', 'start': 1143, 'end': 1144}, {'entity': 'I-ORG', 'score': 0.99854386, 'index': 297, 'word': 'Motor', 'start': 1145, 'end': 1150}, {'entity': 'I-ORG', 'score': 0.9981869, 'index': 298, 'word': 'Corp', 'start': 1151, 'end': 1155}, {'entity': 'I-LOC', 'score': 0.9963296, 'index': 300, 'word': 'South', 'start': 1159, 'end': 1164}, {'entity': 'I-LOC', 'score': 0.99459237, 'index': 301, 'word': 'Korea', 'start': 1165, 'end': 1170}, {'entity': 'I-LOC', 'score': 0.99967265, 'index': 304, 'word': 'Jakarta', 'start': 1182, 'end': 1189}, {'entity': 'I-LOC', 'score': 0.9984731, 'index': 307, 'word': 'Tan', 'start': 1193, 'end': 1196}, {'entity': 'I-LOC', 'score': 0.9830702, 'index': 308, 'word': '##jun', 'start': 1196, 'end': 1199}, {'entity': 'I-LOC', 'score': 0.9970391, 'index': 309, 'word': '##g', 'start': 1199, 'end': 1200}, {'entity': 'I-LOC', 'score': 0.9980913, 'index': 310, 'word': 'P', 'start': 1201, 'end': 1202}, {'entity': 'I-LOC', 'score': 0.93834496, 'index': 311, 'word': '##rio', 'start': 1202, 'end': 1205}, {'entity': 'I-LOC', 'score': 0.99720496, 'index': 312, 'word': '##k', 'start': 1205, 'end': 1206}, {'entity': 'I-ORG', 'score': 0.998926, 'index': 328, 'word': 'Ki', 'start': 1268, 'end': 1270}, {'entity': 'I-ORG', 'score': 0.9985379, 'index': 329, 'word': '##a', 'start': 1270, 'end': 1271}, {'entity': 'I-ORG', 'score': 0.99684983, 'index': 331, 'word': 'PT', 'start': 1276, 'end': 1278}, {'entity': 'I-ORG', 'score': 0.99952257, 'index': 332, 'word': 'Timor', 'start': 1279, 'end': 1284}, {'entity': 'I-ORG', 'score': 0.9996068, 'index': 333, 'word': 'Put', 'start': 1285, 'end': 1288}, {'entity': 'I-ORG', 'score': 0.9994772, 'index': 334, 'word': '##ra', 'start': 1288, 'end': 1290}, {'entity': 'I-ORG', 'score': 0.99943703, 'index': 335, 'word': 'Na', 'start': 1291, 'end': 1293}, {'entity': 'I-ORG', 'score': 0.9994711, 'index': 336, 'word': '##sional', 'start': 1293, 'end': 1299}, {'entity': 'I-PER', 'score': 0.9980527, 'index': 344, 'word': 'Su', 'start': 1335, 'end': 1337}, {'entity': 'I-PER', 'score': 0.98857343, 'index': 345, 'word': '##hart', 'start': 1337, 'end': 1341}, {'entity': 'I-PER', 'score': 0.94225234, 'index': 346, 'word': '##o', 'start': 1341, 'end': 1342}, {'entity': 'I-LOC', 'score': 0.9998055, 'index': 360, 'word': 'Indonesia', 'start': 1403, 'end': 1412}, {'entity': 'I-ORG', 'score': 0.80018085, 'index': 374, 'word': 'R', 'start': 1433, 'end': 1434}, {'entity': 'I-ORG', 'score': 0.3967732, 'index': 375, 'word': '##EP', 'start': 1434, 'end': 1436}, {'entity': 'I-ORG', 'score': 0.38506088, 'index': 376, 'word': '##U', 'start': 1436, 'end': 1437}, {'entity': 'I-ORG', 'score': 0.7249354, 'index': 377, 'word': '##BL', 'start': 1437, 'end': 1439}, {'entity': 'I-ORG', 'score': 0.761431, 'index': 378, 'word': '##I', 'start': 1439, 'end': 1440}, {'entity': 'I-ORG', 'score': 0.55857396, 'index': 379, 'word': '##KA', 'start': 1440, 'end': 1442}, {'entity': 'I-ORG', 'score': 0.725406, 'index': 385, 'word': 'Central', 'start': 1452, 'end': 1459}, {'entity': 'I-LOC', 'score': 0.8402699, 'index': 386, 'word': 'Jakarta', 'start': 1460, 'end': 1467}, {'entity': 'I-ORG', 'score': 0.6403897, 'index': 388, 'word': 'Court', 'start': 1477, 'end': 1482}, {'entity': 'I-MISC', 'score': 0.99786264, 'index': 399, 'word': 'Indonesian', 'start': 1528, 'end': 1538}, {'entity': 'I-ORG', 'score': 0.6586196, 'index': 400, 'word': 'Democratic', 'start': 1539, 'end': 1549}, {'entity': 'I-ORG', 'score': 0.9287045, 'index': 401, 'word': 'Party', 'start': 1550, 'end': 1555}, {'entity': 'I-ORG', 'score': 0.91373765, 'index': 403, 'word': 'PD', 'start': 1558, 'end': 1560}, {'entity': 'I-ORG', 'score': 0.9740922, 'index': 404, 'word': '##I', 'start': 1560, 'end': 1561}, {'entity': 'I-PER', 'score': 0.5405926, 'index': 407, 'word': 'Mega', 'start': 1571, 'end': 1575}, {'entity': 'I-PER', 'score': 0.5753954, 'index': 408, 'word': '##wati', 'start': 1575, 'end': 1579}, {'entity': 'I-PER', 'score': 0.51031584, 'index': 409, 'word': 'Su', 'start': 1580, 'end': 1582}, {'entity': 'I-ORG', 'score': 0.7359774, 'index': 410, 'word': '##kar', 'start': 1582, 'end': 1585}, {'entity': 'I-ORG', 'score': 0.6100084, 'index': 411, 'word': '##no', 'start': 1585, 'end': 1587}, {'entity': 'I-ORG', 'score': 0.9234164, 'index': 413, 'word': '##ri', 'start': 1590, 'end': 1592}, {'entity': 'I-PER', 'score': 0.55178505, 'index': 436, 'word': 'S', 'start': 1698, 'end': 1699}, {'entity': 'I-ORG', 'score': 0.6026928, 'index': 438, 'word': 'Mega', 'start': 1701, 'end': 1705}, {'entity': 'I-PER', 'score': 0.6977124, 'index': 439, 'word': '##wati', 'start': 1705, 'end': 1709}, {'entity': 'I-PER', 'score': 0.60371125, 'index': 460, 'word': 'S', 'start': 1805, 'end': 1806}]
[{'entity': 'I-ORG', 'score': 0.9996537, 'index': 1, 'word': 'Jean', 'start': 0, 'end': 4}, {'entity': 'I-ORG', 'score': 0.99928445, 'index': 2, 'word': '##s', 'start': 4, 'end': 5}, {'entity': 'I-ORG', 'score': 0.9992867, 'index': 3, 'word': 'Mat', 'start': 6, 'end': 9}, {'entity': 'I-ORG', 'score': 0.9994306, 'index': 4, 'word': '##e', 'start': 9, 'end': 10}, {'entity': 'I-ORG', 'score': 0.99923825, 'index': 5, 'word': 'Corp', 'start': 11, 'end': 15}, {'entity': 'I-LOC', 'score': 0.99857223, 'index': 17, 'word': 'TO', 'start': 46, 'end': 48}, {'entity': 'I-LOC', 'score': 0.99494475, 'index': 18, 'word': '##K', 'start': 48, 'end': 49}, {'entity': 'I-LOC', 'score': 0.97078216, 'index': 19, 'word': '##Y', 'start': 49, 'end': 50}, {'entity': 'I-LOC', 'score': 0.99756193, 'index': 20, 'word': '##O', 'start': 50, 'end': 51}, {'entity': 'I-ORG', 'score': 0.9995517, 'index': 137, 'word': 'Jean', 'start': 347, 'end': 351}, {'entity': 'I-ORG', 'score': 0.99876606, 'index': 138, 'word': '##s', 'start': 351, 'end': 352}, {'entity': 'I-ORG', 'score': 0.999047, 'index': 139, 'word': 'Mat', 'start': 353, 'end': 356}, {'entity': 'I-ORG', 'score': 0.9991968, 'index': 140, 'word': '##e', 'start': 356, 'end': 357}, {'entity': 'I-ORG', 'score': 0.9992499, 'index': 141, 'word': 'Corp', 'start': 358, 'end': 362}]
[{'entity': 'I-ORG', 'score': 0.9974074, 'index': 1, 'word': 'A', 'start': 0, 'end': 1}, {'entity': 'I-ORG', 'score': 0.9938791, 'index': 2, 'word': '##pic', 'start': 1, 'end': 4}, {'entity': 'I-ORG', 'score': 0.99523395, 'index': 3, 'word': 'Ya', 'start': 5, 'end': 7}, {'entity': 'I-ORG', 'score': 0.99340045, 'index': 4, 'word': '##mada', 'start': 7, 'end': 11}, {'entity': 'I-LOC', 'score': 0.9986267, 'index': 16, 'word': 'TO', 'start': 42, 'end': 44}, {'entity': 'I-LOC', 'score': 0.99316096, 'index': 17, 'word': '##K', 'start': 44, 'end': 45}, {'entity': 'I-LOC', 'score': 0.9662452, 'index': 18, 'word': '##Y', 'start': 45, 'end': 46}, {'entity': 'I-LOC', 'score': 0.9965988, 'index': 19, 'word': '##O', 'start': 46, 'end': 47}, {'entity': 'I-ORG', 'score': 0.99951446, 'index': 135, 'word': 'A', 'start': 328, 'end': 329}, {'entity': 'I-ORG', 'score': 0.9983822, 'index': 136, 'word': '##pic', 'start': 329, 'end': 332}, {'entity': 'I-ORG', 'score': 0.9993678, 'index': 137, 'word': 'Ya', 'start': 333, 'end': 335}, {'entity': 'I-ORG', 'score': 0.9988839, 'index': 138, 'word': '##mada', 'start': 335, 'end': 339}, {'entity': 'I-ORG', 'score': 0.9988978, 'index': 139, 'word': 'Corp', 'start': 340, 'end': 344}]
[{'entity': 'I-LOC', 'score': 0.9997696, 'index': 9, 'word': 'China', 'start': 25, 'end': 30}, {'entity': 'I-LOC', 'score': 0.9966845, 'index': 20, 'word': 'B', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9847289, 'index': 21, 'word': '##EI', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.93910986, 'index': 22, 'word': '##J', 'start': 63, 'end': 64}, {'entity': 'I-LOC', 'score': 0.99766695, 'index': 23, 'word': '##ING', 'start': 64, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9989219, 'index': 36, 'word': 'China', 'start': 104, 'end': 109}, {'entity': 'I-ORG', 'score': 0.99770796, 'index': 58, 'word': 'Xi', 'start': 228, 'end': 230}, {'entity': 'I-ORG', 'score': 0.98899186, 'index': 59, 'word': '##nh', 'start': 230, 'end': 232}, {'entity': 'I-ORG', 'score': 0.99818283, 'index': 60, 'word': '##ua', 'start': 232, 'end': 234}, {'entity': 'I-LOC', 'score': 0.99455136, 'index': 76, 'word': 'Hui', 'start': 291, 'end': 294}, {'entity': 'I-LOC', 'score': 0.97397083, 'index': 77, 'word': '##ze', 'start': 294, 'end': 296}, {'entity': 'I-LOC', 'score': 0.99736387, 'index': 84, 'word': 'Yunnan', 'start': 336, 'end': 342}, {'entity': 'I-ORG', 'score': 0.9971451, 'index': 205, 'word': 'Xi', 'start': 900, 'end': 902}, {'entity': 'I-ORG', 'score': 0.9937616, 'index': 206, 'word': '##nh', 'start': 902, 'end': 904}, {'entity': 'I-ORG', 'score': 0.99367416, 'index': 207, 'word': '##ua', 'start': 904, 'end': 906}]
[{'entity': 'I-LOC', 'score': 0.9997975, 'index': 1, 'word': 'Singapore', 'start': 0, 'end': 9}, {'entity': 'I-MISC', 'score': 0.9976864, 'index': 3, 'word': 'Thai', 'start': 16, 'end': 20}, {'entity': 'I-LOC', 'score': 0.99713993, 'index': 12, 'word': 'S', 'start': 44, 'end': 45}, {'entity': 'I-LOC', 'score': 0.9567468, 'index': 13, 'word': '##ING', 'start': 45, 'end': 48}, {'entity': 'I-LOC', 'score': 0.98829496, 'index': 14, 'word': '##AP', 'start': 48, 'end': 50}, {'entity': 'I-LOC', 'score': 0.9642994, 'index': 15, 'word': '##OR', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.9934837, 'index': 16, 'word': '##E', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.99979645, 'index': 26, 'word': 'Singapore', 'start': 70, 'end': 79}, {'entity': 'I-MISC', 'score': 0.9977234, 'index': 29, 'word': 'Thai', 'start': 89, 'end': 93}, {'entity': 'I-LOC', 'score': 0.9990214, 'index': 32, 'word': 'Chang', 'start': 104, 'end': 109}, {'entity': 'I-LOC', 'score': 0.9993311, 'index': 33, 'word': '##i', 'start': 109, 'end': 110}, {'entity': 'I-LOC', 'score': 0.9274499, 'index': 34, 'word': 'Prison', 'start': 111, 'end': 117}, {'entity': 'I-ORG', 'score': 0.9996101, 'index': 42, 'word': 'Central', 'start': 155, 'end': 162}, {'entity': 'I-ORG', 'score': 0.99933916, 'index': 43, 'word': 'Na', 'start': 163, 'end': 165}, {'entity': 'I-ORG', 'score': 0.9957497, 'index': 44, 'word': '##rc', 'start': 165, 'end': 167}, {'entity': 'I-ORG', 'score': 0.99925786, 'index': 45, 'word': '##otics', 'start': 167, 'end': 172}, {'entity': 'I-ORG', 'score': 0.99955064, 'index': 46, 'word': 'Bureau', 'start': 173, 'end': 179}, {'entity': 'I-ORG', 'score': 0.999387, 'index': 48, 'word': 'C', 'start': 182, 'end': 183}, {'entity': 'I-ORG', 'score': 0.9974241, 'index': 49, 'word': '##N', 'start': 183, 'end': 184}, {'entity': 'I-ORG', 'score': 0.99845266, 'index': 50, 'word': '##B', 'start': 184, 'end': 185}, {'entity': 'I-PER', 'score': 0.99952936, 'index': 58, 'word': 'Je', 'start': 200, 'end': 202}, {'entity': 'I-PER', 'score': 0.998781, 'index': 59, 'word': '##era', 'start': 202, 'end': 205}, {'entity': 'I-PER', 'score': 0.9986021, 'index': 60, 'word': '##sa', 'start': 205, 'end': 207}, {'entity': 'I-PER', 'score': 0.99941397, 'index': 61, 'word': '##k', 'start': 207, 'end': 208}, {'entity': 'I-PER', 'score': 0.9994368, 'index': 62, 'word': 'Den', 'start': 209, 'end': 212}, {'entity': 'I-PER', 'score': 0.9985637, 'index': 63, 'word': '##sa', 'start': 212, 'end': 214}, {'entity': 'I-PER', 'score': 0.997976, 'index': 64, 'word': '##ku', 'start': 214, 'end': 216}, {'entity': 'I-PER', 'score': 0.9951159, 'index': 65, 'word': '##l', 'start': 216, 'end': 217}, {'entity': 'I-ORG', 'score': 0.99892527, 'index': 96, 'word': 'C', 'start': 327, 'end': 328}, {'entity': 'I-ORG', 'score': 0.9980135, 'index': 97, 'word': '##N', 'start': 328, 'end': 329}, {'entity': 'I-ORG', 'score': 0.99734133, 'index': 98, 'word': '##B', 'start': 329, 'end': 330}, {'entity': 'I-LOC', 'score': 0.9998258, 'index': 105, 'word': 'Singapore', 'start': 343, 'end': 352}, {'entity': 'I-LOC', 'score': 0.99982685, 'index': 171, 'word': 'Singapore', 'start': 639, 'end': 648}]
[{'entity': 'I-PER', 'score': 0.99960345, 'index': 1, 'word': 'Ara', 'start': 0, 'end': 3}, {'entity': 'I-PER', 'score': 0.9980044, 'index': 2, 'word': '##fa', 'start': 3, 'end': 5}, {'entity': 'I-PER', 'score': 0.9975896, 'index': 3, 'word': '##t', 'start': 5, 'end': 6}, {'entity': 'I-LOC', 'score': 0.99949586, 'index': 6, 'word': 'Na', 'start': 15, 'end': 17}, {'entity': 'I-LOC', 'score': 0.9986589, 'index': 7, 'word': '##b', 'start': 17, 'end': 18}, {'entity': 'I-LOC', 'score': 0.99961734, 'index': 8, 'word': '##lus', 'start': 18, 'end': 21}, {'entity': 'I-LOC', 'score': 0.99573636, 'index': 18, 'word': 'N', 'start': 54, 'end': 55}, {'entity': 'I-LOC', 'score': 0.99350995, 'index': 19, 'word': '##AB', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.96749955, 'index': 20, 'word': '##L', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9968189, 'index': 21, 'word': '##US', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9997241, 'index': 23, 'word': 'West', 'start': 63, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9997907, 'index': 24, 'word': 'Bank', 'start': 68, 'end': 72}, {'entity': 'I-MISC', 'score': 0.9980324, 'index': 34, 'word': 'Palestinian', 'start': 89, 'end': 100}, {'entity': 'I-PER', 'score': 0.9996145, 'index': 36, 'word': 'Ya', 'start': 111, 'end': 113}, {'entity': 'I-PER', 'score': 0.99894875, 'index': 37, 'word': '##sser', 'start': 113, 'end': 117}, {'entity': 'I-PER', 'score': 0.9995702, 'index': 38, 'word': 'Ara', 'start': 118, 'end': 121}, {'entity': 'I-PER', 'score': 0.99785453, 'index': 39, 'word': '##fa', 'start': 121, 'end': 123}, {'entity': 'I-PER', 'score': 0.99881256, 'index': 40, 'word': '##t', 'start': 123, 'end': 124}, {'entity': 'I-LOC', 'score': 0.9968786, 'index': 44, 'word': 'West', 'start': 140, 'end': 144}, {'entity': 'I-LOC', 'score': 0.9984377, 'index': 45, 'word': 'Bank', 'start': 145, 'end': 149}, {'entity': 'I-LOC', 'score': 0.99939394, 'index': 52, 'word': 'Na', 'start': 171, 'end': 173}, {'entity': 'I-LOC', 'score': 0.99888474, 'index': 53, 'word': '##b', 'start': 173, 'end': 174}, {'entity': 'I-LOC', 'score': 0.9995646, 'index': 54, 'word': '##lus', 'start': 174, 'end': 177}, {'entity': 'I-LOC', 'score': 0.99964166, 'index': 56, 'word': 'Rama', 'start': 183, 'end': 187}, {'entity': 'I-LOC', 'score': 0.9997099, 'index': 57, 'word': '##llah', 'start': 187, 'end': 191}, {'entity': 'I-PER', 'score': 0.9996037, 'index': 72, 'word': 'Ara', 'start': 241, 'end': 244}, {'entity': 'I-PER', 'score': 0.997521, 'index': 73, 'word': '##fa', 'start': 244, 'end': 246}, {'entity': 'I-PER', 'score': 0.990703, 'index': 74, 'word': '##t', 'start': 246, 'end': 247}, {'entity': 'I-ORG', 'score': 0.99959594, 'index': 82, 'word': 'Palestinian', 'start': 285, 'end': 296}, {'entity': 'I-ORG', 'score': 0.9971487, 'index': 83, 'word': 'self', 'start': 297, 'end': 301}, {'entity': 'I-ORG', 'score': 0.91973674, 'index': 84, 'word': '-', 'start': 301, 'end': 302}, {'entity': 'I-ORG', 'score': 0.9985057, 'index': 85, 'word': 'rule', 'start': 302, 'end': 306}, {'entity': 'I-ORG', 'score': 0.99916315, 'index': 86, 'word': 'Authority', 'start': 307, 'end': 316}, {'entity': 'I-LOC', 'score': 0.9991534, 'index': 91, 'word': 'Na', 'start': 331, 'end': 333}, {'entity': 'I-LOC', 'score': 0.99742424, 'index': 92, 'word': '##b', 'start': 333, 'end': 334}, {'entity': 'I-LOC', 'score': 0.99922466, 'index': 93, 'word': '##lus', 'start': 334, 'end': 337}, {'entity': 'I-LOC', 'score': 0.9997372, 'index': 102, 'word': 'Jerusalem', 'start': 360, 'end': 369}, {'entity': 'I-MISC', 'score': 0.9990176, 'index': 104, 'word': 'Israeli', 'start': 372, 'end': 379}, {'entity': 'I-MISC', 'score': 0.9969144, 'index': 113, 'word': 'Palestinians', 'start': 426, 'end': 438}, {'entity': 'I-PER', 'score': 0.9995665, 'index': 117, 'word': 'Ara', 'start': 458, 'end': 461}, {'entity': 'I-PER', 'score': 0.9971831, 'index': 118, 'word': '##fa', 'start': 461, 'end': 463}, {'entity': 'I-PER', 'score': 0.99824715, 'index': 119, 'word': '##t', 'start': 463, 'end': 464}, {'entity': 'I-MISC', 'score': 0.99439806, 'index': 133, 'word': 'Mo', 'start': 519, 'end': 521}, {'entity': 'I-MISC', 'score': 0.95491505, 'index': 134, 'word': '##sle', 'start': 521, 'end': 524}, {'entity': 'I-MISC', 'score': 0.9251128, 'index': 135, 'word': '##ms', 'start': 524, 'end': 526}, {'entity': 'I-MISC', 'score': 0.9919012, 'index': 137, 'word': 'Arabs', 'start': 529, 'end': 534}, {'entity': 'I-MISC', 'score': 0.9839205, 'index': 139, 'word': 'Jews', 'start': 539, 'end': 543}, {'entity': 'I-LOC', 'score': 0.9994861, 'index': 145, 'word': 'Israel', 'start': 571, 'end': 577}, {'entity': 'I-LOC', 'score': 0.99969065, 'index': 152, 'word': 'West', 'start': 606, 'end': 610}, {'entity': 'I-LOC', 'score': 0.9996934, 'index': 153, 'word': 'Bank', 'start': 611, 'end': 615}, {'entity': 'I-MISC', 'score': 0.9972012, 'index': 164, 'word': 'Palestinians', 'start': 655, 'end': 667}, {'entity': 'I-LOC', 'score': 0.99918574, 'index': 166, 'word': 'Arab', 'start': 673, 'end': 677}, {'entity': 'I-LOC', 'score': 0.99934953, 'index': 167, 'word': 'East', 'start': 678, 'end': 682}, {'entity': 'I-LOC', 'score': 0.9996006, 'index': 168, 'word': 'Jerusalem', 'start': 683, 'end': 692}, {'entity': 'I-LOC', 'score': 0.99970144, 'index': 182, 'word': 'Israel', 'start': 745, 'end': 751}, {'entity': 'I-LOC', 'score': 0.99939823, 'index': 188, 'word': 'East', 'start': 781, 'end': 785}, {'entity': 'I-LOC', 'score': 0.99968565, 'index': 189, 'word': 'Jerusalem', 'start': 786, 'end': 795}, {'entity': 'I-PER', 'score': 0.99956566, 'index': 209, 'word': 'Ara', 'start': 858, 'end': 861}, {'entity': 'I-PER', 'score': 0.99791926, 'index': 210, 'word': '##fa', 'start': 861, 'end': 863}, {'entity': 'I-PER', 'score': 0.99789387, 'index': 211, 'word': '##t', 'start': 863, 'end': 864}, {'entity': 'I-LOC', 'score': 0.9998062, 'index': 220, 'word': 'Israel', 'start': 903, 'end': 909}, {'entity': 'I-LOC', 'score': 0.9997222, 'index': 235, 'word': 'Jerusalem', 'start': 966, 'end': 975}, {'entity': 'I-MISC', 'score': 0.9983767, 'index': 237, 'word': 'Israeli', 'start': 981, 'end': 988}]
[{'entity': 'I-ORG', 'score': 0.9990264, 'index': 1, 'word': 'U', 'start': 0, 'end': 1}, {'entity': 'I-ORG', 'score': 0.99946636, 'index': 3, 'word': 'N', 'start': 2, 'end': 3}, {'entity': 'I-ORG', 'score': 0.9030279, 'index': 4, 'word': '.', 'start': 3, 'end': 4}, {'entity': 'I-ORG', 'score': 0.9924523, 'index': 5, 'word': 'Council', 'start': 5, 'end': 12}, {'entity': 'I-MISC', 'score': 0.99920684, 'index': 8, 'word': 'Israeli', 'start': 29, 'end': 36}, {'entity': 'I-ORG', 'score': 0.9960633, 'index': 17, 'word': 'UN', 'start': 55, 'end': 57}, {'entity': 'I-ORG', 'score': 0.94389564, 'index': 18, 'word': '##IT', 'start': 57, 'end': 59}, {'entity': 'I-ORG', 'score': 0.7877541, 'index': 19, 'word': '##ED', 'start': 59, 'end': 61}, {'entity': 'I-ORG', 'score': 0.8644665, 'index': 20, 'word': 'N', 'start': 62, 'end': 63}, {'entity': 'I-ORG', 'score': 0.7602263, 'index': 21, 'word': '##AT', 'start': 63, 'end': 65}, {'entity': 'I-ORG', 'score': 0.9976808, 'index': 33, 'word': 'Security', 'start': 86, 'end': 94}, {'entity': 'I-ORG', 'score': 0.99810696, 'index': 34, 'word': 'Council', 'start': 95, 'end': 102}, {'entity': 'I-LOC', 'score': 0.9996389, 'index': 41, 'word': 'Israel', 'start': 146, 'end': 152}, {'entity': 'I-MISC', 'score': 0.9982152, 'index': 49, 'word': 'Palestinian', 'start': 172, 'end': 183}, {'entity': 'I-LOC', 'score': 0.99946374, 'index': 62, 'word': 'Middle', 'start': 242, 'end': 248}, {'entity': 'I-LOC', 'score': 0.99922407, 'index': 63, 'word': 'East', 'start': 249, 'end': 253}, {'entity': 'I-MISC', 'score': 0.99380714, 'index': 81, 'word': 'Palestinian', 'start': 311, 'end': 322}, {'entity': 'I-ORG', 'score': 0.9982437, 'index': 82, 'word': 'U', 'start': 323, 'end': 324}, {'entity': 'I-ORG', 'score': 0.9990458, 'index': 84, 'word': 'N', 'start': 325, 'end': 326}, {'entity': 'I-ORG', 'score': 0.9982217, 'index': 89, 'word': 'Security', 'start': 347, 'end': 355}, {'entity': 'I-ORG', 'score': 0.99892765, 'index': 90, 'word': 'Council', 'start': 356, 'end': 363}, {'entity': 'I-PER', 'score': 0.9992849, 'index': 92, 'word': 'To', 'start': 374, 'end': 376}, {'entity': 'I-PER', 'score': 0.9994924, 'index': 93, 'word': '##no', 'start': 376, 'end': 378}, {'entity': 'I-PER', 'score': 0.9997825, 'index': 94, 'word': 'E', 'start': 379, 'end': 380}, {'entity': 'I-PER', 'score': 0.99950886, 'index': 95, 'word': '##ite', 'start': 380, 'end': 383}, {'entity': 'I-PER', 'score': 0.9975847, 'index': 96, 'word': '##l', 'start': 383, 'end': 384}, {'entity': 'I-LOC', 'score': 0.99977165, 'index': 98, 'word': 'Germany', 'start': 388, 'end': 395}, {'entity': 'I-LOC', 'score': 0.9997522, 'index': 109, 'word': 'Israel', 'start': 449, 'end': 455}, {'entity': 'I-PER', 'score': 0.9996105, 'index': 118, 'word': 'David', 'start': 479, 'end': 484}, {'entity': 'I-PER', 'score': 0.99977535, 'index': 119, 'word': 'P', 'start': 485, 'end': 486}, {'entity': 'I-PER', 'score': 0.95651937, 'index': 120, 'word': '##ele', 'start': 486, 'end': 489}, {'entity': 'I-PER', 'score': 0.9956553, 'index': 121, 'word': '##g', 'start': 489, 'end': 490}, {'entity': 'I-PER', 'score': 0.99950016, 'index': 159, 'word': 'E', 'start': 676, 'end': 677}, {'entity': 'I-PER', 'score': 0.9991233, 'index': 160, 'word': '##ite', 'start': 677, 'end': 680}, {'entity': 'I-PER', 'score': 0.8284154, 'index': 161, 'word': '##l', 'start': 680, 'end': 681}, {'entity': 'I-MISC', 'score': 0.99904174, 'index': 181, 'word': 'Israeli', 'start': 759, 'end': 766}, {'entity': 'I-MISC', 'score': 0.99823016, 'index': 203, 'word': 'Palestinian', 'start': 841, 'end': 852}, {'entity': 'I-PER', 'score': 0.99943846, 'index': 206, 'word': 'Mar', 'start': 865, 'end': 868}, {'entity': 'I-PER', 'score': 0.9986407, 'index': 207, 'word': '##wan', 'start': 868, 'end': 871}, {'entity': 'I-PER', 'score': 0.9994999, 'index': 208, 'word': 'Ji', 'start': 872, 'end': 874}, {'entity': 'I-PER', 'score': 0.99391973, 'index': 209, 'word': '##lani', 'start': 874, 'end': 878}, {'entity': 'I-LOC', 'score': 0.9994276, 'index': 215, 'word': 'Jerusalem', 'start': 907, 'end': 916}, {'entity': 'I-LOC', 'score': 0.99963725, 'index': 221, 'word': 'Israel', 'start': 941, 'end': 947}, {'entity': 'I-LOC', 'score': 0.9993624, 'index': 234, 'word': 'Holy', 'start': 1017, 'end': 1021}, {'entity': 'I-LOC', 'score': 0.9986267, 'index': 235, 'word': 'City', 'start': 1022, 'end': 1026}, {'entity': 'I-LOC', 'score': 0.9997017, 'index': 237, 'word': 'Jerusalem', 'start': 1030, 'end': 1039}, {'entity': 'I-LOC', 'score': 0.99929416, 'index': 243, 'word': 'Israel', 'start': 1074, 'end': 1080}, {'entity': 'I-ORG', 'score': 0.9993716, 'index': 246, 'word': 'Palestinian', 'start': 1089, 'end': 1100}, {'entity': 'I-ORG', 'score': 0.99940765, 'index': 247, 'word': 'Liberation', 'start': 1101, 'end': 1111}, {'entity': 'I-ORG', 'score': 0.99887365, 'index': 248, 'word': 'Organisation', 'start': 1112, 'end': 1124}, {'entity': 'I-MISC', 'score': 0.99883944, 'index': 280, 'word': 'Israeli', 'start': 1248, 'end': 1255}, {'entity': 'I-LOC', 'score': 0.99793506, 'index': 287, 'word': 'Old', 'start': 1289, 'end': 1292}, {'entity': 'I-LOC', 'score': 0.99832886, 'index': 288, 'word': 'City', 'start': 1293, 'end': 1297}, {'entity': 'I-ORG', 'score': 0.9931977, 'index': 317, 'word': 'U', 'start': 1433, 'end': 1434}, {'entity': 'I-ORG', 'score': 0.9965293, 'index': 319, 'word': 'N', 'start': 1435, 'end': 1436}, {'entity': 'I-MISC', 'score': 0.9990783, 'index': 326, 'word': 'Israeli', 'start': 1469, 'end': 1476}, {'entity': 'I-MISC', 'score': 0.99887854, 'index': 343, 'word': 'Israeli', 'start': 1542, 'end': 1549}, {'entity': 'I-LOC', 'score': 0.9997075, 'index': 355, 'word': 'Jerusalem', 'start': 1594, 'end': 1603}, {'entity': 'I-LOC', 'score': 0.99930906, 'index': 379, 'word': 'Canada', 'start': 1706, 'end': 1712}, {'entity': 'I-LOC', 'score': 0.49094406, 'index': 392, 'word': 'B', 'start': 1774, 'end': 1775}, {'entity': 'I-LOC', 'score': 0.8563812, 'index': 395, 'word': 'al', 'start': 1779, 'end': 1781}, {'entity': 'I-LOC', 'score': 0.8750539, 'index': 397, 'word': 'La', 'start': 1782, 'end': 1784}, {'entity': 'I-LOC', 'score': 0.4578113, 'index': 405, 'word': 'S', 'start': 1801, 'end': 1802}]
[{'entity': 'I-MISC', 'score': 0.8037367, 'index': 20, 'word': 'SC', 'start': 33, 'end': 35}, {'entity': 'I-MISC', 'score': 0.835699, 'index': 24, 'word': 'O', 'start': 41, 'end': 42}, {'entity': 'I-LOC', 'score': 0.9957224, 'index': 36, 'word': 'LA', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9974571, 'index': 37, 'word': 'CO', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.80226386, 'index': 38, 'word': '##R', 'start': 67, 'end': 68}, {'entity': 'I-LOC', 'score': 0.96097594, 'index': 39, 'word': '##UN', 'start': 68, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9936883, 'index': 40, 'word': '##A', 'start': 70, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9998709, 'index': 42, 'word': 'Spain', 'start': 74, 'end': 79}, {'entity': 'I-PER', 'score': 0.9995678, 'index': 60, 'word': 'Roberto', 'start': 133, 'end': 140}, {'entity': 'I-PER', 'score': 0.9997527, 'index': 61, 'word': 'Carlos', 'start': 141, 'end': 147}, {'entity': 'I-ORG', 'score': 0.9995484, 'index': 67, 'word': 'Real', 'start': 169, 'end': 173}, {'entity': 'I-ORG', 'score': 0.99896026, 'index': 68, 'word': 'Madrid', 'start': 174, 'end': 180}, {'entity': 'I-PER', 'score': 0.9991061, 'index': 70, 'word': 'F', 'start': 187, 'end': 188}, {'entity': 'I-PER', 'score': 0.9989293, 'index': 71, 'word': '##abi', 'start': 188, 'end': 191}, {'entity': 'I-PER', 'score': 0.99894387, 'index': 72, 'word': '##o', 'start': 191, 'end': 192}, {'entity': 'I-PER', 'score': 0.99948263, 'index': 73, 'word': 'Cape', 'start': 193, 'end': 197}, {'entity': 'I-PER', 'score': 0.9971398, 'index': 74, 'word': '##llo', 'start': 197, 'end': 200}, {'entity': 'I-MISC', 'score': 0.99889475, 'index': 92, 'word': 'Spanish', 'start': 265, 'end': 272}, {'entity': 'I-MISC', 'score': 0.99523526, 'index': 102, 'word': 'Brazilian', 'start': 309, 'end': 318}, {'entity': 'I-ORG', 'score': 0.9992494, 'index': 114, 'word': 'Real', 'start': 360, 'end': 364}, {'entity': 'I-ORG', 'score': 0.9992919, 'index': 130, 'word': 'Deportivo', 'start': 424, 'end': 433}, {'entity': 'I-ORG', 'score': 0.9983931, 'index': 131, 'word': 'Co', 'start': 434, 'end': 436}, {'entity': 'I-ORG', 'score': 0.9881612, 'index': 132, 'word': '##run', 'start': 436, 'end': 439}, {'entity': 'I-ORG', 'score': 0.9977203, 'index': 133, 'word': '##a', 'start': 439, 'end': 440}, {'entity': 'I-ORG', 'score': 0.99951804, 'index': 139, 'word': 'Deportivo', 'start': 448, 'end': 457}, {'entity': 'I-ORG', 'score': 0.9991555, 'index': 153, 'word': 'Au', 'start': 535, 'end': 537}, {'entity': 'I-ORG', 'score': 0.9970235, 'index': 154, 'word': '##xe', 'start': 537, 'end': 539}, {'entity': 'I-ORG', 'score': 0.9995504, 'index': 155, 'word': '##rre', 'start': 539, 'end': 542}, {'entity': 'I-PER', 'score': 0.9995586, 'index': 158, 'word': 'Core', 'start': 553, 'end': 557}, {'entity': 'I-PER', 'score': 0.9993962, 'index': 159, 'word': '##ntin', 'start': 557, 'end': 561}, {'entity': 'I-PER', 'score': 0.9992493, 'index': 160, 'word': '##e', 'start': 561, 'end': 562}, {'entity': 'I-PER', 'score': 0.9997789, 'index': 161, 'word': 'Martins', 'start': 563, 'end': 570}, {'entity': 'I-MISC', 'score': 0.81228197, 'index': 172, 'word': 'Brazilian', 'start': 612, 'end': 621}, {'entity': 'I-MISC', 'score': 0.99473876, 'index': 175, 'word': 'Spanish', 'start': 627, 'end': 634}, {'entity': 'I-PER', 'score': 0.9996075, 'index': 178, 'word': 'Don', 'start': 660, 'end': 663}, {'entity': 'I-PER', 'score': 0.99969363, 'index': 179, 'word': '##ato', 'start': 663, 'end': 666}, {'entity': 'I-ORG', 'score': 0.9992387, 'index': 185, 'word': 'Real', 'start': 674, 'end': 678}, {'entity': 'I-PER', 'score': 0.9994205, 'index': 197, 'word': 'Luis', 'start': 737, 'end': 741}, {'entity': 'I-PER', 'score': 0.99883825, 'index': 198, 'word': 'Mill', 'start': 742, 'end': 746}, {'entity': 'I-PER', 'score': 0.99733645, 'index': 199, 'word': '##a', 'start': 746, 'end': 747}, {'entity': 'I-ORG', 'score': 0.9994497, 'index': 219, 'word': 'Deportivo', 'start': 828, 'end': 837}, {'entity': 'I-PER', 'score': 0.999681, 'index': 238, 'word': 'Armand', 'start': 939, 'end': 945}, {'entity': 'I-PER', 'score': 0.9994942, 'index': 239, 'word': '##o', 'start': 945, 'end': 946}, {'entity': 'I-PER', 'score': 0.9997831, 'index': 240, 'word': 'Alvarez', 'start': 947, 'end': 954}, {'entity': 'I-PER', 'score': 0.99961877, 'index': 255, 'word': 'Roberto', 'start': 1015, 'end': 1022}, {'entity': 'I-PER', 'score': 0.99980253, 'index': 256, 'word': 'Carlos', 'start': 1023, 'end': 1029}, {'entity': 'I-ORG', 'score': 0.99818546, 'index': 267, 'word': 'Real', 'start': 1080, 'end': 1084}, {'entity': 'I-ORG', 'score': 0.9985771, 'index': 278, 'word': 'Deportivo', 'start': 1132, 'end': 1141}, {'entity': 'I-PER', 'score': 0.99961215, 'index': 281, 'word': 'Jacques', 'start': 1151, 'end': 1158}, {'entity': 'I-PER', 'score': 0.99863523, 'index': 282, 'word': 'Song', 'start': 1159, 'end': 1163}, {'entity': 'I-PER', 'score': 0.86035734, 'index': 283, 'word': '##o', 'start': 1163, 'end': 1164}, {'entity': 'I-PER', 'score': 0.9069695, 'index': 285, 'word': 'o', 'start': 1165, 'end': 1166}, {'entity': 'I-PER', 'score': 0.99941874, 'index': 305, 'word': 'Don', 'start': 1244, 'end': 1247}, {'entity': 'I-PER', 'score': 0.99954957, 'index': 306, 'word': '##ato', 'start': 1247, 'end': 1250}, {'entity': 'I-ORG', 'score': 0.9988895, 'index': 324, 'word': 'Real', 'start': 1334, 'end': 1338}, {'entity': 'I-ORG', 'score': 0.9980952, 'index': 338, 'word': 'Deportivo', 'start': 1386, 'end': 1395}, {'entity': 'I-PER', 'score': 0.99935323, 'index': 340, 'word': 'August', 'start': 1405, 'end': 1411}, {'entity': 'I-PER', 'score': 0.99892586, 'index': 341, 'word': '##o', 'start': 1411, 'end': 1412}, {'entity': 'I-PER', 'score': 0.9986368, 'index': 342, 'word': 'Len', 'start': 1413, 'end': 1416}, {'entity': 'I-PER', 'score': 0.9563984, 'index': 343, 'word': '##do', 'start': 1416, 'end': 1418}, {'entity': 'I-PER', 'score': 0.99454415, 'index': 344, 'word': '##iro', 'start': 1418, 'end': 1421}, {'entity': 'I-ORG', 'score': 0.9906895, 'index': 350, 'word': 'FIFA', 'start': 1445, 'end': 1449}, {'entity': 'I-MISC', 'score': 0.9991353, 'index': 353, 'word': 'Brazilian', 'start': 1467, 'end': 1476}, {'entity': 'I-PER', 'score': 0.99961346, 'index': 355, 'word': 'Ma', 'start': 1488, 'end': 1490}, {'entity': 'I-PER', 'score': 0.9994642, 'index': 356, 'word': '##uro', 'start': 1490, 'end': 1493}, {'entity': 'I-PER', 'score': 0.99974746, 'index': 357, 'word': 'Silva', 'start': 1494, 'end': 1499}, {'entity': 'I-LOC', 'score': 0.99977094, 'index': 374, 'word': 'Europe', 'start': 1575, 'end': 1581}, {'entity': 'I-PER', 'score': 0.999243, 'index': 385, 'word': 'John', 'start': 1610, 'end': 1614}, {'entity': 'I-PER', 'score': 0.9997582, 'index': 393, 'word': 'Silva', 'start': 1642, 'end': 1647}, {'entity': 'I-LOC', 'score': 0.9996314, 'index': 403, 'word': 'Brazil', 'start': 1686, 'end': 1692}]
[{'entity': 'I-MISC', 'score': 0.99705076, 'index': 1, 'word': 'R', 'start': 0, 'end': 1}, {'entity': 'I-MISC', 'score': 0.7908475, 'index': 2, 'word': '##U', 'start': 1, 'end': 2}, {'entity': 'I-MISC', 'score': 0.9313635, 'index': 3, 'word': '##GB', 'start': 2, 'end': 4}, {'entity': 'I-MISC', 'score': 0.9353913, 'index': 4, 'word': '##Y', 'start': 4, 'end': 5}, {'entity': 'I-MISC', 'score': 0.99655765, 'index': 5, 'word': 'L', 'start': 6, 'end': 7}, {'entity': 'I-MISC', 'score': 0.9278306, 'index': 6, 'word': '##EA', 'start': 7, 'end': 9}, {'entity': 'I-MISC', 'score': 0.9022239, 'index': 7, 'word': '##G', 'start': 9, 'end': 10}, {'entity': 'I-MISC', 'score': 0.67344475, 'index': 8, 'word': '##UE', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.8530541, 'index': 10, 'word': 'W', 'start': 15, 'end': 16}, {'entity': 'I-MISC', 'score': 0.34294742, 'index': 11, 'word': '##IG', 'start': 16, 'end': 18}, {'entity': 'I-ORG', 'score': 0.61796254, 'index': 12, 'word': '##AN', 'start': 18, 'end': 20}, {'entity': 'I-LOC', 'score': 0.5495927, 'index': 16, 'word': 'BR', 'start': 26, 'end': 28}, {'entity': 'I-ORG', 'score': 0.597091, 'index': 17, 'word': '##AD', 'start': 28, 'end': 30}, {'entity': 'I-ORG', 'score': 0.65774935, 'index': 18, 'word': '##F', 'start': 30, 'end': 31}, {'entity': 'I-ORG', 'score': 0.39999625, 'index': 19, 'word': '##OR', 'start': 31, 'end': 33}, {'entity': 'I-ORG', 'score': 0.92552984, 'index': 20, 'word': '##D', 'start': 33, 'end': 34}, {'entity': 'I-LOC', 'score': 0.99651045, 'index': 35, 'word': 'W', 'start': 61, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9543505, 'index': 36, 'word': '##IG', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9955902, 'index': 37, 'word': '##AN', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.9996381, 'index': 39, 'word': 'England', 'start': 69, 'end': 76}, {'entity': 'I-MISC', 'score': 0.99875283, 'index': 53, 'word': 'English', 'start': 103, 'end': 110}, {'entity': 'I-ORG', 'score': 0.9997969, 'index': 66, 'word': 'Wigan', 'start': 172, 'end': 177}, {'entity': 'I-ORG', 'score': 0.9997795, 'index': 68, 'word': 'Bradford', 'start': 181, 'end': 189}, {'entity': 'I-ORG', 'score': 0.9995833, 'index': 69, 'word': 'Bulls', 'start': 190, 'end': 195}]
[{'entity': 'I-LOC', 'score': 0.38629267, 'index': 6, 'word': 'IS', 'start': 9, 'end': 11}, {'entity': 'I-ORG', 'score': 0.662934, 'index': 7, 'word': '##RA', 'start': 11, 'end': 13}, {'entity': 'I-ORG', 'score': 0.5995371, 'index': 8, 'word': '##EL', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.9873782, 'index': 12, 'word': 'B', 'start': 21, 'end': 22}, {'entity': 'I-LOC', 'score': 0.95959055, 'index': 13, 'word': '##U', 'start': 22, 'end': 23}, {'entity': 'I-LOC', 'score': 0.94925195, 'index': 14, 'word': '##L', 'start': 23, 'end': 24}, {'entity': 'I-LOC', 'score': 0.93377376, 'index': 15, 'word': '##GA', 'start': 24, 'end': 26}, {'entity': 'I-LOC', 'score': 0.95036614, 'index': 16, 'word': '##RI', 'start': 26, 'end': 28}, {'entity': 'I-LOC', 'score': 0.9636622, 'index': 17, 'word': '##A', 'start': 28, 'end': 29}, {'entity': 'I-MISC', 'score': 0.9991756, 'index': 19, 'word': 'EU', 'start': 33, 'end': 35}, {'entity': 'I-MISC', 'score': 0.98935694, 'index': 20, 'word': '##RO', 'start': 35, 'end': 37}, {'entity': 'I-MISC', 'score': 0.83477825, 'index': 21, 'word': '##P', 'start': 37, 'end': 38}, {'entity': 'I-MISC', 'score': 0.50642854, 'index': 22, 'word': '##EA', 'start': 38, 'end': 40}, {'entity': 'I-MISC', 'score': 0.8363841, 'index': 23, 'word': '##N', 'start': 40, 'end': 41}, {'entity': 'I-LOC', 'score': 0.9978644, 'index': 40, 'word': 'H', 'start': 68, 'end': 69}, {'entity': 'I-LOC', 'score': 0.9867106, 'index': 41, 'word': '##ER', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.99380386, 'index': 42, 'word': '##Z', 'start': 71, 'end': 72}, {'entity': 'I-LOC', 'score': 0.99198943, 'index': 43, 'word': '##L', 'start': 72, 'end': 73}, {'entity': 'I-LOC', 'score': 0.990987, 'index': 44, 'word': '##I', 'start': 73, 'end': 74}, {'entity': 'I-LOC', 'score': 0.965776, 'index': 45, 'word': '##Y', 'start': 74, 'end': 75}, {'entity': 'I-LOC', 'score': 0.9974573, 'index': 46, 'word': '##A', 'start': 75, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9997831, 'index': 48, 'word': 'Israel', 'start': 79, 'end': 85}, {'entity': 'I-MISC', 'score': 0.99908066, 'index': 62, 'word': 'European', 'start': 112, 'end': 120}, {'entity': 'I-LOC', 'score': 0.9996736, 'index': 77, 'word': 'Israel', 'start': 180, 'end': 186}, {'entity': 'I-LOC', 'score': 0.9996773, 'index': 80, 'word': 'Bulgaria', 'start': 191, 'end': 199}, {'entity': 'I-PER', 'score': 0.9992459, 'index': 91, 'word': 'Hai', 'start': 229, 'end': 232}, {'entity': 'I-PER', 'score': 0.9991417, 'index': 92, 'word': '##m', 'start': 232, 'end': 233}, {'entity': 'I-PER', 'score': 0.99915767, 'index': 93, 'word': 'Ha', 'start': 234, 'end': 236}, {'entity': 'I-PER', 'score': 0.8483593, 'index': 94, 'word': '##ja', 'start': 236, 'end': 238}, {'entity': 'I-PER', 'score': 0.9897947, 'index': 95, 'word': '##j', 'start': 238, 'end': 239}, {'entity': 'I-PER', 'score': 0.99962044, 'index': 101, 'word': 'Ni', 'start': 251, 'end': 253}, {'entity': 'I-PER', 'score': 0.9989324, 'index': 102, 'word': '##r', 'start': 253, 'end': 254}, {'entity': 'I-PER', 'score': 0.99937123, 'index': 103, 'word': 'Si', 'start': 255, 'end': 257}, {'entity': 'I-PER', 'score': 0.9983437, 'index': 104, 'word': '##vili', 'start': 257, 'end': 261}, {'entity': 'I-PER', 'score': 0.99189234, 'index': 105, 'word': '##a', 'start': 261, 'end': 262}]
[{'entity': 'I-ORG', 'score': 0.8162457, 'index': 6, 'word': 'I', 'start': 9, 'end': 10}, {'entity': 'I-ORG', 'score': 0.8827798, 'index': 7, 'word': '##RI', 'start': 10, 'end': 12}, {'entity': 'I-ORG', 'score': 0.5141481, 'index': 8, 'word': '##S', 'start': 12, 'end': 13}, {'entity': 'I-ORG', 'score': 0.8145857, 'index': 9, 'word': '##H', 'start': 13, 'end': 14}, {'entity': 'I-LOC', 'score': 0.9982926, 'index': 34, 'word': 'E', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9748024, 'index': 35, 'word': '##SC', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9858645, 'index': 36, 'word': '##H', 'start': 61, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9952437, 'index': 37, 'word': '##EN', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9997004, 'index': 39, 'word': 'Lie', 'start': 67, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9998097, 'index': 40, 'word': '##chtenstein', 'start': 70, 'end': 80}, {'entity': 'I-LOC', 'score': 0.99972516, 'index': 51, 'word': 'Republic', 'start': 101, 'end': 109}, {'entity': 'I-LOC', 'score': 0.9455347, 'index': 52, 'word': 'of', 'start': 110, 'end': 112}, {'entity': 'I-LOC', 'score': 0.99981695, 'index': 53, 'word': 'Ireland', 'start': 113, 'end': 120}, {'entity': 'I-LOC', 'score': 0.9996892, 'index': 71, 'word': 'Lie', 'start': 188, 'end': 191}, {'entity': 'I-LOC', 'score': 0.9998049, 'index': 72, 'word': '##chtenstein', 'start': 191, 'end': 201}, {'entity': 'I-MISC', 'score': 0.99607915, 'index': 76, 'word': 'Alpine', 'start': 217, 'end': 223}, {'entity': 'I-MISC', 'score': 0.9940103, 'index': 86, 'word': 'World', 'start': 245, 'end': 250}, {'entity': 'I-MISC', 'score': 0.9988103, 'index': 87, 'word': 'Cup', 'start': 251, 'end': 254}, {'entity': 'I-MISC', 'score': 0.99399346, 'index': 97, 'word': 'Irish', 'start': 288, 'end': 293}, {'entity': 'I-PER', 'score': 0.99960285, 'index': 102, 'word': 'Mick', 'start': 314, 'end': 318}, {'entity': 'I-PER', 'score': 0.999801, 'index': 103, 'word': 'McCarthy', 'start': 319, 'end': 327}, {'entity': 'I-PER', 'score': 0.99967456, 'index': 116, 'word': 'Andy', 'start': 380, 'end': 384}, {'entity': 'I-PER', 'score': 0.99983203, 'index': 117, 'word': 'Townsend', 'start': 385, 'end': 393}, {'entity': 'I-ORG', 'score': 0.9981444, 'index': 124, 'word': 'Norwich', 'start': 408, 'end': 415}, {'entity': 'I-PER', 'score': 0.99972886, 'index': 126, 'word': 'Keith', 'start': 424, 'end': 429}, {'entity': 'I-PER', 'score': 0.99975806, 'index': 127, 'word': 'O', 'start': 430, 'end': 431}, {'entity': 'I-PER', 'score': 0.9932025, 'index': 128, 'word': "'", 'start': 431, 'end': 432}, {'entity': 'I-PER', 'score': 0.9997538, 'index': 129, 'word': 'Neill', 'start': 432, 'end': 437}, {'entity': 'I-ORG', 'score': 0.9991124, 'index': 131, 'word': 'Sunderland', 'start': 440, 'end': 450}, {'entity': 'I-PER', 'score': 0.99972254, 'index': 133, 'word': 'Niall', 'start': 459, 'end': 464}, {'entity': 'I-PER', 'score': 0.9998216, 'index': 134, 'word': 'Quinn', 'start': 465, 'end': 470}, {'entity': 'I-PER', 'score': 0.9996942, 'index': 137, 'word': 'Ian', 'start': 484, 'end': 487}, {'entity': 'I-PER', 'score': 0.99962926, 'index': 138, 'word': 'Hart', 'start': 488, 'end': 492}, {'entity': 'I-PER', 'score': 0.99544996, 'index': 139, 'word': '##e', 'start': 492, 'end': 493}, {'entity': 'I-PER', 'score': 0.9996811, 'index': 145, 'word': 'Quinn', 'start': 501, 'end': 506}, {'entity': 'I-LOC', 'score': 0.9997466, 'index': 150, 'word': 'Ireland', 'start': 528, 'end': 535}, {'entity': 'I-MISC', 'score': 0.99799997, 'index': 166, 'word': 'Irish', 'start': 599, 'end': 604}, {'entity': 'I-LOC', 'score': 0.9997925, 'index': 184, 'word': 'Ireland', 'start': 676, 'end': 683}, {'entity': 'I-LOC', 'score': 0.99334043, 'index': 190, 'word': 'E', 'start': 700, 'end': 701}, {'entity': 'I-LOC', 'score': 0.9902574, 'index': 191, 'word': '##schen', 'start': 701, 'end': 706}, {'entity': 'I-PER', 'score': 0.9995635, 'index': 198, 'word': 'Jack', 'start': 736, 'end': 740}, {'entity': 'I-PER', 'score': 0.99949384, 'index': 199, 'word': 'Charlton', 'start': 741, 'end': 749}, {'entity': 'I-MISC', 'score': 0.99890924, 'index': 222, 'word': 'European', 'start': 836, 'end': 844}]
[{'entity': 'I-LOC', 'score': 0.99595803, 'index': 6, 'word': 'I', 'start': 9, 'end': 10}, {'entity': 'I-LOC', 'score': 0.9929762, 'index': 7, 'word': '##RE', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.99649364, 'index': 8, 'word': '##LA', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.9979449, 'index': 9, 'word': '##ND', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.73563915, 'index': 13, 'word': 'L', 'start': 22, 'end': 23}, {'entity': 'I-ORG', 'score': 0.662878, 'index': 14, 'word': '##IE', 'start': 23, 'end': 25}, {'entity': 'I-ORG', 'score': 0.44961128, 'index': 15, 'word': '##CH', 'start': 25, 'end': 27}, {'entity': 'I-LOC', 'score': 0.4008125, 'index': 16, 'word': '##TE', 'start': 27, 'end': 29}, {'entity': 'I-ORG', 'score': 0.33775526, 'index': 17, 'word': '##NS', 'start': 29, 'end': 31}, {'entity': 'I-ORG', 'score': 0.41213423, 'index': 18, 'word': '##TE', 'start': 31, 'end': 33}, {'entity': 'I-ORG', 'score': 0.8446731, 'index': 19, 'word': '##IN', 'start': 33, 'end': 35}, {'entity': 'I-MISC', 'score': 0.99496174, 'index': 24, 'word': 'W', 'start': 43, 'end': 44}, {'entity': 'I-MISC', 'score': 0.97056466, 'index': 25, 'word': '##OR', 'start': 44, 'end': 46}, {'entity': 'I-MISC', 'score': 0.9981933, 'index': 26, 'word': '##LD', 'start': 46, 'end': 48}, {'entity': 'I-MISC', 'score': 0.98916924, 'index': 27, 'word': 'C', 'start': 49, 'end': 50}, {'entity': 'I-MISC', 'score': 0.9940572, 'index': 28, 'word': '##UP', 'start': 50, 'end': 52}, {'entity': 'I-ORG', 'score': 0.43897566, 'index': 32, 'word': '##IF', 'start': 57, 'end': 59}, {'entity': 'I-ORG', 'score': 0.72505474, 'index': 34, 'word': '##R', 'start': 61, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9982303, 'index': 40, 'word': 'E', 'start': 70, 'end': 71}, {'entity': 'I-LOC', 'score': 0.95134133, 'index': 41, 'word': '##SC', 'start': 71, 'end': 73}, {'entity': 'I-LOC', 'score': 0.9680015, 'index': 42, 'word': '##H', 'start': 73, 'end': 74}, {'entity': 'I-LOC', 'score': 0.9918725, 'index': 43, 'word': '##EN', 'start': 74, 'end': 76}, {'entity': 'I-LOC', 'score': 0.99974686, 'index': 54, 'word': 'Republic', 'start': 97, 'end': 105}, {'entity': 'I-LOC', 'score': 0.997549, 'index': 55, 'word': 'of', 'start': 106, 'end': 108}, {'entity': 'I-LOC', 'score': 0.9997634, 'index': 56, 'word': 'Ireland', 'start': 109, 'end': 116}, {'entity': 'I-LOC', 'score': 0.9996457, 'index': 58, 'word': 'Lie', 'start': 122, 'end': 125}, {'entity': 'I-LOC', 'score': 0.9997055, 'index': 59, 'word': '##chtenstein', 'start': 125, 'end': 135}, {'entity': 'I-MISC', 'score': 0.9968761, 'index': 71, 'word': 'World', 'start': 162, 'end': 167}, {'entity': 'I-MISC', 'score': 0.9991273, 'index': 72, 'word': 'Cup', 'start': 168, 'end': 171}, {'entity': 'I-MISC', 'score': 0.9968099, 'index': 74, 'word': 'European', 'start': 179, 'end': 187}, {'entity': 'I-PER', 'score': 0.9997428, 'index': 88, 'word': 'Andy', 'start': 235, 'end': 239}, {'entity': 'I-PER', 'score': 0.9998149, 'index': 89, 'word': 'Townsend', 'start': 240, 'end': 248}, {'entity': 'I-PER', 'score': 0.9997819, 'index': 94, 'word': 'Keith', 'start': 259, 'end': 264}, {'entity': 'I-PER', 'score': 0.9997489, 'index': 95, 'word': 'O', 'start': 265, 'end': 266}, {'entity': 'I-PER', 'score': 0.99713373, 'index': 96, 'word': "'", 'start': 266, 'end': 267}, {'entity': 'I-PER', 'score': 0.9997062, 'index': 97, 'word': 'Neill', 'start': 267, 'end': 272}, {'entity': 'I-PER', 'score': 0.99976367, 'index': 102, 'word': 'Niall', 'start': 283, 'end': 288}, {'entity': 'I-PER', 'score': 0.9998331, 'index': 103, 'word': 'Quinn', 'start': 289, 'end': 294}, {'entity': 'I-PER', 'score': 0.9997471, 'index': 111, 'word': 'Ian', 'start': 313, 'end': 316}, {'entity': 'I-PER', 'score': 0.9996854, 'index': 112, 'word': 'Hart', 'start': 317, 'end': 321}, {'entity': 'I-PER', 'score': 0.99788696, 'index': 113, 'word': '##e', 'start': 321, 'end': 322}]
[{'entity': 'I-MISC', 'score': 0.9977825, 'index': 4, 'word': 'BR', 'start': 7, 'end': 9}, {'entity': 'I-MISC', 'score': 0.99257433, 'index': 5, 'word': '##IT', 'start': 9, 'end': 11}, {'entity': 'I-MISC', 'score': 0.9818656, 'index': 6, 'word': '##IS', 'start': 11, 'end': 13}, {'entity': 'I-MISC', 'score': 0.915967, 'index': 7, 'word': '##H', 'start': 13, 'end': 14}, {'entity': 'I-MISC', 'score': 0.95879656, 'index': 8, 'word': 'MA', 'start': 15, 'end': 17}, {'entity': 'I-LOC', 'score': 0.99341714, 'index': 23, 'word': 'NO', 'start': 43, 'end': 45}, {'entity': 'I-LOC', 'score': 0.9642548, 'index': 24, 'word': '##RT', 'start': 45, 'end': 47}, {'entity': 'I-LOC', 'score': 0.9544233, 'index': 25, 'word': '##HA', 'start': 47, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9002331, 'index': 26, 'word': '##MP', 'start': 49, 'end': 51}, {'entity': 'I-LOC', 'score': 0.9862629, 'index': 27, 'word': '##TO', 'start': 51, 'end': 53}, {'entity': 'I-LOC', 'score': 0.98973125, 'index': 28, 'word': '##N', 'start': 53, 'end': 54}, {'entity': 'I-LOC', 'score': 0.99979216, 'index': 30, 'word': 'England', 'start': 57, 'end': 64}, {'entity': 'I-MISC', 'score': 0.9970294, 'index': 48, 'word': 'British', 'start': 125, 'end': 132}, {'entity': 'I-MISC', 'score': 0.9921715, 'index': 49, 'word': 'Masters', 'start': 133, 'end': 140}, {'entity': 'I-MISC', 'score': 0.99920315, 'index': 55, 'word': 'British', 'start': 171, 'end': 178}, {'entity': 'I-PER', 'score': 0.9998031, 'index': 66, 'word': 'Robert', 'start': 206, 'end': 212}, {'entity': 'I-PER', 'score': 0.9998223, 'index': 67, 'word': 'Allen', 'start': 213, 'end': 218}, {'entity': 'I-PER', 'score': 0.9997209, 'index': 68, 'word': '##by', 'start': 218, 'end': 220}, {'entity': 'I-LOC', 'score': 0.9998549, 'index': 70, 'word': 'Australia', 'start': 223, 'end': 232}, {'entity': 'I-PER', 'score': 0.99981576, 'index': 77, 'word': 'Miguel', 'start': 249, 'end': 255}, {'entity': 'I-PER', 'score': 0.9998369, 'index': 78, 'word': 'Angel', 'start': 256, 'end': 261}, {'entity': 'I-PER', 'score': 0.9998683, 'index': 79, 'word': 'Martin', 'start': 262, 'end': 268}, {'entity': 'I-LOC', 'score': 0.99988556, 'index': 81, 'word': 'Spain', 'start': 271, 'end': 276}, {'entity': 'I-PER', 'score': 0.99977225, 'index': 88, 'word': 'Allen', 'start': 293, 'end': 298}, {'entity': 'I-PER', 'score': 0.9937388, 'index': 89, 'word': '##by', 'start': 298, 'end': 300}, {'entity': 'I-PER', 'score': 0.99980956, 'index': 103, 'word': 'Costa', 'start': 339, 'end': 344}, {'entity': 'I-PER', 'score': 0.99976486, 'index': 104, 'word': '##ntino', 'start': 344, 'end': 349}, {'entity': 'I-PER', 'score': 0.9997985, 'index': 105, 'word': 'R', 'start': 350, 'end': 351}, {'entity': 'I-PER', 'score': 0.9988669, 'index': 106, 'word': '##oc', 'start': 351, 'end': 353}, {'entity': 'I-PER', 'score': 0.99920064, 'index': 107, 'word': '##ca', 'start': 353, 'end': 355}, {'entity': 'I-LOC', 'score': 0.99981385, 'index': 109, 'word': 'Italy', 'start': 358, 'end': 363}, {'entity': 'I-PER', 'score': 0.99979717, 'index': 120, 'word': 'Miguel', 'start': 387, 'end': 393}, {'entity': 'I-PER', 'score': 0.9998141, 'index': 121, 'word': 'Angel', 'start': 394, 'end': 399}, {'entity': 'I-PER', 'score': 0.99979645, 'index': 122, 'word': 'Jim', 'start': 400, 'end': 403}, {'entity': 'I-PER', 'score': 0.9990804, 'index': 123, 'word': '##ene', 'start': 403, 'end': 406}, {'entity': 'I-PER', 'score': 0.99972194, 'index': 124, 'word': '##z', 'start': 406, 'end': 407}, {'entity': 'I-LOC', 'score': 0.9998578, 'index': 126, 'word': 'Spain', 'start': 410, 'end': 415}, {'entity': 'I-PER', 'score': 0.9998067, 'index': 137, 'word': 'Ian', 'start': 439, 'end': 442}, {'entity': 'I-PER', 'score': 0.99978584, 'index': 138, 'word': 'W', 'start': 443, 'end': 444}, {'entity': 'I-PER', 'score': 0.9922202, 'index': 139, 'word': '##oos', 'start': 444, 'end': 447}, {'entity': 'I-PER', 'score': 0.99750143, 'index': 140, 'word': '##nam', 'start': 447, 'end': 450}, {'entity': 'I-PER', 'score': 0.99977225, 'index': 150, 'word': 'Jose', 'start': 472, 'end': 476}, {'entity': 'I-PER', 'score': 0.9996731, 'index': 151, 'word': 'Co', 'start': 477, 'end': 479}, {'entity': 'I-PER', 'score': 0.9983296, 'index': 152, 'word': '##cer', 'start': 479, 'end': 482}, {'entity': 'I-PER', 'score': 0.9995454, 'index': 153, 'word': '##es', 'start': 482, 'end': 484}, {'entity': 'I-LOC', 'score': 0.9998635, 'index': 155, 'word': 'Argentina', 'start': 487, 'end': 496}, {'entity': 'I-PER', 'score': 0.99982256, 'index': 167, 'word': 'Jo', 'start': 520, 'end': 522}, {'entity': 'I-PER', 'score': 0.99963236, 'index': 168, 'word': '##aki', 'start': 522, 'end': 525}, {'entity': 'I-PER', 'score': 0.9997925, 'index': 169, 'word': '##m', 'start': 525, 'end': 526}, {'entity': 'I-PER', 'score': 0.99980444, 'index': 170, 'word': 'Ha', 'start': 527, 'end': 529}, {'entity': 'I-PER', 'score': 0.99805534, 'index': 171, 'word': '##eg', 'start': 529, 'end': 531}, {'entity': 'I-PER', 'score': 0.9997714, 'index': 172, 'word': '##gman', 'start': 531, 'end': 535}, {'entity': 'I-LOC', 'score': 0.9998313, 'index': 174, 'word': 'Sweden', 'start': 538, 'end': 544}, {'entity': 'I-PER', 'score': 0.99979955, 'index': 181, 'word': 'Antoine', 'start': 561, 'end': 568}, {'entity': 'I-PER', 'score': 0.9997652, 'index': 182, 'word': 'Le', 'start': 569, 'end': 571}, {'entity': 'I-PER', 'score': 0.9983783, 'index': 183, 'word': '##bo', 'start': 571, 'end': 573}, {'entity': 'I-PER', 'score': 0.9996916, 'index': 184, 'word': '##uc', 'start': 573, 'end': 575}, {'entity': 'I-LOC', 'score': 0.99986196, 'index': 186, 'word': 'France', 'start': 578, 'end': 584}, {'entity': 'I-PER', 'score': 0.999813, 'index': 197, 'word': 'Colin', 'start': 608, 'end': 613}, {'entity': 'I-PER', 'score': 0.99975437, 'index': 198, 'word': 'Mont', 'start': 614, 'end': 618}, {'entity': 'I-PER', 'score': 0.9942515, 'index': 199, 'word': '##go', 'start': 618, 'end': 620}, {'entity': 'I-PER', 'score': 0.9512878, 'index': 200, 'word': '##mer', 'start': 620, 'end': 623}, {'entity': 'I-PER', 'score': 0.99929893, 'index': 201, 'word': '##ie', 'start': 623, 'end': 625}, {'entity': 'I-PER', 'score': 0.99980086, 'index': 207, 'word': 'Robert', 'start': 640, 'end': 646}, {'entity': 'I-PER', 'score': 0.9998029, 'index': 208, 'word': 'Cole', 'start': 647, 'end': 651}, {'entity': 'I-PER', 'score': 0.99965847, 'index': 209, 'word': '##s', 'start': 651, 'end': 652}, {'entity': 'I-PER', 'score': 0.9998115, 'index': 215, 'word': 'Philip', 'start': 667, 'end': 673}, {'entity': 'I-PER', 'score': 0.9998635, 'index': 216, 'word': 'Walton', 'start': 674, 'end': 680}, {'entity': 'I-LOC', 'score': 0.99988663, 'index': 218, 'word': 'Ireland', 'start': 683, 'end': 690}, {'entity': 'I-PER', 'score': 0.99979883, 'index': 225, 'word': 'Peter', 'start': 707, 'end': 712}, {'entity': 'I-PER', 'score': 0.9998658, 'index': 226, 'word': 'Mitchell', 'start': 713, 'end': 721}, {'entity': 'I-PER', 'score': 0.99981993, 'index': 232, 'word': 'K', 'start': 736, 'end': 737}, {'entity': 'I-PER', 'score': 0.99976295, 'index': 233, 'word': '##las', 'start': 737, 'end': 740}, {'entity': 'I-PER', 'score': 0.99986124, 'index': 234, 'word': 'Erik', 'start': 741, 'end': 745}, {'entity': 'I-PER', 'score': 0.9998412, 'index': 235, 'word': '##sson', 'start': 745, 'end': 749}, {'entity': 'I-LOC', 'score': 0.9998741, 'index': 237, 'word': 'Sweden', 'start': 752, 'end': 758}, {'entity': 'I-PER', 'score': 0.99981743, 'index': 244, 'word': 'Pedro', 'start': 775, 'end': 780}, {'entity': 'I-PER', 'score': 0.99986696, 'index': 245, 'word': 'Lin', 'start': 781, 'end': 784}, {'entity': 'I-PER', 'score': 0.9998191, 'index': 246, 'word': '##hart', 'start': 784, 'end': 788}, {'entity': 'I-LOC', 'score': 0.999858, 'index': 248, 'word': 'Spain', 'start': 791, 'end': 796}, {'entity': 'I-PER', 'score': 0.9998248, 'index': 260, 'word': 'Phillip', 'start': 820, 'end': 827}, {'entity': 'I-PER', 'score': 0.99986184, 'index': 261, 'word': 'Price', 'start': 828, 'end': 833}, {'entity': 'I-PER', 'score': 0.9998367, 'index': 267, 'word': 'Adam', 'start': 848, 'end': 852}, {'entity': 'I-PER', 'score': 0.9998714, 'index': 268, 'word': 'Hunter', 'start': 853, 'end': 859}, {'entity': 'I-PER', 'score': 0.99983275, 'index': 274, 'word': 'Peter', 'start': 874, 'end': 879}, {'entity': 'I-PER', 'score': 0.9998166, 'index': 275, 'word': 'O', 'start': 880, 'end': 881}, {'entity': 'I-PER', 'score': 0.9971937, 'index': 276, 'word': "'", 'start': 881, 'end': 882}, {'entity': 'I-PER', 'score': 0.99886143, 'index': 277, 'word': 'Mall', 'start': 882, 'end': 886}, {'entity': 'I-PER', 'score': 0.99936944, 'index': 278, 'word': '##ey', 'start': 886, 'end': 888}, {'entity': 'I-LOC', 'score': 0.9997713, 'index': 280, 'word': 'Australia', 'start': 891, 'end': 900}, {'entity': 'I-PER', 'score': 0.9998078, 'index': 287, 'word': 'Mark', 'start': 917, 'end': 921}, {'entity': 'I-PER', 'score': 0.99984074, 'index': 288, 'word': 'Roe', 'start': 922, 'end': 925}, {'entity': 'I-PER', 'score': 0.99980456, 'index': 294, 'word': 'Mike', 'start': 940, 'end': 944}, {'entity': 'I-PER', 'score': 0.99988556, 'index': 295, 'word': 'Clayton', 'start': 945, 'end': 952}, {'entity': 'I-LOC', 'score': 0.9998198, 'index': 297, 'word': 'Australia', 'start': 955, 'end': 964}, {'entity': 'I-PER', 'score': 0.9998186, 'index': 309, 'word': 'Iain', 'start': 988, 'end': 992}, {'entity': 'I-PER', 'score': 0.9998566, 'index': 310, 'word': 'P', 'start': 993, 'end': 994}, {'entity': 'I-PER', 'score': 0.9997378, 'index': 311, 'word': '##yman', 'start': 994, 'end': 998}, {'entity': 'I-PER', 'score': 0.99980205, 'index': 317, 'word': 'David', 'start': 1013, 'end': 1018}, {'entity': 'I-PER', 'score': 0.9998023, 'index': 318, 'word': 'Gil', 'start': 1019, 'end': 1022}, {'entity': 'I-PER', 'score': 0.9998099, 'index': 319, 'word': '##ford', 'start': 1022, 'end': 1026}, {'entity': 'I-PER', 'score': 0.9998105, 'index': 325, 'word': 'Peter', 'start': 1041, 'end': 1046}, {'entity': 'I-PER', 'score': 0.99972004, 'index': 326, 'word': 'He', 'start': 1047, 'end': 1049}, {'entity': 'I-PER', 'score': 0.9957885, 'index': 327, 'word': '##d', 'start': 1049, 'end': 1050}, {'entity': 'I-PER', 'score': 0.9992404, 'index': 328, 'word': '##b', 'start': 1050, 'end': 1051}, {'entity': 'I-PER', 'score': 0.95916855, 'index': 329, 'word': '##lo', 'start': 1051, 'end': 1053}, {'entity': 'I-PER', 'score': 0.9984652, 'index': 330, 'word': '##m', 'start': 1053, 'end': 1054}, {'entity': 'I-LOC', 'score': 0.9998826, 'index': 332, 'word': 'Sweden', 'start': 1057, 'end': 1063}, {'entity': 'I-PER', 'score': 0.99978656, 'index': 339, 'word': 'Stephen', 'start': 1080, 'end': 1087}, {'entity': 'I-PER', 'score': 0.99979216, 'index': 340, 'word': 'M', 'start': 1088, 'end': 1089}, {'entity': 'I-PER', 'score': 0.99321944, 'index': 341, 'word': '##c', 'start': 1089, 'end': 1090}, {'entity': 'I-PER', 'score': 0.99886924, 'index': 342, 'word': '##A', 'start': 1090, 'end': 1091}, {'entity': 'I-PER', 'score': 0.9994423, 'index': 343, 'word': '##llister', 'start': 1091, 'end': 1098}]
[{'entity': 'I-LOC', 'score': 0.97955406, 'index': 6, 'word': 'SL', 'start': 9, 'end': 11}, {'entity': 'I-LOC', 'score': 0.9408273, 'index': 7, 'word': '##O', 'start': 11, 'end': 12}, {'entity': 'I-LOC', 'score': 0.80461496, 'index': 8, 'word': '##VA', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.975811, 'index': 9, 'word': '##K', 'start': 14, 'end': 15}, {'entity': 'I-LOC', 'score': 0.97915125, 'index': 10, 'word': '##IA', 'start': 15, 'end': 17}, {'entity': 'I-ORG', 'score': 0.41251358, 'index': 14, 'word': 'FA', 'start': 23, 'end': 25}, {'entity': 'I-MISC', 'score': 0.9931258, 'index': 18, 'word': 'W', 'start': 33, 'end': 34}, {'entity': 'I-MISC', 'score': 0.9820378, 'index': 19, 'word': '##OR', 'start': 34, 'end': 36}, {'entity': 'I-MISC', 'score': 0.9982792, 'index': 20, 'word': '##LD', 'start': 36, 'end': 38}, {'entity': 'I-MISC', 'score': 0.9894175, 'index': 21, 'word': 'C', 'start': 39, 'end': 40}, {'entity': 'I-MISC', 'score': 0.99524575, 'index': 22, 'word': '##UP', 'start': 40, 'end': 42}, {'entity': 'I-LOC', 'score': 0.99615085, 'index': 34, 'word': 'TO', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9313589, 'index': 35, 'word': '##FT', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9690579, 'index': 36, 'word': '##IR', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.9996537, 'index': 38, 'word': 'Far', 'start': 69, 'end': 72}, {'entity': 'I-LOC', 'score': 0.9996197, 'index': 39, 'word': '##oe', 'start': 72, 'end': 74}, {'entity': 'I-LOC', 'score': 0.9996014, 'index': 40, 'word': 'Islands', 'start': 75, 'end': 82}, {'entity': 'I-LOC', 'score': 0.9997789, 'index': 50, 'word': 'Slovakia', 'start': 99, 'end': 107}, {'entity': 'I-LOC', 'score': 0.9409647, 'index': 53, 'word': 'Far', 'start': 117, 'end': 120}, {'entity': 'I-LOC', 'score': 0.9993655, 'index': 54, 'word': '##oe', 'start': 120, 'end': 122}, {'entity': 'I-LOC', 'score': 0.99764675, 'index': 55, 'word': 'Islands', 'start': 123, 'end': 130}, {'entity': 'I-MISC', 'score': 0.99605954, 'index': 67, 'word': 'World', 'start': 161, 'end': 166}, {'entity': 'I-MISC', 'score': 0.99910754, 'index': 68, 'word': 'Cup', 'start': 167, 'end': 170}, {'entity': 'I-MISC', 'score': 0.9603184, 'index': 70, 'word': 'European', 'start': 178, 'end': 186}, {'entity': 'I-LOC', 'score': 0.99799097, 'index': 89, 'word': 'Far', 'start': 248, 'end': 251}, {'entity': 'I-LOC', 'score': 0.9985972, 'index': 90, 'word': '##oe', 'start': 251, 'end': 253}, {'entity': 'I-LOC', 'score': 0.98579514, 'index': 91, 'word': 'Islands', 'start': 254, 'end': 261}, {'entity': 'I-PER', 'score': 0.9996408, 'index': 93, 'word': 'Jan', 'start': 264, 'end': 267}, {'entity': 'I-PER', 'score': 0.9997055, 'index': 94, 'word': 'Allan', 'start': 268, 'end': 273}, {'entity': 'I-PER', 'score': 0.99976784, 'index': 95, 'word': 'Mu', 'start': 274, 'end': 276}, {'entity': 'I-PER', 'score': 0.99886024, 'index': 96, 'word': '##eller', 'start': 276, 'end': 281}, {'entity': 'I-LOC', 'score': 0.9993388, 'index': 105, 'word': 'Slovakia', 'start': 303, 'end': 311}, {'entity': 'I-PER', 'score': 0.999401, 'index': 107, 'word': 'Lu', 'start': 314, 'end': 316}, {'entity': 'I-PER', 'score': 0.9970291, 'index': 108, 'word': '##bo', 'start': 316, 'end': 318}, {'entity': 'I-PER', 'score': 0.99950564, 'index': 109, 'word': '##mir', 'start': 318, 'end': 321}, {'entity': 'I-PER', 'score': 0.999579, 'index': 110, 'word': 'Mo', 'start': 322, 'end': 324}, {'entity': 'I-PER', 'score': 0.7866277, 'index': 111, 'word': '##ra', 'start': 324, 'end': 326}, {'entity': 'I-PER', 'score': 0.9880167, 'index': 112, 'word': '##v', 'start': 326, 'end': 327}, {'entity': 'I-PER', 'score': 0.9756782, 'index': 113, 'word': '##ci', 'start': 327, 'end': 329}, {'entity': 'I-PER', 'score': 0.99361575, 'index': 114, 'word': '##k', 'start': 329, 'end': 330}, {'entity': 'I-PER', 'score': 0.99954826, 'index': 119, 'word': 'Peter', 'start': 342, 'end': 347}, {'entity': 'I-PER', 'score': 0.99944574, 'index': 120, 'word': 'Dub', 'start': 348, 'end': 351}, {'entity': 'I-PER', 'score': 0.997537, 'index': 121, 'word': '##ovsky', 'start': 351, 'end': 356}]
[{'entity': 'I-LOC', 'score': 0.999188, 'index': 6, 'word': 'E', 'start': 10, 'end': 11}, {'entity': 'I-LOC', 'score': 0.9957528, 'index': 7, 'word': '##NG', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.99508756, 'index': 8, 'word': '##LA', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.99885166, 'index': 9, 'word': '##ND', 'start': 15, 'end': 17}, {'entity': 'I-LOC', 'score': 0.9993637, 'index': 13, 'word': 'PA', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.9968389, 'index': 14, 'word': '##K', 'start': 25, 'end': 26}, {'entity': 'I-LOC', 'score': 0.9942583, 'index': 15, 'word': '##IS', 'start': 26, 'end': 28}, {'entity': 'I-LOC', 'score': 0.9946219, 'index': 16, 'word': '##TA', 'start': 28, 'end': 30}, {'entity': 'I-LOC', 'score': 0.9975563, 'index': 17, 'word': '##N', 'start': 30, 'end': 31}, {'entity': 'I-LOC', 'score': 0.99485165, 'index': 39, 'word': 'B', 'start': 71, 'end': 72}, {'entity': 'I-LOC', 'score': 0.86575156, 'index': 40, 'word': '##IR', 'start': 72, 'end': 74}, {'entity': 'I-LOC', 'score': 0.97948647, 'index': 41, 'word': '##MI', 'start': 74, 'end': 76}, {'entity': 'I-LOC', 'score': 0.91066015, 'index': 42, 'word': '##NG', 'start': 76, 'end': 78}, {'entity': 'I-LOC', 'score': 0.8715797, 'index': 43, 'word': '##HA', 'start': 78, 'end': 80}, {'entity': 'I-LOC', 'score': 0.9923408, 'index': 44, 'word': '##M', 'start': 80, 'end': 81}, {'entity': 'I-LOC', 'score': 0.99983454, 'index': 46, 'word': 'England', 'start': 84, 'end': 91}, {'entity': 'I-LOC', 'score': 0.9998153, 'index': 56, 'word': 'England', 'start': 108, 'end': 115}, {'entity': 'I-LOC', 'score': 0.9998648, 'index': 58, 'word': 'Pakistan', 'start': 121, 'end': 129}, {'entity': 'I-LOC', 'score': 0.9990491, 'index': 70, 'word': 'Ed', 'start': 181, 'end': 183}, {'entity': 'I-LOC', 'score': 0.99713326, 'index': 71, 'word': '##g', 'start': 183, 'end': 184}, {'entity': 'I-LOC', 'score': 0.9983918, 'index': 72, 'word': '##bas', 'start': 184, 'end': 187}, {'entity': 'I-LOC', 'score': 0.9986229, 'index': 73, 'word': '##ton', 'start': 187, 'end': 190}, {'entity': 'I-LOC', 'score': 0.9997603, 'index': 91, 'word': 'England', 'start': 242, 'end': 249}, {'entity': 'I-PER', 'score': 0.99971277, 'index': 99, 'word': 'N', 'start': 273, 'end': 274}, {'entity': 'I-PER', 'score': 0.8482819, 'index': 100, 'word': '.', 'start': 274, 'end': 275}, {'entity': 'I-PER', 'score': 0.99977964, 'index': 101, 'word': 'Knight', 'start': 276, 'end': 282}, {'entity': 'I-LOC', 'score': 0.9997892, 'index': 105, 'word': 'Pakistan', 'start': 291, 'end': 299}, {'entity': 'I-PER', 'score': 0.9996252, 'index': 108, 'word': 'I', 'start': 306, 'end': 307}, {'entity': 'I-PER', 'score': 0.9995419, 'index': 109, 'word': '##ja', 'start': 307, 'end': 309}, {'entity': 'I-PER', 'score': 0.99972206, 'index': 110, 'word': '##z', 'start': 309, 'end': 310}, {'entity': 'I-PER', 'score': 0.99984956, 'index': 111, 'word': 'Ahmed', 'start': 311, 'end': 316}, {'entity': 'I-PER', 'score': 0.9997074, 'index': 114, 'word': 'A', 'start': 322, 'end': 323}, {'entity': 'I-PER', 'score': 0.9865109, 'index': 115, 'word': '.', 'start': 323, 'end': 324}, {'entity': 'I-PER', 'score': 0.9996506, 'index': 116, 'word': 'Ho', 'start': 325, 'end': 327}, {'entity': 'I-PER', 'score': 0.94857585, 'index': 117, 'word': '##lli', 'start': 327, 'end': 330}, {'entity': 'I-PER', 'score': 0.57831573, 'index': 118, 'word': '##oa', 'start': 330, 'end': 332}, {'entity': 'I-PER', 'score': 0.99472564, 'index': 119, 'word': '##ke', 'start': 332, 'end': 334}]
[{'entity': 'I-MISC', 'score': 0.9891823, 'index': 6, 'word': 'TO', 'start': 10, 'end': 12}, {'entity': 'I-MISC', 'score': 0.98470056, 'index': 7, 'word': '##UR', 'start': 12, 'end': 14}, {'entity': 'I-MISC', 'score': 0.99836344, 'index': 8, 'word': 'OF', 'start': 15, 'end': 17}, {'entity': 'I-MISC', 'score': 0.99637234, 'index': 9, 'word': 'NE', 'start': 18, 'end': 20}, {'entity': 'I-MISC', 'score': 0.6646022, 'index': 10, 'word': '##TH', 'start': 20, 'end': 22}, {'entity': 'I-MISC', 'score': 0.7850524, 'index': 11, 'word': '##ER', 'start': 22, 'end': 24}, {'entity': 'I-MISC', 'score': 0.62776124, 'index': 12, 'word': '##LA', 'start': 24, 'end': 26}, {'entity': 'I-MISC', 'score': 0.45952794, 'index': 13, 'word': '##ND', 'start': 26, 'end': 28}, {'entity': 'I-LOC', 'score': 0.99724555, 'index': 34, 'word': 'LA', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9914458, 'index': 35, 'word': '##ND', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9905962, 'index': 36, 'word': '##GR', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.9887582, 'index': 37, 'word': '##AA', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.99291366, 'index': 38, 'word': '##F', 'start': 71, 'end': 72}, {'entity': 'I-LOC', 'score': 0.9997539, 'index': 40, 'word': 'Netherlands', 'start': 75, 'end': 86}, {'entity': 'I-MISC', 'score': 0.48858216, 'index': 55, 'word': 'S', 'start': 124, 'end': 125}, {'entity': 'I-MISC', 'score': 0.99768496, 'index': 67, 'word': 'Tour', 'start': 167, 'end': 171}, {'entity': 'I-MISC', 'score': 0.9982894, 'index': 68, 'word': 'of', 'start': 172, 'end': 174}, {'entity': 'I-MISC', 'score': 0.99851006, 'index': 69, 'word': 'the', 'start': 175, 'end': 178}, {'entity': 'I-MISC', 'score': 0.9992047, 'index': 70, 'word': 'Netherlands', 'start': 179, 'end': 190}, {'entity': 'I-MISC', 'score': 0.47143304, 'index': 73, 'word': 'S', 'start': 193, 'end': 194}, {'entity': 'I-LOC', 'score': 0.9957675, 'index': 76, 'word': 'Roe', 'start': 204, 'end': 207}, {'entity': 'I-LOC', 'score': 0.901741, 'index': 77, 'word': '##rmon', 'start': 207, 'end': 211}, {'entity': 'I-LOC', 'score': 0.9903374, 'index': 78, 'word': '##d', 'start': 211, 'end': 212}, {'entity': 'I-LOC', 'score': 0.99213916, 'index': 80, 'word': 'Land', 'start': 217, 'end': 221}, {'entity': 'I-LOC', 'score': 0.767476, 'index': 81, 'word': '##gra', 'start': 221, 'end': 224}, {'entity': 'I-LOC', 'score': 0.9831218, 'index': 82, 'word': '##af', 'start': 224, 'end': 226}, {'entity': 'I-PER', 'score': 0.9997764, 'index': 92, 'word': 'Olaf', 'start': 249, 'end': 253}, {'entity': 'I-PER', 'score': 0.999863, 'index': 93, 'word': 'Ludwig', 'start': 254, 'end': 260}, {'entity': 'I-LOC', 'score': 0.99979776, 'index': 95, 'word': 'Germany', 'start': 263, 'end': 270}, {'entity': 'I-ORG', 'score': 0.99949515, 'index': 97, 'word': 'Tel', 'start': 273, 'end': 276}, {'entity': 'I-ORG', 'score': 0.9942432, 'index': 98, 'word': '##ek', 'start': 276, 'end': 278}, {'entity': 'I-ORG', 'score': 0.9985869, 'index': 99, 'word': '##om', 'start': 278, 'end': 280}, {'entity': 'I-PER', 'score': 0.9997427, 'index': 113, 'word': 'Giovanni', 'start': 315, 'end': 323}, {'entity': 'I-PER', 'score': 0.9998379, 'index': 114, 'word': 'Lombard', 'start': 324, 'end': 331}, {'entity': 'I-PER', 'score': 0.9990257, 'index': 115, 'word': '##i', 'start': 331, 'end': 332}, {'entity': 'I-LOC', 'score': 0.99976844, 'index': 117, 'word': 'Italy', 'start': 335, 'end': 340}, {'entity': 'I-ORG', 'score': 0.93978477, 'index': 119, 'word': 'Pol', 'start': 343, 'end': 346}, {'entity': 'I-ORG', 'score': 0.98693013, 'index': 120, 'word': '##ti', 'start': 346, 'end': 348}, {'entity': 'I-PER', 'score': 0.9997625, 'index': 130, 'word': 'Tristan', 'start': 374, 'end': 381}, {'entity': 'I-PER', 'score': 0.99984777, 'index': 131, 'word': 'Hoffman', 'start': 382, 'end': 389}, {'entity': 'I-LOC', 'score': 0.9998584, 'index': 133, 'word': 'Netherlands', 'start': 392, 'end': 403}, {'entity': 'I-ORG', 'score': 0.9963727, 'index': 135, 'word': 'TV', 'start': 406, 'end': 408}, {'entity': 'I-ORG', 'score': 0.99152255, 'index': 136, 'word': '##M', 'start': 408, 'end': 409}, {'entity': 'I-PER', 'score': 0.999767, 'index': 145, 'word': 'Erik', 'start': 428, 'end': 432}, {'entity': 'I-PER', 'score': 0.99983275, 'index': 146, 'word': 'B', 'start': 433, 'end': 434}, {'entity': 'I-PER', 'score': 0.9968844, 'index': 147, 'word': '##re', 'start': 434, 'end': 436}, {'entity': 'I-PER', 'score': 0.9941479, 'index': 148, 'word': '##uki', 'start': 436, 'end': 439}, {'entity': 'I-PER', 'score': 0.99924695, 'index': 149, 'word': '##nk', 'start': 439, 'end': 441}, {'entity': 'I-LOC', 'score': 0.9998541, 'index': 151, 'word': 'Netherlands', 'start': 444, 'end': 455}, {'entity': 'I-ORG', 'score': 0.99924195, 'index': 153, 'word': 'Ra', 'start': 458, 'end': 460}, {'entity': 'I-ORG', 'score': 0.9980567, 'index': 154, 'word': '##bo', 'start': 460, 'end': 462}, {'entity': 'I-ORG', 'score': 0.99883956, 'index': 155, 'word': '##bank', 'start': 462, 'end': 466}, {'entity': 'I-PER', 'score': 0.9997954, 'index': 164, 'word': 'Je', 'start': 485, 'end': 487}, {'entity': 'I-PER', 'score': 0.999726, 'index': 165, 'word': '##sper', 'start': 487, 'end': 491}, {'entity': 'I-PER', 'score': 0.99972945, 'index': 166, 'word': 'Ski', 'start': 492, 'end': 495}, {'entity': 'I-PER', 'score': 0.99829906, 'index': 167, 'word': '##bby', 'start': 495, 'end': 498}, {'entity': 'I-LOC', 'score': 0.9998274, 'index': 169, 'word': 'Denmark', 'start': 501, 'end': 508}, {'entity': 'I-ORG', 'score': 0.99791044, 'index': 171, 'word': 'TV', 'start': 511, 'end': 513}, {'entity': 'I-ORG', 'score': 0.995789, 'index': 172, 'word': '##M', 'start': 513, 'end': 514}, {'entity': 'I-PER', 'score': 0.99975616, 'index': 180, 'word': 'V', 'start': 525, 'end': 526}, {'entity': 'I-PER', 'score': 0.99922967, 'index': 181, 'word': '##ya', 'start': 526, 'end': 528}, {'entity': 'I-PER', 'score': 0.9994468, 'index': 182, 'word': '##ches', 'start': 528, 'end': 532}, {'entity': 'I-PER', 'score': 0.9997031, 'index': 183, 'word': '##lav', 'start': 532, 'end': 535}, {'entity': 'I-PER', 'score': 0.99980134, 'index': 184, 'word': 'E', 'start': 536, 'end': 537}, {'entity': 'I-PER', 'score': 0.99886346, 'index': 185, 'word': '##kim', 'start': 537, 'end': 540}, {'entity': 'I-PER', 'score': 0.9987324, 'index': 186, 'word': '##ov', 'start': 540, 'end': 542}, {'entity': 'I-LOC', 'score': 0.99983585, 'index': 188, 'word': 'Russia', 'start': 545, 'end': 551}, {'entity': 'I-ORG', 'score': 0.99894625, 'index': 190, 'word': 'Ra', 'start': 554, 'end': 556}, {'entity': 'I-ORG', 'score': 0.9976101, 'index': 191, 'word': '##bo', 'start': 556, 'end': 558}, {'entity': 'I-ORG', 'score': 0.99763644, 'index': 192, 'word': '##bank', 'start': 558, 'end': 562}, {'entity': 'I-PER', 'score': 0.99970573, 'index': 201, 'word': 'Luca', 'start': 581, 'end': 585}, {'entity': 'I-PER', 'score': 0.99968207, 'index': 202, 'word': 'Pa', 'start': 586, 'end': 588}, {'entity': 'I-PER', 'score': 0.99688333, 'index': 203, 'word': '##van', 'start': 588, 'end': 591}, {'entity': 'I-PER', 'score': 0.99952173, 'index': 204, 'word': '##ello', 'start': 591, 'end': 595}, {'entity': 'I-LOC', 'score': 0.99987113, 'index': 206, 'word': 'Italy', 'start': 598, 'end': 603}, {'entity': 'I-ORG', 'score': 0.9438271, 'index': 208, 'word': 'A', 'start': 606, 'end': 607}, {'entity': 'I-ORG', 'score': 0.9880008, 'index': 209, 'word': '##ki', 'start': 607, 'end': 609}, {'entity': 'I-PER', 'score': 0.99974257, 'index': 217, 'word': 'El', 'start': 621, 'end': 623}, {'entity': 'I-PER', 'score': 0.99917537, 'index': 218, 'word': '##eu', 'start': 623, 'end': 625}, {'entity': 'I-PER', 'score': 0.99955577, 'index': 219, 'word': '##ter', 'start': 625, 'end': 628}, {'entity': 'I-PER', 'score': 0.9995944, 'index': 220, 'word': '##io', 'start': 628, 'end': 630}, {'entity': 'I-PER', 'score': 0.9994848, 'index': 221, 'word': 'Ang', 'start': 631, 'end': 634}, {'entity': 'I-PER', 'score': 0.9935806, 'index': 222, 'word': '##uit', 'start': 634, 'end': 637}, {'entity': 'I-PER', 'score': 0.99857485, 'index': 223, 'word': '##a', 'start': 637, 'end': 638}, {'entity': 'I-LOC', 'score': 0.99985623, 'index': 225, 'word': 'Spain', 'start': 641, 'end': 646}, {'entity': 'I-ORG', 'score': 0.99706906, 'index': 227, 'word': 'M', 'start': 649, 'end': 650}, {'entity': 'I-ORG', 'score': 0.9926472, 'index': 228, 'word': '##X', 'start': 650, 'end': 651}, {'entity': 'I-ORG', 'score': 0.9885766, 'index': 229, 'word': 'On', 'start': 652, 'end': 654}, {'entity': 'I-ORG', 'score': 0.98353875, 'index': 230, 'word': '##da', 'start': 654, 'end': 656}, {'entity': 'I-PER', 'score': 0.9997862, 'index': 237, 'word': 'Michael', 'start': 665, 'end': 672}, {'entity': 'I-PER', 'score': 0.99979514, 'index': 238, 'word': 'Anders', 'start': 673, 'end': 679}, {'entity': 'I-PER', 'score': 0.9996822, 'index': 239, 'word': '##son', 'start': 679, 'end': 682}, {'entity': 'I-LOC', 'score': 0.99978644, 'index': 241, 'word': 'Sweden', 'start': 685, 'end': 691}, {'entity': 'I-ORG', 'score': 0.9994247, 'index': 243, 'word': 'Tel', 'start': 694, 'end': 697}, {'entity': 'I-ORG', 'score': 0.9934696, 'index': 244, 'word': '##ek', 'start': 697, 'end': 699}, {'entity': 'I-ORG', 'score': 0.99801946, 'index': 245, 'word': '##om', 'start': 699, 'end': 701}, {'entity': 'I-PER', 'score': 0.999772, 'index': 252, 'word': 'Johan', 'start': 711, 'end': 716}, {'entity': 'I-PER', 'score': 0.9993844, 'index': 253, 'word': 'Cap', 'start': 717, 'end': 720}, {'entity': 'I-PER', 'score': 0.9941288, 'index': 254, 'word': '##iot', 'start': 720, 'end': 723}, {'entity': 'I-LOC', 'score': 0.9997391, 'index': 256, 'word': 'Belgium', 'start': 726, 'end': 733}, {'entity': 'I-ORG', 'score': 0.9913311, 'index': 258, 'word': 'Col', 'start': 736, 'end': 739}, {'entity': 'I-ORG', 'score': 0.95302194, 'index': 259, 'word': '##ls', 'start': 739, 'end': 741}, {'entity': 'I-ORG', 'score': 0.95777017, 'index': 260, 'word': '##tro', 'start': 741, 'end': 744}, {'entity': 'I-ORG', 'score': 0.9894516, 'index': 261, 'word': '##p', 'start': 744, 'end': 745}, {'entity': 'I-PER', 'score': 0.99976605, 'index': 285, 'word': 'Rolf', 'start': 819, 'end': 823}, {'entity': 'I-PER', 'score': 0.9998, 'index': 286, 'word': 'So', 'start': 824, 'end': 826}, {'entity': 'I-PER', 'score': 0.9988243, 'index': 287, 'word': '##ren', 'start': 826, 'end': 829}, {'entity': 'I-PER', 'score': 0.99951303, 'index': 288, 'word': '##sen', 'start': 829, 'end': 832}, {'entity': 'I-LOC', 'score': 0.9997502, 'index': 290, 'word': 'Denmark', 'start': 835, 'end': 842}, {'entity': 'I-ORG', 'score': 0.9980262, 'index': 292, 'word': 'Ra', 'start': 845, 'end': 847}, {'entity': 'I-ORG', 'score': 0.99695516, 'index': 293, 'word': '##bo', 'start': 847, 'end': 849}, {'entity': 'I-ORG', 'score': 0.9982292, 'index': 294, 'word': '##bank', 'start': 849, 'end': 853}, {'entity': 'I-PER', 'score': 0.9997644, 'index': 306, 'word': 'Lance', 'start': 871, 'end': 876}, {'entity': 'I-PER', 'score': 0.9998803, 'index': 307, 'word': 'Armstrong', 'start': 877, 'end': 886}, {'entity': 'I-LOC', 'score': 0.9996972, 'index': 309, 'word': 'U', 'start': 889, 'end': 890}, {'entity': 'I-LOC', 'score': 0.9997266, 'index': 311, 'word': 'S', 'start': 891, 'end': 892}, {'entity': 'I-ORG', 'score': 0.9994342, 'index': 314, 'word': 'Motor', 'start': 896, 'end': 901}, {'entity': 'I-ORG', 'score': 0.9992605, 'index': 315, 'word': '##ola', 'start': 901, 'end': 904}, {'entity': 'I-PER', 'score': 0.9998159, 'index': 325, 'word': 'E', 'start': 930, 'end': 931}, {'entity': 'I-PER', 'score': 0.9978644, 'index': 326, 'word': '##kim', 'start': 931, 'end': 934}, {'entity': 'I-PER', 'score': 0.99867886, 'index': 327, 'word': '##ov', 'start': 934, 'end': 936}, {'entity': 'I-PER', 'score': 0.9996581, 'index': 337, 'word': 'Marco', 'start': 949, 'end': 954}, {'entity': 'I-PER', 'score': 0.9996307, 'index': 338, 'word': 'Lie', 'start': 955, 'end': 958}, {'entity': 'I-PER', 'score': 0.9991358, 'index': 339, 'word': '##tti', 'start': 958, 'end': 961}, {'entity': 'I-LOC', 'score': 0.9997969, 'index': 341, 'word': 'Italy', 'start': 964, 'end': 969}, {'entity': 'I-ORG', 'score': 0.9981755, 'index': 343, 'word': 'MG', 'start': 972, 'end': 974}, {'entity': 'I-ORG', 'score': 0.581903, 'index': 344, 'word': '-', 'start': 974, 'end': 975}, {'entity': 'I-ORG', 'score': 0.9984723, 'index': 345, 'word': 'Tech', 'start': 975, 'end': 979}, {'entity': 'I-ORG', 'score': 0.9907664, 'index': 346, 'word': '##no', 'start': 979, 'end': 981}, {'entity': 'I-ORG', 'score': 0.9773196, 'index': 347, 'word': '##gy', 'start': 981, 'end': 983}, {'entity': 'I-ORG', 'score': 0.99341124, 'index': 348, 'word': '##m', 'start': 983, 'end': 984}, {'entity': 'I-PER', 'score': 0.9997751, 'index': 358, 'word': 'Erik', 'start': 998, 'end': 1002}, {'entity': 'I-PER', 'score': 0.9997365, 'index': 359, 'word': 'De', 'start': 1003, 'end': 1005}, {'entity': 'I-PER', 'score': 0.99968195, 'index': 360, 'word': '##kker', 'start': 1005, 'end': 1009}, {'entity': 'I-LOC', 'score': 0.9997404, 'index': 362, 'word': 'Netherlands', 'start': 1012, 'end': 1023}, {'entity': 'I-ORG', 'score': 0.9983563, 'index': 364, 'word': 'Ra', 'start': 1026, 'end': 1028}, {'entity': 'I-ORG', 'score': 0.9957247, 'index': 365, 'word': '##bo', 'start': 1028, 'end': 1030}, {'entity': 'I-ORG', 'score': 0.99853706, 'index': 366, 'word': '##bank', 'start': 1030, 'end': 1034}, {'entity': 'I-PER', 'score': 0.9998029, 'index': 376, 'word': 'Ludwig', 'start': 1048, 'end': 1054}, {'entity': 'I-ORG', 'score': 0.75408757, 'index': 386, 'word': 'B', 'start': 1068, 'end': 1069}, {'entity': 'I-ORG', 'score': 0.5289994, 'index': 387, 'word': '##re', 'start': 1069, 'end': 1071}, {'entity': 'I-PER', 'score': 0.94003046, 'index': 388, 'word': '##uki', 'start': 1071, 'end': 1074}, {'entity': 'I-ORG', 'score': 0.49594435, 'index': 389, 'word': '##nk', 'start': 1074, 'end': 1076}, {'entity': 'I-ORG', 'score': 0.59573, 'index': 398, 'word': 'Ma', 'start': 1095, 'end': 1097}, {'entity': 'I-ORG', 'score': 0.9916441, 'index': 399, 'word': '##arte', 'start': 1097, 'end': 1101}, {'entity': 'I-ORG', 'score': 0.7508077, 'index': 402, 'word': 'Ba', 'start': 1107, 'end': 1109}, {'entity': 'I-LOC', 'score': 0.999762, 'index': 405, 'word': 'Netherlands', 'start': 1116, 'end': 1127}, {'entity': 'I-ORG', 'score': 0.68406534, 'index': 407, 'word': 'TV', 'start': 1130, 'end': 1132}, {'entity': 'I-PER', 'score': 0.99932766, 'index': 418, 'word': 'Anders', 'start': 1147, 'end': 1153}, {'entity': 'I-PER', 'score': 0.99923956, 'index': 429, 'word': 'Ski', 'start': 1171, 'end': 1174}, {'entity': 'I-ORG', 'score': 0.5046152, 'index': 430, 'word': '##bby', 'start': 1174, 'end': 1177}]
[{'entity': 'I-MISC', 'score': 0.4368481, 'index': 2, 'word': '##IC', 'start': 2, 'end': 4}, {'entity': 'I-LOC', 'score': 0.9988865, 'index': 6, 'word': 'E', 'start': 10, 'end': 11}, {'entity': 'I-LOC', 'score': 0.9937204, 'index': 7, 'word': '##NG', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.9952106, 'index': 8, 'word': '##LA', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.9986324, 'index': 9, 'word': '##ND', 'start': 15, 'end': 17}, {'entity': 'I-LOC', 'score': 0.99887127, 'index': 11, 'word': 'PA', 'start': 20, 'end': 22}, {'entity': 'I-LOC', 'score': 0.9936972, 'index': 12, 'word': '##K', 'start': 22, 'end': 23}, {'entity': 'I-LOC', 'score': 0.98392546, 'index': 13, 'word': '##IS', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.978742, 'index': 14, 'word': '##TA', 'start': 25, 'end': 27}, {'entity': 'I-LOC', 'score': 0.94764805, 'index': 15, 'word': '##N', 'start': 27, 'end': 28}, {'entity': 'I-LOC', 'score': 0.99649835, 'index': 32, 'word': 'B', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.95554245, 'index': 33, 'word': '##IR', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9931045, 'index': 34, 'word': '##MI', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.93723494, 'index': 35, 'word': '##NG', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9307517, 'index': 36, 'word': '##HA', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9947495, 'index': 37, 'word': '##M', 'start': 64, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9998293, 'index': 39, 'word': 'England', 'start': 68, 'end': 75}, {'entity': 'I-LOC', 'score': 0.9998311, 'index': 60, 'word': 'England', 'start': 147, 'end': 154}, {'entity': 'I-LOC', 'score': 0.99986625, 'index': 62, 'word': 'Pakistan', 'start': 159, 'end': 167}, {'entity': 'I-LOC', 'score': 0.99961936, 'index': 70, 'word': 'England', 'start': 187, 'end': 194}, {'entity': 'I-PER', 'score': 0.99886155, 'index': 75, 'word': 'N', 'start': 200, 'end': 201}, {'entity': 'I-PER', 'score': 0.9011252, 'index': 76, 'word': '.', 'start': 201, 'end': 202}, {'entity': 'I-PER', 'score': 0.99965465, 'index': 77, 'word': 'Knight', 'start': 203, 'end': 209}, {'entity': 'I-PER', 'score': 0.9997483, 'index': 80, 'word': 'Mo', 'start': 213, 'end': 215}, {'entity': 'I-PER', 'score': 0.9996457, 'index': 81, 'word': '##in', 'start': 215, 'end': 217}, {'entity': 'I-PER', 'score': 0.9998288, 'index': 82, 'word': 'Khan', 'start': 218, 'end': 222}, {'entity': 'I-PER', 'score': 0.9996903, 'index': 84, 'word': 'Sa', 'start': 225, 'end': 227}, {'entity': 'I-PER', 'score': 0.999286, 'index': 85, 'word': '##q', 'start': 227, 'end': 228}, {'entity': 'I-PER', 'score': 0.999676, 'index': 86, 'word': '##lain', 'start': 228, 'end': 232}, {'entity': 'I-PER', 'score': 0.9997912, 'index': 87, 'word': 'Mu', 'start': 233, 'end': 235}, {'entity': 'I-PER', 'score': 0.9968072, 'index': 88, 'word': '##sh', 'start': 235, 'end': 237}, {'entity': 'I-PER', 'score': 0.8810051, 'index': 89, 'word': '##ta', 'start': 237, 'end': 239}, {'entity': 'I-PER', 'score': 0.99928635, 'index': 90, 'word': '##q', 'start': 239, 'end': 240}, {'entity': 'I-PER', 'score': 0.99966097, 'index': 96, 'word': 'A', 'start': 250, 'end': 251}, {'entity': 'I-PER', 'score': 0.9971002, 'index': 97, 'word': '.', 'start': 251, 'end': 252}, {'entity': 'I-PER', 'score': 0.99984264, 'index': 98, 'word': 'Stewart', 'start': 253, 'end': 260}, {'entity': 'I-PER', 'score': 0.9997397, 'index': 100, 'word': 'Mu', 'start': 263, 'end': 265}, {'entity': 'I-PER', 'score': 0.99883026, 'index': 101, 'word': '##sh', 'start': 265, 'end': 267}, {'entity': 'I-PER', 'score': 0.9725974, 'index': 102, 'word': '##ta', 'start': 267, 'end': 269}, {'entity': 'I-PER', 'score': 0.99957305, 'index': 103, 'word': '##q', 'start': 269, 'end': 270}, {'entity': 'I-PER', 'score': 0.9998331, 'index': 104, 'word': 'Ahmed', 'start': 271, 'end': 276}, {'entity': 'I-PER', 'score': 0.9996146, 'index': 110, 'word': 'M', 'start': 285, 'end': 286}, {'entity': 'I-PER', 'score': 0.996349, 'index': 111, 'word': '.', 'start': 286, 'end': 287}, {'entity': 'I-PER', 'score': 0.9995832, 'index': 112, 'word': 'At', 'start': 288, 'end': 290}, {'entity': 'I-PER', 'score': 0.9702122, 'index': 113, 'word': '##her', 'start': 290, 'end': 293}, {'entity': 'I-PER', 'score': 0.99543816, 'index': 114, 'word': '##ton', 'start': 293, 'end': 296}, {'entity': 'I-PER', 'score': 0.9997224, 'index': 118, 'word': 'Mu', 'start': 303, 'end': 305}, {'entity': 'I-PER', 'score': 0.99674785, 'index': 119, 'word': '##sh', 'start': 305, 'end': 307}, {'entity': 'I-PER', 'score': 0.9416169, 'index': 120, 'word': '##ta', 'start': 307, 'end': 309}, {'entity': 'I-PER', 'score': 0.9993772, 'index': 121, 'word': '##q', 'start': 309, 'end': 310}, {'entity': 'I-PER', 'score': 0.99980444, 'index': 122, 'word': 'Ahmed', 'start': 311, 'end': 316}, {'entity': 'I-PER', 'score': 0.9996308, 'index': 128, 'word': 'G', 'start': 324, 'end': 325}, {'entity': 'I-PER', 'score': 0.9755633, 'index': 129, 'word': '.', 'start': 325, 'end': 326}, {'entity': 'I-PER', 'score': 0.9998042, 'index': 130, 'word': 'Thorpe', 'start': 327, 'end': 333}, {'entity': 'I-PER', 'score': 0.9997335, 'index': 134, 'word': 'At', 'start': 340, 'end': 342}, {'entity': 'I-PER', 'score': 0.9979972, 'index': 135, 'word': '##a', 'start': 342, 'end': 343}, {'entity': 'I-PER', 'score': 0.8602269, 'index': 136, 'word': '-', 'start': 343, 'end': 344}, {'entity': 'I-PER', 'score': 0.9993426, 'index': 137, 'word': 'u', 'start': 344, 'end': 345}, {'entity': 'I-PER', 'score': 0.9980684, 'index': 138, 'word': '##r', 'start': 345, 'end': 346}, {'entity': 'I-PER', 'score': 0.5875645, 'index': 139, 'word': '-', 'start': 346, 'end': 347}, {'entity': 'I-PER', 'score': 0.99949706, 'index': 140, 'word': 'Re', 'start': 347, 'end': 349}, {'entity': 'I-PER', 'score': 0.9995023, 'index': 141, 'word': '##hman', 'start': 349, 'end': 353}, {'entity': 'I-PER', 'score': 0.9996909, 'index': 147, 'word': 'M', 'start': 362, 'end': 363}, {'entity': 'I-PER', 'score': 0.9910978, 'index': 148, 'word': '.', 'start': 363, 'end': 364}, {'entity': 'I-PER', 'score': 0.99981135, 'index': 149, 'word': 'Maynard', 'start': 365, 'end': 372}, {'entity': 'I-PER', 'score': 0.9997327, 'index': 157, 'word': 'R', 'start': 388, 'end': 389}, {'entity': 'I-PER', 'score': 0.9899026, 'index': 158, 'word': '.', 'start': 389, 'end': 390}, {'entity': 'I-PER', 'score': 0.99957806, 'index': 159, 'word': 'Iran', 'start': 391, 'end': 395}, {'entity': 'I-PER', 'score': 0.99940765, 'index': 160, 'word': '##i', 'start': 395, 'end': 396}, {'entity': 'I-PER', 'score': 0.9995322, 'index': 168, 'word': 'A', 'start': 413, 'end': 414}, {'entity': 'I-PER', 'score': 0.9954045, 'index': 169, 'word': '.', 'start': 414, 'end': 415}, {'entity': 'I-PER', 'score': 0.9996879, 'index': 170, 'word': 'Ho', 'start': 416, 'end': 418}, {'entity': 'I-PER', 'score': 0.97713363, 'index': 171, 'word': '##lli', 'start': 418, 'end': 421}, {'entity': 'I-PER', 'score': 0.9402061, 'index': 172, 'word': '##oa', 'start': 421, 'end': 423}, {'entity': 'I-PER', 'score': 0.9866152, 'index': 173, 'word': '##ke', 'start': 423, 'end': 425}, {'entity': 'I-PER', 'score': 0.9995716, 'index': 181, 'word': 'D', 'start': 442, 'end': 443}, {'entity': 'I-PER', 'score': 0.9876309, 'index': 182, 'word': '.', 'start': 443, 'end': 444}, {'entity': 'I-PER', 'score': 0.9988819, 'index': 183, 'word': 'Go', 'start': 445, 'end': 447}, {'entity': 'I-PER', 'score': 0.9962328, 'index': 184, 'word': '##ugh', 'start': 447, 'end': 450}, {'entity': 'I-PER', 'score': 0.9997484, 'index': 192, 'word': 'R', 'start': 466, 'end': 467}, {'entity': 'I-PER', 'score': 0.99756795, 'index': 193, 'word': '.', 'start': 467, 'end': 468}, {'entity': 'I-PER', 'score': 0.9997993, 'index': 194, 'word': 'C', 'start': 469, 'end': 470}, {'entity': 'I-PER', 'score': 0.9995499, 'index': 195, 'word': '##roft', 'start': 470, 'end': 474}, {'entity': 'I-PER', 'score': 0.9997569, 'index': 197, 'word': 'W', 'start': 477, 'end': 478}, {'entity': 'I-PER', 'score': 0.99943024, 'index': 198, 'word': '##aq', 'start': 478, 'end': 480}, {'entity': 'I-PER', 'score': 0.99958557, 'index': 199, 'word': '##ar', 'start': 480, 'end': 482}, {'entity': 'I-PER', 'score': 0.9997837, 'index': 200, 'word': 'You', 'start': 483, 'end': 486}, {'entity': 'I-PER', 'score': 0.99948126, 'index': 201, 'word': '##nis', 'start': 486, 'end': 489}, {'entity': 'I-PER', 'score': 0.99943084, 'index': 207, 'word': 'D', 'start': 498, 'end': 499}, {'entity': 'I-PER', 'score': 0.9179016, 'index': 208, 'word': '.', 'start': 499, 'end': 500}, {'entity': 'I-PER', 'score': 0.99966145, 'index': 209, 'word': 'Head', 'start': 501, 'end': 505}, {'entity': 'I-PER', 'score': 0.99606043, 'index': 210, 'word': '##ley', 'start': 505, 'end': 508}, {'entity': 'I-PER', 'score': 0.9995378, 'index': 287, 'word': 'A', 'start': 684, 'end': 685}, {'entity': 'I-PER', 'score': 0.9845628, 'index': 288, 'word': '.', 'start': 685, 'end': 686}, {'entity': 'I-PER', 'score': 0.9996704, 'index': 289, 'word': 'Mu', 'start': 687, 'end': 689}, {'entity': 'I-PER', 'score': 0.98882616, 'index': 290, 'word': '##lla', 'start': 689, 'end': 692}, {'entity': 'I-PER', 'score': 0.94717425, 'index': 291, 'word': '##lly', 'start': 692, 'end': 695}, {'entity': 'I-PER', 'score': 0.9995529, 'index': 299, 'word': 'Was', 'start': 713, 'end': 716}, {'entity': 'I-PER', 'score': 0.99972075, 'index': 300, 'word': '##im', 'start': 716, 'end': 718}, {'entity': 'I-PER', 'score': 0.99979156, 'index': 301, 'word': 'A', 'start': 719, 'end': 720}, {'entity': 'I-PER', 'score': 0.98940456, 'index': 302, 'word': '##kra', 'start': 720, 'end': 723}, {'entity': 'I-PER', 'score': 0.99880064, 'index': 303, 'word': '##m', 'start': 723, 'end': 724}, {'entity': 'I-PER', 'score': 0.99974734, 'index': 312, 'word': 'W', 'start': 737, 'end': 738}, {'entity': 'I-PER', 'score': 0.99930394, 'index': 313, 'word': '##aq', 'start': 738, 'end': 740}, {'entity': 'I-PER', 'score': 0.99958426, 'index': 314, 'word': '##ar', 'start': 740, 'end': 742}, {'entity': 'I-PER', 'score': 0.9997726, 'index': 315, 'word': 'You', 'start': 743, 'end': 746}, {'entity': 'I-PER', 'score': 0.99933004, 'index': 316, 'word': '##nis', 'start': 746, 'end': 749}, {'entity': 'I-PER', 'score': 0.99973124, 'index': 329, 'word': 'At', 'start': 766, 'end': 768}, {'entity': 'I-PER', 'score': 0.9986406, 'index': 330, 'word': '##a', 'start': 768, 'end': 769}, {'entity': 'I-PER', 'score': 0.854229, 'index': 331, 'word': '-', 'start': 769, 'end': 770}, {'entity': 'I-PER', 'score': 0.99928916, 'index': 332, 'word': 'u', 'start': 770, 'end': 771}, {'entity': 'I-PER', 'score': 0.99835855, 'index': 333, 'word': '##r', 'start': 771, 'end': 772}, {'entity': 'I-PER', 'score': 0.9994149, 'index': 335, 'word': 'Re', 'start': 773, 'end': 775}, {'entity': 'I-PER', 'score': 0.9993407, 'index': 336, 'word': '##hman', 'start': 775, 'end': 779}, {'entity': 'I-PER', 'score': 0.99968016, 'index': 345, 'word': 'Sa', 'start': 791, 'end': 793}, {'entity': 'I-PER', 'score': 0.9981152, 'index': 346, 'word': '##q', 'start': 793, 'end': 794}, {'entity': 'I-PER', 'score': 0.9995369, 'index': 347, 'word': '##lain', 'start': 794, 'end': 798}, {'entity': 'I-PER', 'score': 0.99973124, 'index': 348, 'word': 'Mu', 'start': 799, 'end': 801}, {'entity': 'I-PER', 'score': 0.98493576, 'index': 349, 'word': '##sh', 'start': 801, 'end': 803}, {'entity': 'I-PER', 'score': 0.77228737, 'index': 350, 'word': '##ta', 'start': 803, 'end': 805}, {'entity': 'I-PER', 'score': 0.9991897, 'index': 351, 'word': '##q', 'start': 805, 'end': 806}, {'entity': 'I-PER', 'score': 0.99975544, 'index': 360, 'word': 'Mu', 'start': 819, 'end': 821}, {'entity': 'I-PER', 'score': 0.9974252, 'index': 361, 'word': '##sh', 'start': 821, 'end': 823}, {'entity': 'I-PER', 'score': 0.94404614, 'index': 362, 'word': '##ta', 'start': 823, 'end': 825}, {'entity': 'I-PER', 'score': 0.99960977, 'index': 363, 'word': '##q', 'start': 825, 'end': 826}, {'entity': 'I-PER', 'score': 0.99975866, 'index': 364, 'word': 'Ahmed', 'start': 827, 'end': 832}, {'entity': 'I-PER', 'score': 0.99973506, 'index': 377, 'word': 'A', 'start': 850, 'end': 851}, {'entity': 'I-PER', 'score': 0.9995395, 'index': 378, 'word': '##ami', 'start': 851, 'end': 854}, {'entity': 'I-PER', 'score': 0.99967015, 'index': 379, 'word': '##r', 'start': 854, 'end': 855}, {'entity': 'I-PER', 'score': 0.9997701, 'index': 380, 'word': 'So', 'start': 856, 'end': 858}, {'entity': 'I-PER', 'score': 0.9973014, 'index': 381, 'word': '##hai', 'start': 858, 'end': 861}, {'entity': 'I-PER', 'score': 0.9973961, 'index': 382, 'word': '##l', 'start': 861, 'end': 862}, {'entity': 'I-PER', 'score': 0.9956222, 'index': 393, 'word': 'S', 'start': 876, 'end': 877}, {'entity': 'I-PER', 'score': 0.9733044, 'index': 396, 'word': '##aki', 'start': 880, 'end': 883}, {'entity': 'I-PER', 'score': 0.99864596, 'index': 397, 'word': '##stan', 'start': 883, 'end': 887}, {'entity': 'I-PER', 'score': 0.99787426, 'index': 400, 'word': 'S', 'start': 890, 'end': 891}, {'entity': 'I-PER', 'score': 0.9983335, 'index': 402, 'word': 'Sa', 'start': 893, 'end': 895}, {'entity': 'I-PER', 'score': 0.9994648, 'index': 404, 'word': 'An', 'start': 899, 'end': 901}, {'entity': 'I-PER', 'score': 0.9975579, 'index': 405, 'word': '##war', 'start': 901, 'end': 904}, {'entity': 'I-PER', 'score': 0.99895287, 'index': 407, 'word': 'Stewart', 'start': 907, 'end': 914}, {'entity': 'I-PER', 'score': 0.895515, 'index': 410, 'word': '##ugh', 'start': 919, 'end': 922}, {'entity': 'I-PER', 'score': 0.8973166, 'index': 414, 'word': 'S', 'start': 928, 'end': 929}, {'entity': 'I-PER', 'score': 0.9981406, 'index': 417, 'word': '##ami', 'start': 932, 'end': 935}, {'entity': 'I-PER', 'score': 0.57787746, 'index': 418, 'word': '##r', 'start': 935, 'end': 936}, {'entity': 'I-PER', 'score': 0.99909246, 'index': 419, 'word': 'So', 'start': 937, 'end': 939}, {'entity': 'I-PER', 'score': 0.9873717, 'index': 420, 'word': '##hai', 'start': 939, 'end': 942}, {'entity': 'I-PER', 'score': 0.765722, 'index': 421, 'word': '##l', 'start': 942, 'end': 943}, {'entity': 'I-PER', 'score': 0.9985448, 'index': 423, 'word': 'C', 'start': 946, 'end': 947}, {'entity': 'I-PER', 'score': 0.99036217, 'index': 424, 'word': '##roft', 'start': 947, 'end': 951}, {'entity': 'I-PER', 'score': 0.9978371, 'index': 426, 'word': 'Go', 'start': 954, 'end': 956}, {'entity': 'I-PER', 'score': 0.6090241, 'index': 427, 'word': '##ugh', 'start': 956, 'end': 959}, {'entity': 'I-PER', 'score': 0.9983039, 'index': 431, 'word': 'S', 'start': 964, 'end': 965}, {'entity': 'I-PER', 'score': 0.9995109, 'index': 433, 'word': 'Mo', 'start': 967, 'end': 969}, {'entity': 'I-PER', 'score': 0.995069, 'index': 434, 'word': '##in', 'start': 969, 'end': 971}, {'entity': 'I-PER', 'score': 0.9994815, 'index': 435, 'word': 'Khan', 'start': 972, 'end': 976}, {'entity': 'I-PER', 'score': 0.9992489, 'index': 439, 'word': 'Mu', 'start': 983, 'end': 985}, {'entity': 'I-PER', 'score': 0.95709145, 'index': 440, 'word': '##lla', 'start': 985, 'end': 988}, {'entity': 'I-PER', 'score': 0.70082325, 'index': 441, 'word': '##lly', 'start': 988, 'end': 991}, {'entity': 'I-PER', 'score': 0.8387059, 'index': 445, 'word': 'S', 'start': 996, 'end': 997}, {'entity': 'I-PER', 'score': 0.98748803, 'index': 447, 'word': 'I', 'start': 999, 'end': 1000}, {'entity': 'I-PER', 'score': 0.9881362, 'index': 448, 'word': '##ja', 'start': 1000, 'end': 1002}, {'entity': 'I-PER', 'score': 0.94659775, 'index': 449, 'word': '##z', 'start': 1002, 'end': 1003}, {'entity': 'I-PER', 'score': 0.9985441, 'index': 450, 'word': 'Ahmed', 'start': 1004, 'end': 1009}, {'entity': 'I-PER', 'score': 0.995555, 'index': 452, 'word': 'C', 'start': 1012, 'end': 1013}, {'entity': 'I-PER', 'score': 0.9979955, 'index': 453, 'word': '##roft', 'start': 1013, 'end': 1017}, {'entity': 'I-PER', 'score': 0.7883702, 'index': 457, 'word': 'S', 'start': 1023, 'end': 1024}, {'entity': 'I-PER', 'score': 0.9971468, 'index': 460, 'word': '##zam', 'start': 1028, 'end': 1031}, {'entity': 'I-PER', 'score': 0.9856674, 'index': 465, 'word': 'Ha', 'start': 1037, 'end': 1039}, {'entity': 'I-PER', 'score': 0.98055893, 'index': 466, 'word': '##q', 'start': 1039, 'end': 1040}, {'entity': 'I-PER', 'score': 0.9995426, 'index': 468, 'word': 'Thorpe', 'start': 1043, 'end': 1049}, {'entity': 'I-PER', 'score': 0.97752905, 'index': 470, 'word': 'C', 'start': 1052, 'end': 1053}, {'entity': 'I-PER', 'score': 0.9914443, 'index': 471, 'word': '##roft', 'start': 1053, 'end': 1057}, {'entity': 'I-PER', 'score': 0.9984666, 'index': 475, 'word': 'S', 'start': 1062, 'end': 1063}, {'entity': 'I-PER', 'score': 0.99941087, 'index': 477, 'word': 'Sal', 'start': 1065, 'end': 1068}, {'entity': 'I-PER', 'score': 0.9994717, 'index': 478, 'word': '##im', 'start': 1068, 'end': 1070}, {'entity': 'I-PER', 'score': 0.99919623, 'index': 479, 'word': 'Malik', 'start': 1071, 'end': 1076}, {'entity': 'I-PER', 'score': 0.9987185, 'index': 481, 'word': 'Stewart', 'start': 1079, 'end': 1086}, {'entity': 'I-PER', 'score': 0.99860746, 'index': 483, 'word': 'Ho', 'start': 1089, 'end': 1091}, {'entity': 'I-PER', 'score': 0.93214387, 'index': 484, 'word': '##lli', 'start': 1091, 'end': 1094}, {'entity': 'I-PER', 'score': 0.9623352, 'index': 485, 'word': '##oa', 'start': 1094, 'end': 1096}, {'entity': 'I-PER', 'score': 0.9786598, 'index': 486, 'word': '##ke', 'start': 1096, 'end': 1098}, {'entity': 'I-PER', 'score': 0.9948019, 'index': 490, 'word': 'S', 'start': 1104, 'end': 1105}, {'entity': 'I-PER', 'score': 0.9986331, 'index': 492, 'word': 'Was', 'start': 1107, 'end': 1110}, {'entity': 'I-PER', 'score': 0.9993647, 'index': 493, 'word': '##im', 'start': 1110, 'end': 1112}, {'entity': 'I-PER', 'score': 0.90911293, 'index': 495, 'word': '##kra', 'start': 1114, 'end': 1117}, {'entity': 'I-PER', 'score': 0.9975019, 'index': 496, 'word': '##m', 'start': 1117, 'end': 1118}, {'entity': 'I-PER', 'score': 0.9992912, 'index': 498, 'word': 'Knight', 'start': 1121, 'end': 1127}, {'entity': 'I-PER', 'score': 0.99889874, 'index': 500, 'word': 'Ho', 'start': 1130, 'end': 1132}, {'entity': 'I-PER', 'score': 0.95169955, 'index': 501, 'word': '##lli', 'start': 1132, 'end': 1135}, {'entity': 'I-PER', 'score': 0.9591907, 'index': 502, 'word': '##oa', 'start': 1135, 'end': 1137}, {'entity': 'I-PER', 'score': 0.99618655, 'index': 503, 'word': '##ke', 'start': 1137, 'end': 1139}, {'entity': 'I-PER', 'score': 0.9600876, 'index': 507, 'word': 'S', 'start': 1145, 'end': 1146}, {'entity': 'I-PER', 'score': 0.9995351, 'index': 509, 'word': 'Mu', 'start': 1148, 'end': 1150}, {'entity': 'I-PER', 'score': 0.992605, 'index': 510, 'word': '##sh', 'start': 1150, 'end': 1152}]
[{'entity': 'I-MISC', 'score': 0.49401698, 'index': 18, 'word': '##H', 'start': 31, 'end': 32}, {'entity': 'I-LOC', 'score': 0.9912307, 'index': 30, 'word': 'MA', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.92466986, 'index': 31, 'word': '##NC', 'start': 52, 'end': 54}, {'entity': 'I-LOC', 'score': 0.90542305, 'index': 32, 'word': '##H', 'start': 54, 'end': 55}, {'entity': 'I-LOC', 'score': 0.91127616, 'index': 33, 'word': '##ES', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.8917393, 'index': 34, 'word': '##TE', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.92687654, 'index': 35, 'word': '##R', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.99981076, 'index': 37, 'word': 'England', 'start': 63, 'end': 70}, {'entity': 'I-MISC', 'score': 0.9339382, 'index': 53, 'word': 'S', 'start': 110, 'end': 111}, {'entity': 'I-PER', 'score': 0.9997342, 'index': 94, 'word': 'Anton', 'start': 269, 'end': 274}, {'entity': 'I-PER', 'score': 0.9997067, 'index': 95, 'word': '##ella', 'start': 274, 'end': 278}, {'entity': 'I-PER', 'score': 0.9996284, 'index': 96, 'word': 'Bell', 'start': 279, 'end': 283}, {'entity': 'I-PER', 'score': 0.9952018, 'index': 97, 'word': '##utt', 'start': 283, 'end': 286}, {'entity': 'I-PER', 'score': 0.9952626, 'index': 98, 'word': '##i', 'start': 286, 'end': 287}, {'entity': 'I-LOC', 'score': 0.9998647, 'index': 100, 'word': 'Italy', 'start': 290, 'end': 295}, {'entity': 'I-PER', 'score': 0.9997892, 'index': 118, 'word': 'Marion', 'start': 332, 'end': 338}, {'entity': 'I-PER', 'score': 0.9998456, 'index': 119, 'word': 'C', 'start': 339, 'end': 340}, {'entity': 'I-PER', 'score': 0.99776745, 'index': 120, 'word': '##li', 'start': 340, 'end': 342}, {'entity': 'I-PER', 'score': 0.9985312, 'index': 121, 'word': '##gne', 'start': 342, 'end': 345}, {'entity': 'I-PER', 'score': 0.99966, 'index': 122, 'word': '##t', 'start': 345, 'end': 346}, {'entity': 'I-LOC', 'score': 0.9998455, 'index': 124, 'word': 'France', 'start': 349, 'end': 355}, {'entity': 'I-PER', 'score': 0.999767, 'index': 138, 'word': 'Lucy', 'start': 375, 'end': 379}, {'entity': 'I-PER', 'score': 0.9998072, 'index': 139, 'word': 'Tyler', 'start': 380, 'end': 385}, {'entity': 'I-PER', 'score': 0.9252991, 'index': 140, 'word': '-', 'start': 385, 'end': 386}, {'entity': 'I-PER', 'score': 0.9996635, 'index': 141, 'word': 'Sharma', 'start': 386, 'end': 392}, {'entity': 'I-PER', 'score': 0.99885297, 'index': 142, 'word': '##n', 'start': 392, 'end': 393}, {'entity': 'I-LOC', 'score': 0.9998437, 'index': 144, 'word': 'Australia', 'start': 396, 'end': 405}, {'entity': 'I-PER', 'score': 0.9998022, 'index': 158, 'word': 'Yvonne', 'start': 425, 'end': 431}, {'entity': 'I-PER', 'score': 0.9998586, 'index': 159, 'word': 'McGregor', 'start': 432, 'end': 440}, {'entity': 'I-LOC', 'score': 0.9998623, 'index': 161, 'word': 'Britain', 'start': 443, 'end': 450}, {'entity': 'I-PER', 'score': 0.9997391, 'index': 175, 'word': 'Natalia', 'start': 470, 'end': 477}, {'entity': 'I-PER', 'score': 0.9998029, 'index': 176, 'word': 'Ka', 'start': 478, 'end': 480}, {'entity': 'I-PER', 'score': 0.9996836, 'index': 177, 'word': '##rim', 'start': 480, 'end': 483}, {'entity': 'I-PER', 'score': 0.9996599, 'index': 178, 'word': '##ova', 'start': 483, 'end': 486}, {'entity': 'I-LOC', 'score': 0.99982375, 'index': 180, 'word': 'Russia', 'start': 489, 'end': 495}, {'entity': 'I-PER', 'score': 0.9996847, 'index': 194, 'word': 'S', 'start': 515, 'end': 516}, {'entity': 'I-PER', 'score': 0.9995579, 'index': 195, 'word': '##vet', 'start': 516, 'end': 519}, {'entity': 'I-PER', 'score': 0.9996468, 'index': 196, 'word': '##lana', 'start': 519, 'end': 523}, {'entity': 'I-PER', 'score': 0.9997509, 'index': 197, 'word': 'Sam', 'start': 524, 'end': 527}, {'entity': 'I-PER', 'score': 0.9989863, 'index': 198, 'word': '##ok', 'start': 527, 'end': 529}, {'entity': 'I-PER', 'score': 0.998467, 'index': 199, 'word': '##hal', 'start': 529, 'end': 532}, {'entity': 'I-PER', 'score': 0.9992512, 'index': 200, 'word': '##ova', 'start': 532, 'end': 535}, {'entity': 'I-LOC', 'score': 0.9998739, 'index': 202, 'word': 'Russia', 'start': 538, 'end': 544}, {'entity': 'I-PER', 'score': 0.99977463, 'index': 214, 'word': 'Jane', 'start': 563, 'end': 567}, {'entity': 'I-PER', 'score': 0.9998388, 'index': 215, 'word': 'Q', 'start': 568, 'end': 569}, {'entity': 'I-PER', 'score': 0.9972621, 'index': 216, 'word': '##ui', 'start': 569, 'end': 571}, {'entity': 'I-PER', 'score': 0.999642, 'index': 217, 'word': '##gley', 'start': 571, 'end': 575}, {'entity': 'I-LOC', 'score': 0.9997931, 'index': 219, 'word': 'U', 'start': 578, 'end': 579}, {'entity': 'I-LOC', 'score': 0.9997892, 'index': 221, 'word': 'S', 'start': 580, 'end': 581}, {'entity': 'I-LOC', 'score': 0.49340892, 'index': 222, 'word': '.', 'start': 581, 'end': 582}, {'entity': 'I-PER', 'score': 0.9997403, 'index': 236, 'word': 'Ra', 'start': 602, 'end': 604}, {'entity': 'I-PER', 'score': 0.99967456, 'index': 237, 'word': '##sa', 'start': 604, 'end': 606}, {'entity': 'I-PER', 'score': 0.99975127, 'index': 238, 'word': 'Ma', 'start': 607, 'end': 609}, {'entity': 'I-PER', 'score': 0.99614185, 'index': 239, 'word': '##ze', 'start': 609, 'end': 611}, {'entity': 'I-PER', 'score': 0.99514467, 'index': 240, 'word': '##ik', 'start': 611, 'end': 613}, {'entity': 'I-PER', 'score': 0.99225414, 'index': 241, 'word': '##yte', 'start': 613, 'end': 616}, {'entity': 'I-LOC', 'score': 0.9997898, 'index': 243, 'word': 'Lithuania', 'start': 619, 'end': 628}, {'entity': 'I-PER', 'score': 0.9997329, 'index': 257, 'word': 'Ta', 'start': 648, 'end': 650}, {'entity': 'I-PER', 'score': 0.9996797, 'index': 258, 'word': '##tian', 'start': 650, 'end': 654}, {'entity': 'I-PER', 'score': 0.9997638, 'index': 259, 'word': 'St', 'start': 655, 'end': 657}, {'entity': 'I-PER', 'score': 0.99042386, 'index': 260, 'word': '##ia', 'start': 657, 'end': 659}, {'entity': 'I-PER', 'score': 0.9978132, 'index': 261, 'word': '##jk', 'start': 659, 'end': 661}, {'entity': 'I-PER', 'score': 0.99586993, 'index': 262, 'word': '##ina', 'start': 661, 'end': 664}, {'entity': 'I-LOC', 'score': 0.999728, 'index': 264, 'word': 'Ukraine', 'start': 667, 'end': 674}, {'entity': 'I-MISC', 'score': 0.9115253, 'index': 275, 'word': 'World', 'start': 691, 'end': 696}, {'entity': 'I-LOC', 'score': 0.9993018, 'index': 288, 'word': 'Italy', 'start': 741, 'end': 746}, {'entity': 'I-PER', 'score': 0.9995555, 'index': 290, 'word': 'Adler', 'start': 749, 'end': 754}, {'entity': 'I-PER', 'score': 0.99963164, 'index': 291, 'word': 'Cape', 'start': 755, 'end': 759}, {'entity': 'I-PER', 'score': 0.9959591, 'index': 292, 'word': '##lli', 'start': 759, 'end': 762}, {'entity': 'I-PER', 'score': 0.9997764, 'index': 294, 'word': 'C', 'start': 765, 'end': 766}, {'entity': 'I-PER', 'score': 0.99971336, 'index': 295, 'word': '##rist', 'start': 766, 'end': 770}, {'entity': 'I-PER', 'score': 0.9996644, 'index': 296, 'word': '##iano', 'start': 770, 'end': 774}, {'entity': 'I-PER', 'score': 0.99974984, 'index': 297, 'word': 'C', 'start': 775, 'end': 776}, {'entity': 'I-PER', 'score': 0.9953767, 'index': 298, 'word': '##itt', 'start': 776, 'end': 779}, {'entity': 'I-PER', 'score': 0.99809843, 'index': 299, 'word': '##o', 'start': 779, 'end': 780}, {'entity': 'I-PER', 'score': 0.9997074, 'index': 301, 'word': 'Andrea', 'start': 783, 'end': 789}, {'entity': 'I-PER', 'score': 0.99975604, 'index': 302, 'word': 'Collin', 'start': 790, 'end': 796}, {'entity': 'I-PER', 'score': 0.99862623, 'index': 303, 'word': '##elli', 'start': 796, 'end': 800}, {'entity': 'I-PER', 'score': 0.999688, 'index': 305, 'word': 'Ma', 'start': 803, 'end': 805}, {'entity': 'I-PER', 'score': 0.99966705, 'index': 306, 'word': '##uro', 'start': 805, 'end': 808}, {'entity': 'I-PER', 'score': 0.9997378, 'index': 307, 'word': 'Trent', 'start': 809, 'end': 814}, {'entity': 'I-PER', 'score': 0.99689144, 'index': 308, 'word': '##ino', 'start': 814, 'end': 817}, {'entity': 'I-LOC', 'score': 0.9996451, 'index': 321, 'word': 'Russia', 'start': 851, 'end': 857}, {'entity': 'I-PER', 'score': 0.9997563, 'index': 323, 'word': 'Anton', 'start': 860, 'end': 865}, {'entity': 'I-PER', 'score': 0.9997011, 'index': 324, 'word': 'Chan', 'start': 866, 'end': 870}, {'entity': 'I-PER', 'score': 0.9843753, 'index': 325, 'word': '##ty', 'start': 870, 'end': 872}, {'entity': 'I-PER', 'score': 0.9942642, 'index': 326, 'word': '##r', 'start': 872, 'end': 873}, {'entity': 'I-PER', 'score': 0.9997837, 'index': 328, 'word': 'Edo', 'start': 876, 'end': 879}, {'entity': 'I-PER', 'score': 0.99974257, 'index': 329, 'word': '##uard', 'start': 879, 'end': 883}, {'entity': 'I-PER', 'score': 0.99981004, 'index': 330, 'word': 'G', 'start': 884, 'end': 885}, {'entity': 'I-PER', 'score': 0.99863356, 'index': 331, 'word': '##rits', 'start': 885, 'end': 889}, {'entity': 'I-PER', 'score': 0.94080395, 'index': 332, 'word': '##ou', 'start': 889, 'end': 891}, {'entity': 'I-PER', 'score': 0.9955729, 'index': 333, 'word': '##n', 'start': 891, 'end': 892}, {'entity': 'I-PER', 'score': 0.9996921, 'index': 335, 'word': 'Nikolai', 'start': 895, 'end': 902}, {'entity': 'I-PER', 'score': 0.9996233, 'index': 336, 'word': 'Ko', 'start': 903, 'end': 905}, {'entity': 'I-PER', 'score': 0.72610617, 'index': 337, 'word': '##uz', 'start': 905, 'end': 907}, {'entity': 'I-PER', 'score': 0.9824974, 'index': 338, 'word': '##nets', 'start': 907, 'end': 911}, {'entity': 'I-PER', 'score': 0.96969384, 'index': 339, 'word': '##ov', 'start': 911, 'end': 913}, {'entity': 'I-LOC', 'score': 0.99952865, 'index': 352, 'word': 'France', 'start': 932, 'end': 938}, {'entity': 'I-PER', 'score': 0.99966645, 'index': 354, 'word': 'Cyril', 'start': 941, 'end': 946}, {'entity': 'I-PER', 'score': 0.99973243, 'index': 355, 'word': 'Bo', 'start': 947, 'end': 949}, {'entity': 'I-PER', 'score': 0.9984457, 'index': 356, 'word': '##s', 'start': 949, 'end': 950}, {'entity': 'I-PER', 'score': 0.9997607, 'index': 358, 'word': 'Philippe', 'start': 953, 'end': 961}, {'entity': 'I-PER', 'score': 0.9998186, 'index': 359, 'word': 'E', 'start': 962, 'end': 963}, {'entity': 'I-PER', 'score': 0.99872714, 'index': 360, 'word': '##rm', 'start': 963, 'end': 965}, {'entity': 'I-PER', 'score': 0.95991445, 'index': 361, 'word': '##ena', 'start': 965, 'end': 968}, {'entity': 'I-PER', 'score': 0.99935836, 'index': 362, 'word': '##ult', 'start': 968, 'end': 971}, {'entity': 'I-PER', 'score': 0.9997377, 'index': 364, 'word': 'Jean', 'start': 974, 'end': 978}, {'entity': 'I-PER', 'score': 0.9971433, 'index': 365, 'word': '-', 'start': 978, 'end': 979}, {'entity': 'I-PER', 'score': 0.99975616, 'index': 366, 'word': 'Michel', 'start': 979, 'end': 985}, {'entity': 'I-PER', 'score': 0.9998035, 'index': 367, 'word': 'Mon', 'start': 986, 'end': 989}, {'entity': 'I-PER', 'score': 0.99929655, 'index': 368, 'word': '##in', 'start': 989, 'end': 991}, {'entity': 'I-PER', 'score': 0.99972695, 'index': 370, 'word': 'Francis', 'start': 994, 'end': 1001}, {'entity': 'I-PER', 'score': 0.99974245, 'index': 371, 'word': 'More', 'start': 1002, 'end': 1006}, {'entity': 'I-PER', 'score': 0.9993524, 'index': 372, 'word': '##au', 'start': 1006, 'end': 1008}, {'entity': 'I-LOC', 'score': 0.9996605, 'index': 380, 'word': 'Germany', 'start': 1025, 'end': 1032}, {'entity': 'I-PER', 'score': 0.9997061, 'index': 382, 'word': 'Guido', 'start': 1035, 'end': 1040}, {'entity': 'I-PER', 'score': 0.99979264, 'index': 383, 'word': 'Fu', 'start': 1041, 'end': 1043}, {'entity': 'I-PER', 'score': 0.9997367, 'index': 392, 'word': 'Thor', 'start': 1064, 'end': 1068}, {'entity': 'I-PER', 'score': 0.96557593, 'index': 397, 'word': 'He', 'start': 1080, 'end': 1082}, {'entity': 'I-PER', 'score': 0.86187243, 'index': 398, 'word': '##iko', 'start': 1082, 'end': 1085}, {'entity': 'I-LOC', 'score': 0.3277037, 'index': 399, 'word': 'S', 'start': 1086, 'end': 1087}, {'entity': 'I-PER', 'score': 0.43887419, 'index': 400, 'word': '##zon', 'start': 1087, 'end': 1090}, {'entity': 'I-LOC', 'score': 0.9995809, 'index': 413, 'word': 'Germany', 'start': 1108, 'end': 1115}, {'entity': 'I-PER', 'score': 0.6776476, 'index': 444, 'word': 'Fe', 'start': 1229, 'end': 1231}, {'entity': 'I-PER', 'score': 0.44344288, 'index': 445, 'word': '##lic', 'start': 1231, 'end': 1234}, {'entity': 'I-PER', 'score': 0.85549825, 'index': 447, 'word': 'Ball', 'start': 1237, 'end': 1241}, {'entity': 'I-LOC', 'score': 0.99940646, 'index': 450, 'word': 'France', 'start': 1249, 'end': 1255}, {'entity': 'I-PER', 'score': 0.9988134, 'index': 462, 'word': 'Anne', 'start': 1273, 'end': 1277}, {'entity': 'I-PER', 'score': 0.9876512, 'index': 464, 'word': 'Neumann', 'start': 1280, 'end': 1287}, {'entity': 'I-LOC', 'score': 0.9995896, 'index': 466, 'word': 'Germany', 'start': 1290, 'end': 1297}, {'entity': 'I-PER', 'score': 0.9733915, 'index': 477, 'word': 'Michelle', 'start': 1315, 'end': 1323}, {'entity': 'I-LOC', 'score': 0.9993513, 'index': 480, 'word': 'Australia', 'start': 1333, 'end': 1342}, {'entity': 'I-PER', 'score': 0.78430134, 'index': 492, 'word': 'Ma', 'start': 1360, 'end': 1362}, {'entity': 'I-PER', 'score': 0.38429973, 'index': 493, 'word': '##gal', 'start': 1362, 'end': 1365}, {'entity': 'I-ORG', 'score': 0.5121389, 'index': 495, 'word': 'F', 'start': 1367, 'end': 1368}, {'entity': 'I-LOC', 'score': 0.9986804, 'index': 499, 'word': 'France', 'start': 1375, 'end': 1381}]
[{'entity': 'I-LOC', 'score': 0.9988741, 'index': 6, 'word': 'PA', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.9955598, 'index': 7, 'word': '##K', 'start': 12, 'end': 13}, {'entity': 'I-LOC', 'score': 0.9874741, 'index': 8, 'word': '##IS', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.99088776, 'index': 9, 'word': '##TA', 'start': 15, 'end': 17}, {'entity': 'I-LOC', 'score': 0.98909086, 'index': 10, 'word': '##N', 'start': 17, 'end': 18}, {'entity': 'I-LOC', 'score': 0.99901605, 'index': 18, 'word': 'E', 'start': 34, 'end': 35}, {'entity': 'I-LOC', 'score': 0.9918738, 'index': 19, 'word': '##NG', 'start': 35, 'end': 37}, {'entity': 'I-LOC', 'score': 0.9909093, 'index': 20, 'word': '##LA', 'start': 37, 'end': 39}, {'entity': 'I-LOC', 'score': 0.9978161, 'index': 21, 'word': '##ND', 'start': 39, 'end': 41}, {'entity': 'I-LOC', 'score': 0.9977748, 'index': 31, 'word': 'B', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9580684, 'index': 32, 'word': '##IR', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9957979, 'index': 33, 'word': '##MI', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.96439326, 'index': 34, 'word': '##NG', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.9565112, 'index': 35, 'word': '##HA', 'start': 66, 'end': 68}, {'entity': 'I-LOC', 'score': 0.99660134, 'index': 36, 'word': '##M', 'start': 68, 'end': 69}, {'entity': 'I-LOC', 'score': 0.99985206, 'index': 38, 'word': 'England', 'start': 72, 'end': 79}, {'entity': 'I-LOC', 'score': 0.99981767, 'index': 48, 'word': 'Pakistan', 'start': 96, 'end': 104}, {'entity': 'I-LOC', 'score': 0.99982065, 'index': 54, 'word': 'England', 'start': 126, 'end': 133}, {'entity': 'I-LOC', 'score': 0.9991002, 'index': 66, 'word': 'Ed', 'start': 197, 'end': 199}, {'entity': 'I-LOC', 'score': 0.9967505, 'index': 67, 'word': '##g', 'start': 199, 'end': 200}, {'entity': 'I-LOC', 'score': 0.99832696, 'index': 68, 'word': '##bas', 'start': 200, 'end': 203}, {'entity': 'I-LOC', 'score': 0.99786514, 'index': 69, 'word': '##ton', 'start': 203, 'end': 206}, {'entity': 'I-ORG', 'score': 0.99885845, 'index': 77, 'word': 'Surrey', 'start': 226, 'end': 232}, {'entity': 'I-PER', 'score': 0.99977165, 'index': 82, 'word': 'Adam', 'start': 245, 'end': 249}, {'entity': 'I-PER', 'score': 0.9997538, 'index': 83, 'word': 'Ho', 'start': 250, 'end': 252}, {'entity': 'I-PER', 'score': 0.98696184, 'index': 84, 'word': '##lli', 'start': 252, 'end': 255}, {'entity': 'I-PER', 'score': 0.89797187, 'index': 85, 'word': '##oa', 'start': 255, 'end': 257}, {'entity': 'I-PER', 'score': 0.99532557, 'index': 86, 'word': '##ke', 'start': 257, 'end': 259}, {'entity': 'I-LOC', 'score': 0.9995245, 'index': 90, 'word': 'England', 'start': 275, 'end': 282}, {'entity': 'I-ORG', 'score': 0.99932086, 'index': 94, 'word': 'Lancashire', 'start': 301, 'end': 311}, {'entity': 'I-PER', 'score': 0.99973696, 'index': 96, 'word': 'Graham', 'start': 320, 'end': 326}, {'entity': 'I-PER', 'score': 0.99984026, 'index': 97, 'word': 'Lloyd', 'start': 327, 'end': 332}, {'entity': 'I-PER', 'score': 0.9997694, 'index': 102, 'word': 'Peter', 'start': 347, 'end': 352}, {'entity': 'I-PER', 'score': 0.9998419, 'index': 103, 'word': 'Martin', 'start': 353, 'end': 359}, {'entity': 'I-LOC', 'score': 0.99983466, 'index': 115, 'word': 'Pakistan', 'start': 399, 'end': 407}, {'entity': 'I-LOC', 'score': 0.99980897, 'index': 122, 'word': 'England', 'start': 434, 'end': 441}, {'entity': 'I-LOC', 'score': 0.99879885, 'index': 127, 'word': 'Old', 'start': 461, 'end': 464}, {'entity': 'I-LOC', 'score': 0.99817514, 'index': 128, 'word': 'T', 'start': 465, 'end': 466}, {'entity': 'I-LOC', 'score': 0.99808156, 'index': 129, 'word': '##rafford', 'start': 466, 'end': 473}, {'entity': 'I-LOC', 'score': 0.99962294, 'index': 153, 'word': 'England', 'start': 548, 'end': 555}, {'entity': 'I-PER', 'score': 0.999765, 'index': 155, 'word': 'Mike', 'start': 558, 'end': 562}, {'entity': 'I-PER', 'score': 0.99967635, 'index': 156, 'word': 'At', 'start': 563, 'end': 565}, {'entity': 'I-PER', 'score': 0.9880266, 'index': 157, 'word': '##her', 'start': 565, 'end': 568}, {'entity': 'I-PER', 'score': 0.9974904, 'index': 158, 'word': '##ton', 'start': 568, 'end': 571}, {'entity': 'I-PER', 'score': 0.9997664, 'index': 163, 'word': 'Nick', 'start': 586, 'end': 590}, {'entity': 'I-PER', 'score': 0.9998185, 'index': 164, 'word': 'Knight', 'start': 591, 'end': 597}, {'entity': 'I-PER', 'score': 0.99977475, 'index': 166, 'word': 'Alec', 'start': 600, 'end': 604}, {'entity': 'I-PER', 'score': 0.99982244, 'index': 167, 'word': 'Stewart', 'start': 605, 'end': 612}, {'entity': 'I-PER', 'score': 0.9997583, 'index': 169, 'word': 'Graham', 'start': 615, 'end': 621}, {'entity': 'I-PER', 'score': 0.9998022, 'index': 170, 'word': 'Thorpe', 'start': 622, 'end': 628}, {'entity': 'I-PER', 'score': 0.9997842, 'index': 172, 'word': 'Matthew', 'start': 631, 'end': 638}, {'entity': 'I-PER', 'score': 0.99982363, 'index': 173, 'word': 'Maynard', 'start': 639, 'end': 646}, {'entity': 'I-PER', 'score': 0.99979264, 'index': 175, 'word': 'Adam', 'start': 649, 'end': 653}, {'entity': 'I-PER', 'score': 0.9997118, 'index': 176, 'word': 'Ho', 'start': 654, 'end': 656}, {'entity': 'I-PER', 'score': 0.992879, 'index': 177, 'word': '##lli', 'start': 656, 'end': 659}, {'entity': 'I-PER', 'score': 0.9720581, 'index': 178, 'word': '##oa', 'start': 659, 'end': 661}, {'entity': 'I-PER', 'score': 0.98889416, 'index': 179, 'word': '##ke', 'start': 661, 'end': 663}, {'entity': 'I-PER', 'score': 0.9997758, 'index': 181, 'word': 'Ronnie', 'start': 666, 'end': 672}, {'entity': 'I-PER', 'score': 0.9995529, 'index': 182, 'word': 'Iran', 'start': 673, 'end': 677}, {'entity': 'I-PER', 'score': 0.9976464, 'index': 183, 'word': '##i', 'start': 677, 'end': 678}, {'entity': 'I-PER', 'score': 0.9997758, 'index': 185, 'word': 'Robert', 'start': 681, 'end': 687}, {'entity': 'I-PER', 'score': 0.9997588, 'index': 186, 'word': 'C', 'start': 688, 'end': 689}, {'entity': 'I-PER', 'score': 0.9996828, 'index': 187, 'word': '##roft', 'start': 689, 'end': 693}, {'entity': 'I-PER', 'score': 0.9997657, 'index': 189, 'word': 'Darren', 'start': 696, 'end': 702}, {'entity': 'I-PER', 'score': 0.99911135, 'index': 190, 'word': 'Go', 'start': 703, 'end': 705}, {'entity': 'I-PER', 'score': 0.99863106, 'index': 191, 'word': '##ugh', 'start': 705, 'end': 708}, {'entity': 'I-PER', 'score': 0.9997842, 'index': 193, 'word': 'Dean', 'start': 711, 'end': 715}, {'entity': 'I-PER', 'score': 0.9997584, 'index': 194, 'word': 'Head', 'start': 716, 'end': 720}, {'entity': 'I-PER', 'score': 0.9987728, 'index': 195, 'word': '##ley', 'start': 720, 'end': 723}, {'entity': 'I-PER', 'score': 0.9997644, 'index': 197, 'word': 'Alan', 'start': 726, 'end': 730}, {'entity': 'I-PER', 'score': 0.9996562, 'index': 198, 'word': 'Mu', 'start': 731, 'end': 733}, {'entity': 'I-PER', 'score': 0.9967243, 'index': 199, 'word': '##lla', 'start': 733, 'end': 736}, {'entity': 'I-PER', 'score': 0.9891481, 'index': 200, 'word': '##lly', 'start': 736, 'end': 739}, {'entity': 'I-LOC', 'score': 0.999752, 'index': 206, 'word': 'Pakistan', 'start': 747, 'end': 755}, {'entity': 'I-PER', 'score': 0.99971515, 'index': 208, 'word': 'A', 'start': 758, 'end': 759}, {'entity': 'I-PER', 'score': 0.9995881, 'index': 209, 'word': '##ami', 'start': 759, 'end': 762}, {'entity': 'I-PER', 'score': 0.9996958, 'index': 210, 'word': '##r', 'start': 762, 'end': 763}, {'entity': 'I-PER', 'score': 0.99973077, 'index': 211, 'word': 'So', 'start': 764, 'end': 766}, {'entity': 'I-PER', 'score': 0.9980413, 'index': 212, 'word': '##hai', 'start': 766, 'end': 769}, {'entity': 'I-PER', 'score': 0.9992428, 'index': 213, 'word': '##l', 'start': 769, 'end': 770}, {'entity': 'I-PER', 'score': 0.9997527, 'index': 215, 'word': 'Sa', 'start': 773, 'end': 775}, {'entity': 'I-PER', 'score': 0.9997017, 'index': 216, 'word': '##eed', 'start': 775, 'end': 778}, {'entity': 'I-PER', 'score': 0.9996327, 'index': 217, 'word': 'An', 'start': 779, 'end': 781}, {'entity': 'I-PER', 'score': 0.9996704, 'index': 218, 'word': '##war', 'start': 781, 'end': 784}, {'entity': 'I-PER', 'score': 0.9996037, 'index': 220, 'word': 'I', 'start': 787, 'end': 788}, {'entity': 'I-PER', 'score': 0.9994855, 'index': 221, 'word': '##ja', 'start': 788, 'end': 790}, {'entity': 'I-PER', 'score': 0.9996099, 'index': 222, 'word': '##z', 'start': 790, 'end': 791}, {'entity': 'I-PER', 'score': 0.9997732, 'index': 223, 'word': 'Ahmed', 'start': 792, 'end': 797}, {'entity': 'I-PER', 'score': 0.99973744, 'index': 225, 'word': 'Sal', 'start': 800, 'end': 803}, {'entity': 'I-PER', 'score': 0.9996736, 'index': 226, 'word': '##im', 'start': 803, 'end': 805}, {'entity': 'I-PER', 'score': 0.999785, 'index': 227, 'word': 'Malik', 'start': 806, 'end': 811}, {'entity': 'I-PER', 'score': 0.9996088, 'index': 229, 'word': 'In', 'start': 814, 'end': 816}, {'entity': 'I-PER', 'score': 0.9991592, 'index': 230, 'word': '##zam', 'start': 816, 'end': 819}, {'entity': 'I-PER', 'score': 0.99955803, 'index': 231, 'word': '##am', 'start': 819, 'end': 821}, {'entity': 'I-PER', 'score': 0.997145, 'index': 232, 'word': '-', 'start': 821, 'end': 822}, {'entity': 'I-PER', 'score': 0.9994993, 'index': 233, 'word': 'ul', 'start': 822, 'end': 824}, {'entity': 'I-PER', 'score': 0.9735092, 'index': 234, 'word': '-', 'start': 824, 'end': 825}, {'entity': 'I-PER', 'score': 0.99763405, 'index': 235, 'word': 'Ha', 'start': 825, 'end': 827}, {'entity': 'I-PER', 'score': 0.9995448, 'index': 236, 'word': '##q', 'start': 827, 'end': 828}, {'entity': 'I-PER', 'score': 0.9996618, 'index': 238, 'word': 'Was', 'start': 831, 'end': 834}, {'entity': 'I-PER', 'score': 0.99969614, 'index': 239, 'word': '##im', 'start': 834, 'end': 836}, {'entity': 'I-PER', 'score': 0.99969363, 'index': 240, 'word': 'A', 'start': 837, 'end': 838}, {'entity': 'I-PER', 'score': 0.99451536, 'index': 241, 'word': '##kra', 'start': 838, 'end': 841}, {'entity': 'I-PER', 'score': 0.998988, 'index': 242, 'word': '##m', 'start': 841, 'end': 842}, {'entity': 'I-PER', 'score': 0.9997725, 'index': 247, 'word': 'Mo', 'start': 857, 'end': 859}, {'entity': 'I-PER', 'score': 0.9996667, 'index': 248, 'word': '##in', 'start': 859, 'end': 861}, {'entity': 'I-PER', 'score': 0.99978334, 'index': 249, 'word': 'Khan', 'start': 862, 'end': 866}, {'entity': 'I-PER', 'score': 0.9995864, 'index': 251, 'word': 'Sa', 'start': 869, 'end': 871}, {'entity': 'I-PER', 'score': 0.9983531, 'index': 252, 'word': '##q', 'start': 871, 'end': 872}, {'entity': 'I-PER', 'score': 0.9995571, 'index': 253, 'word': '##lain', 'start': 872, 'end': 876}, {'entity': 'I-PER', 'score': 0.9995931, 'index': 254, 'word': 'Mu', 'start': 877, 'end': 879}, {'entity': 'I-PER', 'score': 0.9850162, 'index': 255, 'word': '##sh', 'start': 879, 'end': 881}, {'entity': 'I-PER', 'score': 0.65515757, 'index': 256, 'word': '##ta', 'start': 881, 'end': 883}, {'entity': 'I-PER', 'score': 0.99781513, 'index': 257, 'word': '##q', 'start': 883, 'end': 884}, {'entity': 'I-PER', 'score': 0.99967146, 'index': 259, 'word': 'Mu', 'start': 887, 'end': 889}, {'entity': 'I-PER', 'score': 0.9989072, 'index': 260, 'word': '##sh', 'start': 889, 'end': 891}, {'entity': 'I-PER', 'score': 0.98086333, 'index': 261, 'word': '##ta', 'start': 891, 'end': 893}, {'entity': 'I-PER', 'score': 0.9996319, 'index': 262, 'word': '##q', 'start': 893, 'end': 894}, {'entity': 'I-PER', 'score': 0.99976355, 'index': 263, 'word': 'Ahmed', 'start': 895, 'end': 900}, {'entity': 'I-PER', 'score': 0.9996947, 'index': 265, 'word': 'W', 'start': 903, 'end': 904}, {'entity': 'I-PER', 'score': 0.9995951, 'index': 266, 'word': '##aq', 'start': 904, 'end': 906}, {'entity': 'I-PER', 'score': 0.9996309, 'index': 267, 'word': '##ar', 'start': 906, 'end': 908}, {'entity': 'I-PER', 'score': 0.99966824, 'index': 268, 'word': 'You', 'start': 909, 'end': 912}, {'entity': 'I-PER', 'score': 0.99961865, 'index': 269, 'word': '##nis', 'start': 912, 'end': 915}, {'entity': 'I-PER', 'score': 0.99972576, 'index': 271, 'word': 'At', 'start': 918, 'end': 920}, {'entity': 'I-PER', 'score': 0.9986998, 'index': 272, 'word': '##a', 'start': 920, 'end': 921}, {'entity': 'I-PER', 'score': 0.96467793, 'index': 273, 'word': '-', 'start': 921, 'end': 922}, {'entity': 'I-PER', 'score': 0.99924374, 'index': 274, 'word': 'u', 'start': 922, 'end': 923}, {'entity': 'I-PER', 'score': 0.9985233, 'index': 275, 'word': '##r', 'start': 923, 'end': 924}, {'entity': 'I-PER', 'score': 0.9479415, 'index': 276, 'word': '-', 'start': 924, 'end': 925}, {'entity': 'I-PER', 'score': 0.99918073, 'index': 277, 'word': 'Re', 'start': 925, 'end': 927}, {'entity': 'I-PER', 'score': 0.99947625, 'index': 278, 'word': '##hman', 'start': 927, 'end': 931}]
[{'entity': 'I-LOC', 'score': 0.6587187, 'index': 6, 'word': 'GO', 'start': 11, 'end': 13}, {'entity': 'I-ORG', 'score': 0.3931844, 'index': 7, 'word': '##N', 'start': 13, 'end': 14}, {'entity': 'I-LOC', 'score': 0.524131, 'index': 8, 'word': '##Z', 'start': 14, 'end': 15}, {'entity': 'I-ORG', 'score': 0.545181, 'index': 9, 'word': '##AL', 'start': 15, 'end': 17}, {'entity': 'I-ORG', 'score': 0.6207474, 'index': 10, 'word': '##E', 'start': 17, 'end': 18}, {'entity': 'I-ORG', 'score': 0.7434778, 'index': 11, 'word': '##Z', 'start': 18, 'end': 19}, {'entity': 'I-ORG', 'score': 0.34787038, 'index': 20, 'word': 'RA', 'start': 36, 'end': 38}, {'entity': 'I-ORG', 'score': 0.4061272, 'index': 21, 'word': '##NG', 'start': 38, 'end': 40}, {'entity': 'I-MISC', 'score': 0.8835939, 'index': 27, 'word': 'IN', 'start': 49, 'end': 51}, {'entity': 'I-MISC', 'score': 0.90719646, 'index': 28, 'word': '##DI', 'start': 51, 'end': 53}, {'entity': 'I-MISC', 'score': 0.8206127, 'index': 29, 'word': '##AN', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.99270356, 'index': 36, 'word': 'AR', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.9642798, 'index': 37, 'word': '##L', 'start': 66, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9710547, 'index': 38, 'word': '##ING', 'start': 67, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9899272, 'index': 39, 'word': '##TO', 'start': 70, 'end': 72}, {'entity': 'I-LOC', 'score': 0.9935388, 'index': 40, 'word': '##N', 'start': 72, 'end': 73}, {'entity': 'I-LOC', 'score': 0.99881566, 'index': 42, 'word': 'Texas', 'start': 76, 'end': 81}, {'entity': 'I-PER', 'score': 0.99956864, 'index': 52, 'word': 'Juan', 'start': 98, 'end': 102}, {'entity': 'I-PER', 'score': 0.9997534, 'index': 53, 'word': 'Gonzalez', 'start': 103, 'end': 111}, {'entity': 'I-PER', 'score': 0.99958116, 'index': 58, 'word': 'Ivan', 'start': 130, 'end': 134}, {'entity': 'I-PER', 'score': 0.99978584, 'index': 59, 'word': 'Rodriguez', 'start': 135, 'end': 144}, {'entity': 'I-ORG', 'score': 0.99971956, 'index': 68, 'word': 'Texas', 'start': 173, 'end': 178}, {'entity': 'I-ORG', 'score': 0.9997222, 'index': 69, 'word': 'Rangers', 'start': 179, 'end': 186}, {'entity': 'I-ORG', 'score': 0.9995919, 'index': 72, 'word': 'Cleveland', 'start': 200, 'end': 209}, {'entity': 'I-ORG', 'score': 0.9994553, 'index': 73, 'word': 'Indians', 'start': 210, 'end': 217}, {'entity': 'I-PER', 'score': 0.9997694, 'index': 90, 'word': 'Rodriguez', 'start': 269, 'end': 278}, {'entity': 'I-PER', 'score': 0.99964225, 'index': 98, 'word': 'Chad', 'start': 299, 'end': 303}, {'entity': 'I-PER', 'score': 0.9985588, 'index': 99, 'word': 'O', 'start': 304, 'end': 305}, {'entity': 'I-PER', 'score': 0.9911055, 'index': 100, 'word': '##ge', 'start': 305, 'end': 307}, {'entity': 'I-PER', 'score': 0.997769, 'index': 101, 'word': '##a', 'start': 307, 'end': 308}, {'entity': 'I-ORG', 'score': 0.9798105, 'index': 112, 'word': 'Texas', 'start': 337, 'end': 342}, {'entity': 'I-PER', 'score': 0.99973184, 'index': 127, 'word': 'Gonzalez', 'start': 377, 'end': 385}, {'entity': 'I-PER', 'score': 0.99972445, 'index': 146, 'word': 'Gonzalez', 'start': 459, 'end': 467}, {'entity': 'I-PER', 'score': 0.99951625, 'index': 159, 'word': 'Mickey', 'start': 528, 'end': 534}, {'entity': 'I-PER', 'score': 0.99973565, 'index': 160, 'word': 'Rivers', 'start': 535, 'end': 541}, {'entity': 'I-LOC', 'score': 0.56073457, 'index': 166, 'word': 'Texas', 'start': 565, 'end': 570}, {'entity': 'I-PER', 'score': 0.9997254, 'index': 183, 'word': 'Gonzalez', 'start': 628, 'end': 636}, {'entity': 'I-PER', 'score': 0.9997043, 'index': 208, 'word': 'Gonzalez', 'start': 723, 'end': 731}, {'entity': 'I-MISC', 'score': 0.9975352, 'index': 219, 'word': 'RBI', 'start': 771, 'end': 774}, {'entity': 'I-PER', 'score': 0.99954164, 'index': 221, 'word': 'R', 'start': 781, 'end': 782}, {'entity': 'I-PER', 'score': 0.99948704, 'index': 222, 'word': '##uben', 'start': 782, 'end': 786}, {'entity': 'I-PER', 'score': 0.999696, 'index': 223, 'word': 'Sierra', 'start': 787, 'end': 793}, {'entity': 'I-ORG', 'score': 0.999387, 'index': 239, 'word': 'Indians', 'start': 839, 'end': 846}, {'entity': 'I-ORG', 'score': 0.99154586, 'index': 270, 'word': 'Texas', 'start': 957, 'end': 962}, {'entity': 'I-PER', 'score': 0.99952245, 'index': 272, 'word': 'Johnny', 'start': 971, 'end': 977}, {'entity': 'I-PER', 'score': 0.99928004, 'index': 273, 'word': 'O', 'start': 978, 'end': 979}, {'entity': 'I-PER', 'score': 0.9996105, 'index': 274, 'word': '##ates', 'start': 979, 'end': 983}, {'entity': 'I-ORG', 'score': 0.80281943, 'index': 285, 'word': 'Cleveland', 'start': 1037, 'end': 1046}, {'entity': 'I-PER', 'score': 0.999617, 'index': 330, 'word': 'Roger', 'start': 1211, 'end': 1216}, {'entity': 'I-PER', 'score': 0.9986688, 'index': 331, 'word': 'Pa', 'start': 1217, 'end': 1219}, {'entity': 'I-PER', 'score': 0.99582964, 'index': 332, 'word': '##v', 'start': 1219, 'end': 1220}, {'entity': 'I-PER', 'score': 0.998806, 'index': 333, 'word': '##lik', 'start': 1220, 'end': 1223}, {'entity': 'I-MISC', 'score': 0.9614545, 'index': 362, 'word': 'American', 'start': 1328, 'end': 1336}, {'entity': 'I-MISC', 'score': 0.9966091, 'index': 363, 'word': 'League', 'start': 1337, 'end': 1343}, {'entity': 'I-PER', 'score': 0.99975055, 'index': 369, 'word': 'Jeff', 'start': 1351, 'end': 1355}, {'entity': 'I-PER', 'score': 0.9998093, 'index': 370, 'word': 'Russell', 'start': 1356, 'end': 1363}, {'entity': 'I-PER', 'score': 0.9996507, 'index': 384, 'word': 'Brian', 'start': 1418, 'end': 1423}, {'entity': 'I-PER', 'score': 0.9997155, 'index': 385, 'word': 'Giles', 'start': 1424, 'end': 1429}, {'entity': 'I-PER', 'score': 0.99963725, 'index': 387, 'word': 'Jim', 'start': 1434, 'end': 1437}, {'entity': 'I-PER', 'score': 0.99965, 'index': 388, 'word': 'Thom', 'start': 1438, 'end': 1442}, {'entity': 'I-PER', 'score': 0.81880826, 'index': 389, 'word': '##e', 'start': 1442, 'end': 1443}, {'entity': 'I-ORG', 'score': 0.979076, 'index': 393, 'word': 'Cleveland', 'start': 1456, 'end': 1465}, {'entity': 'I-ORG', 'score': 0.7112659, 'index': 397, 'word': 'S', 'start': 1470, 'end': 1471}, {'entity': 'I-ORG', 'score': 0.98222405, 'index': 399, 'word': 'Cleveland', 'start': 1473, 'end': 1482}, {'entity': 'I-PER', 'score': 0.98240006, 'index': 405, 'word': 'White', 'start': 1500, 'end': 1505}, {'entity': 'I-ORG', 'score': 0.99438274, 'index': 406, 'word': 'Sox', 'start': 1506, 'end': 1509}, {'entity': 'I-MISC', 'score': 0.9679479, 'index': 409, 'word': 'American', 'start': 1517, 'end': 1525}, {'entity': 'I-MISC', 'score': 0.9905206, 'index': 410, 'word': 'League', 'start': 1526, 'end': 1532}, {'entity': 'I-MISC', 'score': 0.56326216, 'index': 411, 'word': 'Central', 'start': 1533, 'end': 1540}, {'entity': 'I-ORG', 'score': 0.49000096, 'index': 419, 'word': 'S', 'start': 1567, 'end': 1568}, {'entity': 'I-ORG', 'score': 0.95905155, 'index': 421, 'word': 'Texas', 'start': 1570, 'end': 1575}, {'entity': 'I-ORG', 'score': 0.9947029, 'index': 426, 'word': 'Seattle', 'start': 1589, 'end': 1596}, {'entity': 'I-ORG', 'score': 0.8291395, 'index': 429, 'word': 'West', 'start': 1604, 'end': 1608}, {'entity': 'I-ORG', 'score': 0.6592833, 'index': 436, 'word': 'S', 'start': 1630, 'end': 1631}, {'entity': 'I-PER', 'score': 0.9058512, 'index': 439, 'word': 'California', 'start': 1636, 'end': 1646}, {'entity': 'I-PER', 'score': 0.99610186, 'index': 441, 'word': 'Tin', 'start': 1649, 'end': 1652}, {'entity': 'I-PER', 'score': 0.9889693, 'index': 442, 'word': '##o', 'start': 1652, 'end': 1653}, {'entity': 'I-PER', 'score': 0.9994733, 'index': 443, 'word': 'Martinez', 'start': 1654, 'end': 1662}, {'entity': 'I-PER', 'score': 0.99953437, 'index': 459, 'word': 'Andy', 'start': 1708, 'end': 1712}, {'entity': 'I-PER', 'score': 0.9994955, 'index': 460, 'word': 'Pet', 'start': 1713, 'end': 1716}, {'entity': 'I-PER', 'score': 0.9040557, 'index': 461, 'word': '##ti', 'start': 1716, 'end': 1718}, {'entity': 'I-ORG', 'score': 0.9777395, 'index': 475, 'word': 'New', 'start': 1771, 'end': 1774}, {'entity': 'I-ORG', 'score': 0.8419862, 'index': 476, 'word': 'York', 'start': 1775, 'end': 1779}, {'entity': 'I-ORG', 'score': 0.99075174, 'index': 477, 'word': 'Yankees', 'start': 1780, 'end': 1787}, {'entity': 'I-ORG', 'score': 0.90858704, 'index': 480, 'word': 'Angels', 'start': 1797, 'end': 1803}, {'entity': 'I-ORG', 'score': 0.5823982, 'index': 487, 'word': 'S', 'start': 1812, 'end': 1813}, {'entity': 'I-ORG', 'score': 0.96887994, 'index': 489, 'word': 'New', 'start': 1815, 'end': 1818}, {'entity': 'I-ORG', 'score': 0.60870683, 'index': 490, 'word': 'York', 'start': 1819, 'end': 1823}, {'entity': 'I-PER', 'score': 0.9988399, 'index': 507, 'word': 'Mariano', 'start': 1895, 'end': 1902}, {'entity': 'I-PER', 'score': 0.9995247, 'index': 508, 'word': 'Duncan', 'start': 1903, 'end': 1909}, {'entity': 'I-PER', 'score': 0.9996094, 'index': 510, 'word': 'Darryl', 'start': 1912, 'end': 1918}]
[{'entity': 'I-LOC', 'score': 0.42771497, 'index': 6, 'word': 'E', 'start': 10, 'end': 11}, {'entity': 'I-PER', 'score': 0.39556265, 'index': 7, 'word': '##SS', 'start': 11, 'end': 13}, {'entity': 'I-PER', 'score': 0.48955378, 'index': 8, 'word': '##EX', 'start': 13, 'end': 15}, {'entity': 'I-PER', 'score': 0.9849185, 'index': 10, 'word': 'K', 'start': 20, 'end': 21}, {'entity': 'I-PER', 'score': 0.41714066, 'index': 12, 'word': '##T', 'start': 23, 'end': 24}, {'entity': 'I-LOC', 'score': 0.9988175, 'index': 31, 'word': 'L', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.99549097, 'index': 32, 'word': '##ON', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9326037, 'index': 33, 'word': '##D', 'start': 63, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9982247, 'index': 34, 'word': '##ON', 'start': 64, 'end': 66}, {'entity': 'I-ORG', 'score': 0.9992698, 'index': 44, 'word': 'Essex', 'start': 83, 'end': 88}, {'entity': 'I-ORG', 'score': 0.99907696, 'index': 46, 'word': 'Kent', 'start': 93, 'end': 97}, {'entity': 'I-ORG', 'score': 0.99891484, 'index': 63, 'word': 'Derbyshire', 'start': 182, 'end': 192}, {'entity': 'I-ORG', 'score': 0.9990306, 'index': 65, 'word': 'Surrey', 'start': 197, 'end': 203}, {'entity': 'I-MISC', 'score': 0.99899346, 'index': 79, 'word': 'English', 'start': 256, 'end': 263}, {'entity': 'I-ORG', 'score': 0.9993556, 'index': 90, 'word': 'Essex', 'start': 298, 'end': 303}, {'entity': 'I-ORG', 'score': 0.9985917, 'index': 101, 'word': 'Yorkshire', 'start': 355, 'end': 364}, {'entity': 'I-PER', 'score': 0.99960655, 'index': 110, 'word': 'Richard', 'start': 405, 'end': 412}, {'entity': 'I-PER', 'score': 0.99957234, 'index': 111, 'word': 'Ke', 'start': 413, 'end': 415}, {'entity': 'I-PER', 'score': 0.990464, 'index': 112, 'word': '##ttle', 'start': 415, 'end': 419}, {'entity': 'I-PER', 'score': 0.98978627, 'index': 113, 'word': '##borough', 'start': 419, 'end': 426}, {'entity': 'I-ORG', 'score': 0.9989561, 'index': 130, 'word': 'Kent', 'start': 496, 'end': 500}, {'entity': 'I-ORG', 'score': 0.9981704, 'index': 140, 'word': 'Nottinghamshire', 'start': 555, 'end': 570}, {'entity': 'I-LOC', 'score': 0.99941814, 'index': 161, 'word': 'Tu', 'start': 670, 'end': 672}, {'entity': 'I-LOC', 'score': 0.9966365, 'index': 162, 'word': '##nbridge', 'start': 672, 'end': 679}, {'entity': 'I-LOC', 'score': 0.998654, 'index': 163, 'word': 'Wells', 'start': 680, 'end': 685}, {'entity': 'I-ORG', 'score': 0.99869484, 'index': 169, 'word': 'Derbyshire', 'start': 693, 'end': 703}, {'entity': 'I-ORG', 'score': 0.9990115, 'index': 176, 'word': 'Worcestershire', 'start': 731, 'end': 745}, {'entity': 'I-ORG', 'score': 0.9993844, 'index': 179, 'word': 'Surrey', 'start': 752, 'end': 758}, {'entity': 'I-ORG', 'score': 0.9992204, 'index': 185, 'word': 'Warwickshire', 'start': 774, 'end': 786}, {'entity': 'I-ORG', 'score': 0.99911255, 'index': 202, 'word': 'Leicestershire', 'start': 863, 'end': 877}, {'entity': 'I-ORG', 'score': 0.9982474, 'index': 206, 'word': 'Somerset', 'start': 889, 'end': 897}, {'entity': 'I-ORG', 'score': 0.9994549, 'index': 215, 'word': 'Warwickshire', 'start': 921, 'end': 933}, {'entity': 'I-PER', 'score': 0.9996482, 'index': 217, 'word': 'Tim', 'start': 942, 'end': 945}, {'entity': 'I-PER', 'score': 0.99972624, 'index': 218, 'word': 'Mu', 'start': 946, 'end': 948}, {'entity': 'I-PER', 'score': 0.99896884, 'index': 219, 'word': '##nton', 'start': 948, 'end': 952}, {'entity': 'I-ORG', 'score': 0.9991615, 'index': 223, 'word': 'Surrey', 'start': 964, 'end': 970}, {'entity': 'I-MISC', 'score': 0.9991906, 'index': 235, 'word': 'Australian', 'start': 1029, 'end': 1039}, {'entity': 'I-PER', 'score': 0.9996132, 'index': 237, 'word': 'Dave', 'start': 1046, 'end': 1050}, {'entity': 'I-PER', 'score': 0.9998311, 'index': 238, 'word': 'Gilbert', 'start': 1051, 'end': 1058}, {'entity': 'I-ORG', 'score': 0.9986727, 'index': 241, 'word': 'Derbyshire', 'start': 1065, 'end': 1075}, {'entity': 'I-MISC', 'score': 0.99862194, 'index': 244, 'word': 'Australian', 'start': 1079, 'end': 1089}, {'entity': 'I-PER', 'score': 0.99965346, 'index': 246, 'word': 'Dean', 'start': 1098, 'end': 1102}, {'entity': 'I-PER', 'score': 0.9998086, 'index': 247, 'word': 'Jones', 'start': 1103, 'end': 1108}]
[{'entity': 'I-MISC', 'score': 0.9991886, 'index': 17, 'word': 'EU', 'start': 32, 'end': 34}, {'entity': 'I-MISC', 'score': 0.997502, 'index': 18, 'word': '##RO', 'start': 34, 'end': 36}, {'entity': 'I-MISC', 'score': 0.9400891, 'index': 19, 'word': '##P', 'start': 36, 'end': 37}, {'entity': 'I-MISC', 'score': 0.82498235, 'index': 20, 'word': '##EA', 'start': 37, 'end': 39}, {'entity': 'I-MISC', 'score': 0.9879302, 'index': 21, 'word': '##N', 'start': 39, 'end': 40}, {'entity': 'I-MISC', 'score': 0.9911179, 'index': 22, 'word': 'TO', 'start': 41, 'end': 43}, {'entity': 'I-MISC', 'score': 0.9899143, 'index': 23, 'word': '##UR', 'start': 43, 'end': 45}, {'entity': 'I-LOC', 'score': 0.99882716, 'index': 29, 'word': 'L', 'start': 53, 'end': 54}, {'entity': 'I-LOC', 'score': 0.99592364, 'index': 30, 'word': '##ON', 'start': 54, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9433066, 'index': 31, 'word': '##D', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.99849033, 'index': 32, 'word': '##ON', 'start': 57, 'end': 59}, {'entity': 'I-MISC', 'score': 0.9791014, 'index': 49, 'word': 'S', 'start': 107, 'end': 108}, {'entity': 'I-MISC', 'score': 0.99718493, 'index': 51, 'word': 'European', 'start': 110, 'end': 118}, {'entity': 'I-MISC', 'score': 0.99697554, 'index': 52, 'word': 'Tour', 'start': 119, 'end': 123}, {'entity': 'I-MISC', 'score': 0.99702805, 'index': 55, 'word': 'British', 'start': 134, 'end': 141}, {'entity': 'I-MISC', 'score': 0.9947072, 'index': 56, 'word': 'Masters', 'start': 142, 'end': 149}, {'entity': 'I-PER', 'score': 0.99964046, 'index': 59, 'word': 'Robert', 'start': 157, 'end': 163}, {'entity': 'I-PER', 'score': 0.99954045, 'index': 60, 'word': 'Allen', 'start': 164, 'end': 169}, {'entity': 'I-PER', 'score': 0.99831605, 'index': 61, 'word': '##by', 'start': 169, 'end': 171}, {'entity': 'I-MISC', 'score': 0.9994717, 'index': 69, 'word': 'British', 'start': 191, 'end': 198}, {'entity': 'I-PER', 'score': 0.9997967, 'index': 80, 'word': 'Ian', 'start': 225, 'end': 228}, {'entity': 'I-PER', 'score': 0.9997365, 'index': 81, 'word': 'W', 'start': 229, 'end': 230}, {'entity': 'I-PER', 'score': 0.9939249, 'index': 82, 'word': '##oos', 'start': 230, 'end': 233}, {'entity': 'I-PER', 'score': 0.99749905, 'index': 83, 'word': '##nam', 'start': 233, 'end': 236}, {'entity': 'I-PER', 'score': 0.9998178, 'index': 97, 'word': 'Colin', 'start': 269, 'end': 274}, {'entity': 'I-PER', 'score': 0.9997043, 'index': 98, 'word': 'Mont', 'start': 275, 'end': 279}, {'entity': 'I-PER', 'score': 0.9924861, 'index': 99, 'word': '##go', 'start': 279, 'end': 281}, {'entity': 'I-PER', 'score': 0.8766966, 'index': 100, 'word': '##mer', 'start': 281, 'end': 284}, {'entity': 'I-PER', 'score': 0.99841416, 'index': 101, 'word': '##ie', 'start': 284, 'end': 286}, {'entity': 'I-PER', 'score': 0.9998067, 'index': 112, 'word': 'Robert', 'start': 303, 'end': 309}, {'entity': 'I-PER', 'score': 0.9997929, 'index': 113, 'word': 'Allen', 'start': 310, 'end': 315}, {'entity': 'I-PER', 'score': 0.99937266, 'index': 114, 'word': '##by', 'start': 315, 'end': 317}, {'entity': 'I-LOC', 'score': 0.99983, 'index': 116, 'word': 'Australia', 'start': 320, 'end': 329}, {'entity': 'I-PER', 'score': 0.999746, 'index': 129, 'word': 'Lee', 'start': 348, 'end': 351}, {'entity': 'I-PER', 'score': 0.99984455, 'index': 130, 'word': 'Westwood', 'start': 352, 'end': 360}, {'entity': 'I-PER', 'score': 0.9997875, 'index': 141, 'word': 'Costa', 'start': 377, 'end': 382}, {'entity': 'I-PER', 'score': 0.9997192, 'index': 142, 'word': '##ntino', 'start': 382, 'end': 387}, {'entity': 'I-PER', 'score': 0.9997348, 'index': 143, 'word': 'R', 'start': 388, 'end': 389}, {'entity': 'I-PER', 'score': 0.9980563, 'index': 144, 'word': '##oc', 'start': 389, 'end': 391}, {'entity': 'I-PER', 'score': 0.9991714, 'index': 145, 'word': '##ca', 'start': 391, 'end': 393}, {'entity': 'I-LOC', 'score': 0.9998685, 'index': 147, 'word': 'Italy', 'start': 396, 'end': 401}, {'entity': 'I-PER', 'score': 0.99981326, 'index': 159, 'word': 'Mark', 'start': 420, 'end': 424}, {'entity': 'I-PER', 'score': 0.9997979, 'index': 160, 'word': 'M', 'start': 425, 'end': 426}, {'entity': 'I-PER', 'score': 0.99928087, 'index': 161, 'word': '##c', 'start': 426, 'end': 427}, {'entity': 'I-PER', 'score': 0.99733245, 'index': 162, 'word': '##N', 'start': 427, 'end': 428}, {'entity': 'I-PER', 'score': 0.9993173, 'index': 163, 'word': '##ult', 'start': 428, 'end': 431}, {'entity': 'I-PER', 'score': 0.99921155, 'index': 164, 'word': '##y', 'start': 431, 'end': 432}, {'entity': 'I-LOC', 'score': 0.99979645, 'index': 166, 'word': 'Zimbabwe', 'start': 435, 'end': 443}, {'entity': 'I-PER', 'score': 0.99980825, 'index': 177, 'word': 'Andrew', 'start': 462, 'end': 468}, {'entity': 'I-PER', 'score': 0.99976426, 'index': 178, 'word': 'Colt', 'start': 469, 'end': 473}, {'entity': 'I-PER', 'score': 0.99969685, 'index': 179, 'word': '##art', 'start': 473, 'end': 476}, {'entity': 'I-PER', 'score': 0.9998198, 'index': 189, 'word': 'Wayne', 'start': 493, 'end': 498}, {'entity': 'I-PER', 'score': 0.9998661, 'index': 190, 'word': 'Riley', 'start': 499, 'end': 504}, {'entity': 'I-LOC', 'score': 0.9998727, 'index': 192, 'word': 'Australia', 'start': 507, 'end': 516}, {'entity': 'I-PER', 'score': 0.99979347, 'index': 204, 'word': 'Raymond', 'start': 535, 'end': 542}, {'entity': 'I-PER', 'score': 0.9998541, 'index': 205, 'word': 'Russell', 'start': 543, 'end': 550}, {'entity': 'I-PER', 'score': 0.9998068, 'index': 215, 'word': 'Paul', 'start': 568, 'end': 572}, {'entity': 'I-PER', 'score': 0.99984276, 'index': 216, 'word': 'Law', 'start': 573, 'end': 576}, {'entity': 'I-PER', 'score': 0.9997781, 'index': 217, 'word': '##rie', 'start': 576, 'end': 579}, {'entity': 'I-PER', 'score': 0.99977916, 'index': 227, 'word': 'Stephen', 'start': 597, 'end': 604}, {'entity': 'I-PER', 'score': 0.9998597, 'index': 228, 'word': 'Ames', 'start': 605, 'end': 609}, {'entity': 'I-LOC', 'score': 0.9997142, 'index': 230, 'word': 'Trinidad', 'start': 612, 'end': 620}, {'entity': 'I-PER', 'score': 0.99979585, 'index': 241, 'word': 'Frank', 'start': 640, 'end': 645}, {'entity': 'I-PER', 'score': 0.99971765, 'index': 242, 'word': 'No', 'start': 646, 'end': 648}, {'entity': 'I-PER', 'score': 0.9987753, 'index': 243, 'word': '##bil', 'start': 648, 'end': 651}, {'entity': 'I-PER', 'score': 0.99951684, 'index': 244, 'word': '##o', 'start': 651, 'end': 652}, {'entity': 'I-LOC', 'score': 0.9997732, 'index': 246, 'word': 'New', 'start': 655, 'end': 658}, {'entity': 'I-LOC', 'score': 0.99985075, 'index': 247, 'word': 'Zealand', 'start': 659, 'end': 666}, {'entity': 'I-PER', 'score': 0.99981457, 'index': 259, 'word': 'Paul', 'start': 686, 'end': 690}, {'entity': 'I-PER', 'score': 0.9997999, 'index': 260, 'word': 'M', 'start': 691, 'end': 692}, {'entity': 'I-PER', 'score': 0.99916315, 'index': 261, 'word': '##c', 'start': 692, 'end': 693}, {'entity': 'I-PER', 'score': 0.9993399, 'index': 262, 'word': '##G', 'start': 693, 'end': 694}, {'entity': 'I-PER', 'score': 0.9939686, 'index': 263, 'word': '##in', 'start': 694, 'end': 696}, {'entity': 'I-PER', 'score': 0.9993749, 'index': 264, 'word': '##ley', 'start': 696, 'end': 699}, {'entity': 'I-LOC', 'score': 0.9998165, 'index': 266, 'word': 'Ireland', 'start': 702, 'end': 709}, {'entity': 'I-PER', 'score': 0.9997857, 'index': 277, 'word': 'Pa', 'start': 729, 'end': 731}, {'entity': 'I-PER', 'score': 0.99939775, 'index': 278, 'word': '##dra', 'start': 731, 'end': 734}, {'entity': 'I-PER', 'score': 0.99979144, 'index': 279, 'word': '##ig', 'start': 734, 'end': 736}, {'entity': 'I-PER', 'score': 0.99989176, 'index': 280, 'word': 'Harrington', 'start': 737, 'end': 747}, {'entity': 'I-LOC', 'score': 0.9998036, 'index': 282, 'word': 'Ireland', 'start': 750, 'end': 757}, {'entity': 'I-PER', 'score': 0.9998184, 'index': 294, 'word': 'Re', 'start': 777, 'end': 779}, {'entity': 'I-PER', 'score': 0.9994697, 'index': 295, 'word': '##tie', 'start': 779, 'end': 782}, {'entity': 'I-PER', 'score': 0.99978966, 'index': 296, 'word': '##f', 'start': 782, 'end': 783}, {'entity': 'I-PER', 'score': 0.9998184, 'index': 297, 'word': 'Goose', 'start': 784, 'end': 789}, {'entity': 'I-PER', 'score': 0.999579, 'index': 298, 'word': '##n', 'start': 789, 'end': 790}, {'entity': 'I-LOC', 'score': 0.99976045, 'index': 300, 'word': 'South', 'start': 793, 'end': 798}, {'entity': 'I-LOC', 'score': 0.9998368, 'index': 301, 'word': 'Africa', 'start': 799, 'end': 805}, {'entity': 'I-PER', 'score': 0.999782, 'index': 313, 'word': 'Miguel', 'start': 825, 'end': 831}, {'entity': 'I-PER', 'score': 0.9998128, 'index': 314, 'word': 'Angel', 'start': 832, 'end': 837}, {'entity': 'I-PER', 'score': 0.9997843, 'index': 315, 'word': 'Jim', 'start': 838, 'end': 841}, {'entity': 'I-PER', 'score': 0.9984566, 'index': 316, 'word': '##ene', 'start': 841, 'end': 844}, {'entity': 'I-PER', 'score': 0.99962866, 'index': 317, 'word': '##z', 'start': 844, 'end': 845}, {'entity': 'I-LOC', 'score': 0.99988496, 'index': 319, 'word': 'Spain', 'start': 848, 'end': 853}, {'entity': 'I-PER', 'score': 0.9998041, 'index': 330, 'word': 'Peter', 'start': 873, 'end': 878}, {'entity': 'I-PER', 'score': 0.99986136, 'index': 331, 'word': 'Mitchell', 'start': 879, 'end': 887}, {'entity': 'I-PER', 'score': 0.999808, 'index': 342, 'word': 'Miguel', 'start': 905, 'end': 911}, {'entity': 'I-PER', 'score': 0.9998259, 'index': 343, 'word': 'Angel', 'start': 912, 'end': 917}, {'entity': 'I-PER', 'score': 0.99984884, 'index': 344, 'word': 'Martin', 'start': 918, 'end': 924}, {'entity': 'I-LOC', 'score': 0.9998938, 'index': 346, 'word': 'Spain', 'start': 927, 'end': 932}, {'entity': 'I-PER', 'score': 0.99979705, 'index': 358, 'word': 'Jonathan', 'start': 952, 'end': 960}, {'entity': 'I-PER', 'score': 0.9996939, 'index': 359, 'word': 'Lo', 'start': 961, 'end': 963}, {'entity': 'I-PER', 'score': 0.99956423, 'index': 360, 'word': '##mas', 'start': 963, 'end': 966}, {'entity': 'I-PER', 'score': 0.9998117, 'index': 371, 'word': 'Paul', 'start': 984, 'end': 988}, {'entity': 'I-PER', 'score': 0.99985325, 'index': 372, 'word': 'Broad', 'start': 989, 'end': 994}, {'entity': 'I-PER', 'score': 0.9994967, 'index': 373, 'word': '##hurst', 'start': 994, 'end': 999}]
[{'entity': 'I-ORG', 'score': 0.96421725, 'index': 1, 'word': 'R', 'start': 0, 'end': 1}, {'entity': 'I-ORG', 'score': 0.83439124, 'index': 2, 'word': '##U', 'start': 1, 'end': 2}, {'entity': 'I-ORG', 'score': 0.9262645, 'index': 3, 'word': '##GB', 'start': 2, 'end': 4}, {'entity': 'I-ORG', 'score': 0.8976669, 'index': 4, 'word': '##Y', 'start': 4, 'end': 5}, {'entity': 'I-ORG', 'score': 0.99703884, 'index': 5, 'word': 'UN', 'start': 6, 'end': 8}, {'entity': 'I-ORG', 'score': 0.9583478, 'index': 6, 'word': '##ION', 'start': 8, 'end': 11}, {'entity': 'I-MISC', 'score': 0.8123168, 'index': 8, 'word': 'E', 'start': 14, 'end': 15}, {'entity': 'I-ORG', 'score': 0.48808628, 'index': 17, 'word': '##S', 'start': 30, 'end': 31}, {'entity': 'I-ORG', 'score': 0.9494875, 'index': 20, 'word': 'W', 'start': 37, 'end': 38}, {'entity': 'I-ORG', 'score': 0.80686826, 'index': 21, 'word': '##EL', 'start': 38, 'end': 40}, {'entity': 'I-ORG', 'score': 0.50897604, 'index': 22, 'word': '##S', 'start': 40, 'end': 41}, {'entity': 'I-ORG', 'score': 0.97617936, 'index': 23, 'word': '##H', 'start': 41, 'end': 42}, {'entity': 'I-LOC', 'score': 0.6029404, 'index': 34, 'word': 'L', 'start': 58, 'end': 59}, {'entity': 'I-ORG', 'score': 0.84924066, 'index': 35, 'word': '##ON', 'start': 59, 'end': 61}, {'entity': 'I-ORG', 'score': 0.77438366, 'index': 36, 'word': '##D', 'start': 61, 'end': 62}, {'entity': 'I-ORG', 'score': 0.93937266, 'index': 37, 'word': '##ON', 'start': 62, 'end': 64}, {'entity': 'I-MISC', 'score': 0.99894935, 'index': 49, 'word': 'English', 'start': 92, 'end': 99}, {'entity': 'I-MISC', 'score': 0.9973642, 'index': 51, 'word': 'Scottish', 'start': 102, 'end': 110}, {'entity': 'I-MISC', 'score': 0.90073645, 'index': 55, 'word': 'S', 'start': 117, 'end': 118}, {'entity': 'I-MISC', 'score': 0.99733245, 'index': 57, 'word': 'Welsh', 'start': 120, 'end': 125}, {'entity': 'I-MISC', 'score': 0.99857795, 'index': 68, 'word': 'English', 'start': 165, 'end': 172}, {'entity': 'I-MISC', 'score': 0.9401286, 'index': 69, 'word': 'National', 'start': 173, 'end': 181}, {'entity': 'I-MISC', 'score': 0.98100454, 'index': 70, 'word': 'League', 'start': 182, 'end': 188}, {'entity': 'I-ORG', 'score': 0.99980325, 'index': 76, 'word': 'Ha', 'start': 198, 'end': 200}, {'entity': 'I-ORG', 'score': 0.99941194, 'index': 77, 'word': '##rle', 'start': 200, 'end': 203}, {'entity': 'I-ORG', 'score': 0.99955386, 'index': 78, 'word': '##quin', 'start': 203, 'end': 207}, {'entity': 'I-ORG', 'score': 0.99941266, 'index': 79, 'word': '##s', 'start': 207, 'end': 208}, {'entity': 'I-ORG', 'score': 0.99971384, 'index': 81, 'word': 'Gloucester', 'start': 212, 'end': 222}, {'entity': 'I-ORG', 'score': 0.99981946, 'index': 87, 'word': 'London', 'start': 231, 'end': 237}, {'entity': 'I-ORG', 'score': 0.9996474, 'index': 88, 'word': 'Irish', 'start': 238, 'end': 243}, {'entity': 'I-ORG', 'score': 0.99972993, 'index': 90, 'word': 'Bristol', 'start': 247, 'end': 254}, {'entity': 'I-ORG', 'score': 0.99979764, 'index': 96, 'word': 'Northampton', 'start': 263, 'end': 274}, {'entity': 'I-ORG', 'score': 0.9996388, 'index': 98, 'word': 'West', 'start': 278, 'end': 282}, {'entity': 'I-ORG', 'score': 0.99959475, 'index': 99, 'word': 'Hart', 'start': 283, 'end': 287}, {'entity': 'I-ORG', 'score': 0.99904734, 'index': 100, 'word': '##le', 'start': 287, 'end': 289}, {'entity': 'I-ORG', 'score': 0.99962556, 'index': 101, 'word': '##pool', 'start': 289, 'end': 293}, {'entity': 'I-ORG', 'score': 0.9996388, 'index': 107, 'word': 'Or', 'start': 302, 'end': 304}, {'entity': 'I-ORG', 'score': 0.9989027, 'index': 108, 'word': '##rell', 'start': 304, 'end': 308}, {'entity': 'I-ORG', 'score': 0.9996902, 'index': 110, 'word': 'Bath', 'start': 312, 'end': 316}, {'entity': 'I-ORG', 'score': 0.99977344, 'index': 116, 'word': 'Sale', 'start': 325, 'end': 329}, {'entity': 'I-ORG', 'score': 0.9995484, 'index': 118, 'word': 'Was', 'start': 333, 'end': 336}, {'entity': 'I-ORG', 'score': 0.99960655, 'index': 119, 'word': '##ps', 'start': 336, 'end': 338}, {'entity': 'I-ORG', 'score': 0.99981505, 'index': 125, 'word': 'Sara', 'start': 347, 'end': 351}, {'entity': 'I-ORG', 'score': 0.9996369, 'index': 126, 'word': '##cens', 'start': 351, 'end': 355}, {'entity': 'I-ORG', 'score': 0.9996904, 'index': 128, 'word': 'Leicester', 'start': 359, 'end': 368}, {'entity': 'I-MISC', 'score': 0.99798405, 'index': 134, 'word': 'Welsh', 'start': 377, 'end': 382}, {'entity': 'I-ORG', 'score': 0.99946076, 'index': 141, 'word': 'Bridge', 'start': 401, 'end': 407}, {'entity': 'I-ORG', 'score': 0.999485, 'index': 142, 'word': '##nd', 'start': 407, 'end': 409}, {'entity': 'I-ORG', 'score': 0.9998171, 'index': 144, 'word': 'L', 'start': 413, 'end': 414}, {'entity': 'I-ORG', 'score': 0.99913245, 'index': 145, 'word': '##lane', 'start': 414, 'end': 418}, {'entity': 'I-ORG', 'score': 0.99954623, 'index': 146, 'word': '##lli', 'start': 418, 'end': 421}, {'entity': 'I-ORG', 'score': 0.99933416, 'index': 152, 'word': 'Du', 'start': 429, 'end': 431}, {'entity': 'I-ORG', 'score': 0.9877556, 'index': 153, 'word': '##n', 'start': 431, 'end': 432}, {'entity': 'I-ORG', 'score': 0.9985422, 'index': 154, 'word': '##vant', 'start': 432, 'end': 436}, {'entity': 'I-ORG', 'score': 0.999527, 'index': 156, 'word': 'E', 'start': 440, 'end': 441}, {'entity': 'I-ORG', 'score': 0.96390945, 'index': 157, 'word': '##bb', 'start': 441, 'end': 443}, {'entity': 'I-ORG', 'score': 0.99758136, 'index': 158, 'word': '##w', 'start': 443, 'end': 444}, {'entity': 'I-ORG', 'score': 0.9996637, 'index': 159, 'word': 'Vale', 'start': 445, 'end': 449}, {'entity': 'I-ORG', 'score': 0.99940693, 'index': 165, 'word': 'T', 'start': 458, 'end': 459}, {'entity': 'I-ORG', 'score': 0.9955309, 'index': 166, 'word': '##re', 'start': 459, 'end': 461}, {'entity': 'I-ORG', 'score': 0.97018653, 'index': 167, 'word': '##or', 'start': 461, 'end': 463}, {'entity': 'I-ORG', 'score': 0.99900407, 'index': 168, 'word': '##chy', 'start': 463, 'end': 466}, {'entity': 'I-ORG', 'score': 0.9993611, 'index': 170, 'word': 'New', 'start': 470, 'end': 473}, {'entity': 'I-ORG', 'score': 0.99901557, 'index': 171, 'word': '##bridge', 'start': 473, 'end': 479}, {'entity': 'I-ORG', 'score': 0.9997329, 'index': 177, 'word': 'Newport', 'start': 488, 'end': 495}, {'entity': 'I-ORG', 'score': 0.9996613, 'index': 179, 'word': 'C', 'start': 499, 'end': 500}, {'entity': 'I-ORG', 'score': 0.99788946, 'index': 180, 'word': '##ae', 'start': 500, 'end': 502}, {'entity': 'I-ORG', 'score': 0.99756527, 'index': 181, 'word': '##rp', 'start': 502, 'end': 504}, {'entity': 'I-ORG', 'score': 0.9777207, 'index': 182, 'word': '##hill', 'start': 504, 'end': 508}, {'entity': 'I-ORG', 'score': 0.9990854, 'index': 183, 'word': '##y', 'start': 508, 'end': 509}, {'entity': 'I-ORG', 'score': 0.99977046, 'index': 189, 'word': 'Swansea', 'start': 518, 'end': 525}, {'entity': 'I-ORG', 'score': 0.9996656, 'index': 191, 'word': 'Cardiff', 'start': 529, 'end': 536}, {'entity': 'I-MISC', 'score': 0.9983183, 'index': 197, 'word': 'Scottish', 'start': 545, 'end': 553}, {'entity': 'I-ORG', 'score': 0.99922454, 'index': 206, 'word': 'Borough', 'start': 587, 'end': 594}, {'entity': 'I-ORG', 'score': 0.9976839, 'index': 207, 'word': '##mu', 'start': 594, 'end': 596}, {'entity': 'I-ORG', 'score': 0.99953306, 'index': 208, 'word': '##ir', 'start': 596, 'end': 598}, {'entity': 'I-ORG', 'score': 0.99967885, 'index': 210, 'word': 'Ha', 'start': 602, 'end': 604}, {'entity': 'I-ORG', 'score': 0.9995946, 'index': 211, 'word': '##wick', 'start': 604, 'end': 608}, {'entity': 'I-ORG', 'score': 0.9994174, 'index': 217, 'word': 'Currie', 'start': 617, 'end': 623}, {'entity': 'I-ORG', 'score': 0.9996865, 'index': 219, 'word': 'Her', 'start': 627, 'end': 630}, {'entity': 'I-ORG', 'score': 0.9991296, 'index': 220, 'word': '##iot', 'start': 630, 'end': 633}, {'entity': 'I-ORG', 'score': 0.99955684, 'index': 221, 'word': "'", 'start': 634, 'end': 635}, {'entity': 'I-ORG', 'score': 0.99948657, 'index': 222, 'word': 's', 'start': 635, 'end': 636}, {'entity': 'I-ORG', 'score': 0.99957186, 'index': 223, 'word': 'F', 'start': 637, 'end': 638}, {'entity': 'I-ORG', 'score': 0.999561, 'index': 225, 'word': 'P', 'start': 639, 'end': 640}, {'entity': 'I-ORG', 'score': 0.9533717, 'index': 226, 'word': '.', 'start': 640, 'end': 641}, {'entity': 'I-ORG', 'score': 0.99037445, 'index': 232, 'word': 'Jed', 'start': 649, 'end': 652}, {'entity': 'I-ORG', 'score': 0.87429345, 'index': 233, 'word': '-', 'start': 652, 'end': 653}, {'entity': 'I-ORG', 'score': 0.99852234, 'index': 234, 'word': 'Forest', 'start': 653, 'end': 659}, {'entity': 'I-ORG', 'score': 0.9996854, 'index': 236, 'word': 'Watson', 'start': 663, 'end': 669}, {'entity': 'I-ORG', 'score': 0.999298, 'index': 237, 'word': '##ians', 'start': 669, 'end': 673}, {'entity': 'I-ORG', 'score': 0.99974316, 'index': 243, 'word': 'Mel', 'start': 682, 'end': 685}, {'entity': 'I-ORG', 'score': 0.9988933, 'index': 244, 'word': '##rose', 'start': 685, 'end': 689}, {'entity': 'I-ORG', 'score': 0.99980575, 'index': 246, 'word': 'Stirling', 'start': 694, 'end': 702}, {'entity': 'I-ORG', 'score': 0.9995372, 'index': 247, 'word': 'County', 'start': 703, 'end': 709}]
[{'entity': 'I-LOC', 'score': 0.5284282, 'index': 6, 'word': 'WA', 'start': 9, 'end': 11}, {'entity': 'I-LOC', 'score': 0.99830365, 'index': 12, 'word': 'SA', 'start': 20, 'end': 22}, {'entity': 'I-LOC', 'score': 0.445977, 'index': 13, 'word': '##N', 'start': 22, 'end': 23}, {'entity': 'I-LOC', 'score': 0.9837389, 'index': 14, 'word': 'MA', 'start': 24, 'end': 26}, {'entity': 'I-LOC', 'score': 0.9374506, 'index': 15, 'word': '##RI', 'start': 26, 'end': 28}, {'entity': 'I-LOC', 'score': 0.8228479, 'index': 16, 'word': '##N', 'start': 28, 'end': 29}, {'entity': 'I-LOC', 'score': 0.94994104, 'index': 17, 'word': '##O', 'start': 29, 'end': 30}, {'entity': 'I-MISC', 'score': 0.99284935, 'index': 19, 'word': 'W', 'start': 34, 'end': 35}, {'entity': 'I-MISC', 'score': 0.9827701, 'index': 20, 'word': '##OR', 'start': 35, 'end': 37}, {'entity': 'I-MISC', 'score': 0.9983429, 'index': 21, 'word': '##LD', 'start': 37, 'end': 39}, {'entity': 'I-MISC', 'score': 0.9890326, 'index': 22, 'word': 'C', 'start': 40, 'end': 41}, {'entity': 'I-MISC', 'score': 0.9951815, 'index': 23, 'word': '##UP', 'start': 41, 'end': 43}, {'entity': 'I-LOC', 'score': 0.99901617, 'index': 35, 'word': 'CA', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9853161, 'index': 36, 'word': '##RD', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9718978, 'index': 37, 'word': '##IF', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9981863, 'index': 38, 'word': '##F', 'start': 67, 'end': 68}, {'entity': 'I-LOC', 'score': 0.99978894, 'index': 48, 'word': 'Wales', 'start': 85, 'end': 90}, {'entity': 'I-LOC', 'score': 0.9995839, 'index': 50, 'word': 'San', 'start': 96, 'end': 99}, {'entity': 'I-LOC', 'score': 0.99973613, 'index': 51, 'word': 'Marino', 'start': 100, 'end': 106}, {'entity': 'I-MISC', 'score': 0.99669695, 'index': 63, 'word': 'World', 'start': 133, 'end': 138}, {'entity': 'I-MISC', 'score': 0.9991757, 'index': 64, 'word': 'Cup', 'start': 139, 'end': 142}, {'entity': 'I-MISC', 'score': 0.995635, 'index': 66, 'word': 'European', 'start': 150, 'end': 158}, {'entity': 'I-PER', 'score': 0.9997886, 'index': 80, 'word': 'Dean', 'start': 206, 'end': 210}, {'entity': 'I-PER', 'score': 0.99983275, 'index': 81, 'word': 'Saunders', 'start': 211, 'end': 219}, {'entity': 'I-PER', 'score': 0.9998017, 'index': 90, 'word': 'Mark', 'start': 244, 'end': 248}, {'entity': 'I-PER', 'score': 0.9998029, 'index': 91, 'word': 'Hughes', 'start': 249, 'end': 255}, {'entity': 'I-PER', 'score': 0.99977523, 'index': 99, 'word': 'Andy', 'start': 274, 'end': 278}, {'entity': 'I-PER', 'score': 0.99981004, 'index': 100, 'word': 'Melville', 'start': 279, 'end': 287}, {'entity': 'I-PER', 'score': 0.9997675, 'index': 105, 'word': 'John', 'start': 299, 'end': 303}, {'entity': 'I-PER', 'score': 0.9997906, 'index': 106, 'word': 'Robinson', 'start': 304, 'end': 312}]
[{'entity': 'I-LOC', 'score': 0.80446, 'index': 6, 'word': 'UK', 'start': 9, 'end': 11}, {'entity': 'I-ORG', 'score': 0.38731322, 'index': 7, 'word': '##RA', 'start': 11, 'end': 13}, {'entity': 'I-ORG', 'score': 0.6734817, 'index': 8, 'word': '##IN', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.8693685, 'index': 13, 'word': 'NO', 'start': 22, 'end': 24}, {'entity': 'I-LOC', 'score': 0.50728405, 'index': 14, 'word': '##RT', 'start': 24, 'end': 26}, {'entity': 'I-LOC', 'score': 0.48172638, 'index': 15, 'word': '##H', 'start': 26, 'end': 27}, {'entity': 'I-LOC', 'score': 0.6550807, 'index': 16, 'word': '##ER', 'start': 27, 'end': 29}, {'entity': 'I-LOC', 'score': 0.83132666, 'index': 17, 'word': '##N', 'start': 29, 'end': 30}, {'entity': 'I-LOC', 'score': 0.9972363, 'index': 18, 'word': 'I', 'start': 31, 'end': 32}, {'entity': 'I-LOC', 'score': 0.99494725, 'index': 19, 'word': '##RE', 'start': 32, 'end': 34}, {'entity': 'I-LOC', 'score': 0.9952807, 'index': 20, 'word': '##LA', 'start': 34, 'end': 36}, {'entity': 'I-LOC', 'score': 0.9982639, 'index': 21, 'word': '##ND', 'start': 36, 'end': 38}, {'entity': 'I-MISC', 'score': 0.99372077, 'index': 23, 'word': 'W', 'start': 42, 'end': 43}, {'entity': 'I-MISC', 'score': 0.9781883, 'index': 24, 'word': '##OR', 'start': 43, 'end': 45}, {'entity': 'I-MISC', 'score': 0.9978376, 'index': 25, 'word': '##LD', 'start': 45, 'end': 47}, {'entity': 'I-MISC', 'score': 0.9889803, 'index': 26, 'word': 'C', 'start': 48, 'end': 49}, {'entity': 'I-MISC', 'score': 0.9955514, 'index': 27, 'word': '##UP', 'start': 49, 'end': 51}, {'entity': 'I-LOC', 'score': 0.9977818, 'index': 39, 'word': 'B', 'start': 69, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9146975, 'index': 40, 'word': '##EL', 'start': 70, 'end': 72}, {'entity': 'I-LOC', 'score': 0.82111967, 'index': 41, 'word': '##FA', 'start': 72, 'end': 74}, {'entity': 'I-LOC', 'score': 0.9828841, 'index': 42, 'word': '##ST', 'start': 74, 'end': 76}, {'entity': 'I-LOC', 'score': 0.99978584, 'index': 52, 'word': 'Ukraine', 'start': 93, 'end': 100}, {'entity': 'I-LOC', 'score': 0.99959725, 'index': 54, 'word': 'Northern', 'start': 106, 'end': 114}, {'entity': 'I-LOC', 'score': 0.9997408, 'index': 55, 'word': 'Ireland', 'start': 115, 'end': 122}, {'entity': 'I-MISC', 'score': 0.9960383, 'index': 67, 'word': 'World', 'start': 149, 'end': 154}, {'entity': 'I-MISC', 'score': 0.9990626, 'index': 68, 'word': 'Cup', 'start': 155, 'end': 158}, {'entity': 'I-MISC', 'score': 0.9967986, 'index': 70, 'word': 'European', 'start': 166, 'end': 174}, {'entity': 'I-PER', 'score': 0.99925774, 'index': 84, 'word': 'Sergei', 'start': 224, 'end': 230}, {'entity': 'I-PER', 'score': 0.99966526, 'index': 85, 'word': 'Re', 'start': 231, 'end': 233}, {'entity': 'I-PER', 'score': 0.9609828, 'index': 86, 'word': '##bro', 'start': 233, 'end': 236}, {'entity': 'I-PER', 'score': 0.96926224, 'index': 87, 'word': '##v', 'start': 236, 'end': 237}]
[{'entity': 'I-ORG', 'score': 0.9852683, 'index': 1, 'word': 'R', 'start': 0, 'end': 1}, {'entity': 'I-ORG', 'score': 0.76663905, 'index': 2, 'word': '##U', 'start': 1, 'end': 2}, {'entity': 'I-ORG', 'score': 0.8688842, 'index': 3, 'word': '##GB', 'start': 2, 'end': 4}, {'entity': 'I-ORG', 'score': 0.9463866, 'index': 4, 'word': '##Y', 'start': 4, 'end': 5}, {'entity': 'I-ORG', 'score': 0.9961861, 'index': 5, 'word': 'UN', 'start': 6, 'end': 8}, {'entity': 'I-ORG', 'score': 0.9858439, 'index': 6, 'word': '##ION', 'start': 8, 'end': 11}, {'entity': 'I-PER', 'score': 0.5622031, 'index': 8, 'word': 'L', 'start': 14, 'end': 15}, {'entity': 'I-ORG', 'score': 0.41123292, 'index': 9, 'word': '##Y', 'start': 15, 'end': 16}, {'entity': 'I-MISC', 'score': 0.380287, 'index': 10, 'word': '##NA', 'start': 16, 'end': 18}, {'entity': 'I-PER', 'score': 0.78048766, 'index': 23, 'word': 'D', 'start': 40, 'end': 41}, {'entity': 'I-PER', 'score': 0.55408293, 'index': 28, 'word': 'L', 'start': 50, 'end': 51}, {'entity': 'I-LOC', 'score': 0.99889034, 'index': 38, 'word': 'L', 'start': 67, 'end': 68}, {'entity': 'I-LOC', 'score': 0.996356, 'index': 39, 'word': '##ON', 'start': 68, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9507916, 'index': 40, 'word': '##D', 'start': 70, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9984876, 'index': 41, 'word': '##ON', 'start': 71, 'end': 73}, {'entity': 'I-ORG', 'score': 0.75107473, 'index': 52, 'word': 'Wall', 'start': 97, 'end': 101}, {'entity': 'I-ORG', 'score': 0.9323886, 'index': 53, 'word': '##aby', 'start': 101, 'end': 104}, {'entity': 'I-PER', 'score': 0.9997162, 'index': 55, 'word': 'Michael', 'start': 113, 'end': 120}, {'entity': 'I-PER', 'score': 0.9997843, 'index': 56, 'word': 'L', 'start': 121, 'end': 122}, {'entity': 'I-PER', 'score': 0.99741995, 'index': 57, 'word': '##yna', 'start': 122, 'end': 125}, {'entity': 'I-PER', 'score': 0.99939466, 'index': 58, 'word': '##gh', 'start': 125, 'end': 127}, {'entity': 'I-MISC', 'score': 0.99901986, 'index': 63, 'word': 'English', 'start': 148, 'end': 155}, {'entity': 'I-PER', 'score': 0.99971074, 'index': 81, 'word': 'Bob', 'start': 228, 'end': 231}, {'entity': 'I-PER', 'score': 0.9997805, 'index': 82, 'word': 'D', 'start': 232, 'end': 233}, {'entity': 'I-PER', 'score': 0.9986223, 'index': 83, 'word': '##wy', 'start': 233, 'end': 235}, {'entity': 'I-PER', 'score': 0.99585754, 'index': 84, 'word': '##er', 'start': 235, 'end': 237}, {'entity': 'I-ORG', 'score': 0.85535145, 'index': 91, 'word': 'Leicester', 'start': 272, 'end': 281}, {'entity': 'I-PER', 'score': 0.9997646, 'index': 97, 'word': 'L', 'start': 289, 'end': 290}, {'entity': 'I-PER', 'score': 0.9930842, 'index': 98, 'word': '##yna', 'start': 290, 'end': 293}, {'entity': 'I-PER', 'score': 0.9940758, 'index': 99, 'word': '##gh', 'start': 293, 'end': 295}, {'entity': 'I-ORG', 'score': 0.9975836, 'index': 118, 'word': 'Sara', 'start': 393, 'end': 397}, {'entity': 'I-ORG', 'score': 0.99905103, 'index': 119, 'word': '##cens', 'start': 397, 'end': 401}, {'entity': 'I-PER', 'score': 0.99969506, 'index': 134, 'word': 'Nigel', 'start': 456, 'end': 461}, {'entity': 'I-PER', 'score': 0.99969685, 'index': 135, 'word': 'W', 'start': 462, 'end': 463}, {'entity': 'I-PER', 'score': 0.9975733, 'index': 136, 'word': '##ray', 'start': 463, 'end': 466}, {'entity': 'I-LOC', 'score': 0.9765429, 'index': 147, 'word': 'London', 'start': 518, 'end': 524}, {'entity': 'I-MISC', 'score': 0.998803, 'index': 154, 'word': 'French', 'start': 537, 'end': 543}, {'entity': 'I-PER', 'score': 0.9997644, 'index': 156, 'word': 'Philippe', 'start': 551, 'end': 559}, {'entity': 'I-PER', 'score': 0.9996793, 'index': 157, 'word': 'Se', 'start': 560, 'end': 562}, {'entity': 'I-PER', 'score': 0.9987545, 'index': 158, 'word': '##lla', 'start': 562, 'end': 565}, {'entity': 'I-PER', 'score': 0.99972016, 'index': 165, 'word': 'L', 'start': 601, 'end': 602}, {'entity': 'I-PER', 'score': 0.99371487, 'index': 166, 'word': '##yna', 'start': 602, 'end': 605}, {'entity': 'I-PER', 'score': 0.99235594, 'index': 167, 'word': '##gh', 'start': 605, 'end': 607}, {'entity': 'I-LOC', 'score': 0.9996259, 'index': 178, 'word': 'England', 'start': 661, 'end': 668}, {'entity': 'I-PER', 'score': 0.99967766, 'index': 184, 'word': 'K', 'start': 680, 'end': 681}, {'entity': 'I-PER', 'score': 0.9993253, 'index': 185, 'word': '##yra', 'start': 681, 'end': 684}, {'entity': 'I-PER', 'score': 0.9996196, 'index': 186, 'word': '##n', 'start': 684, 'end': 685}, {'entity': 'I-PER', 'score': 0.9998228, 'index': 187, 'word': 'B', 'start': 686, 'end': 687}, {'entity': 'I-PER', 'score': 0.9964916, 'index': 188, 'word': '##rack', 'start': 687, 'end': 691}, {'entity': 'I-PER', 'score': 0.9854908, 'index': 189, 'word': '##en', 'start': 691, 'end': 693}, {'entity': 'I-MISC', 'score': 0.9986066, 'index': 197, 'word': 'French', 'start': 709, 'end': 715}, {'entity': 'I-ORG', 'score': 0.99940073, 'index': 200, 'word': 'Ha', 'start': 730, 'end': 732}, {'entity': 'I-ORG', 'score': 0.9938938, 'index': 201, 'word': '##rle', 'start': 732, 'end': 735}, {'entity': 'I-ORG', 'score': 0.9980811, 'index': 202, 'word': '##quin', 'start': 735, 'end': 739}, {'entity': 'I-ORG', 'score': 0.99666166, 'index': 203, 'word': '##s', 'start': 739, 'end': 740}, {'entity': 'I-PER', 'score': 0.99967206, 'index': 210, 'word': 'Laurent', 'start': 766, 'end': 773}, {'entity': 'I-PER', 'score': 0.99952555, 'index': 211, 'word': 'C', 'start': 774, 'end': 775}, {'entity': 'I-PER', 'score': 0.99746513, 'index': 212, 'word': '##aba', 'start': 775, 'end': 778}, {'entity': 'I-PER', 'score': 0.99943393, 'index': 213, 'word': '##nnes', 'start': 778, 'end': 782}, {'entity': 'I-PER', 'score': 0.99968255, 'index': 215, 'word': 'Laurent', 'start': 787, 'end': 794}, {'entity': 'I-PER', 'score': 0.99948597, 'index': 216, 'word': 'Ben', 'start': 795, 'end': 798}, {'entity': 'I-PER', 'score': 0.9898504, 'index': 217, 'word': '##ez', 'start': 798, 'end': 800}, {'entity': 'I-PER', 'score': 0.9984358, 'index': 218, 'word': '##ech', 'start': 800, 'end': 803}, {'entity': 'I-ORG', 'score': 0.9982267, 'index': 234, 'word': 'Gloucester', 'start': 861, 'end': 871}, {'entity': 'I-LOC', 'score': 0.9993124, 'index': 241, 'word': 'England', 'start': 886, 'end': 893}, {'entity': 'I-PER', 'score': 0.99967027, 'index': 243, 'word': 'Will', 'start': 902, 'end': 906}, {'entity': 'I-PER', 'score': 0.9997967, 'index': 244, 'word': 'Carl', 'start': 907, 'end': 911}, {'entity': 'I-PER', 'score': 0.9993622, 'index': 245, 'word': '##ing', 'start': 911, 'end': 914}, {'entity': 'I-ORG', 'score': 0.99638796, 'index': 283, 'word': 'Rugby', 'start': 1095, 'end': 1100}, {'entity': 'I-ORG', 'score': 0.9961281, 'index': 284, 'word': 'Football', 'start': 1101, 'end': 1109}, {'entity': 'I-ORG', 'score': 0.99483585, 'index': 285, 'word': 'Union', 'start': 1110, 'end': 1115}, {'entity': 'I-ORG', 'score': 0.9974832, 'index': 296, 'word': 'Bath', 'start': 1167, 'end': 1171}, {'entity': 'I-ORG', 'score': 0.9763683, 'index': 303, 'word': 'Or', 'start': 1193, 'end': 1195}, {'entity': 'I-ORG', 'score': 0.98883957, 'index': 304, 'word': '##rell', 'start': 1195, 'end': 1199}, {'entity': 'I-ORG', 'score': 0.9971819, 'index': 307, 'word': 'Northampton', 'start': 1206, 'end': 1217}, {'entity': 'I-ORG', 'score': 0.99846244, 'index': 312, 'word': 'Was', 'start': 1243, 'end': 1246}, {'entity': 'I-ORG', 'score': 0.9990206, 'index': 313, 'word': '##ps', 'start': 1246, 'end': 1248}, {'entity': 'I-ORG', 'score': 0.9957409, 'index': 315, 'word': 'Bristol', 'start': 1253, 'end': 1260}]
[{'entity': 'I-MISC', 'score': 0.98815185, 'index': 6, 'word': 'SC', 'start': 9, 'end': 11}, {'entity': 'I-MISC', 'score': 0.634395, 'index': 8, 'word': '##TI', 'start': 13, 'end': 15}, {'entity': 'I-MISC', 'score': 0.696723, 'index': 9, 'word': '##S', 'start': 15, 'end': 16}, {'entity': 'I-LOC', 'score': 0.76316464, 'index': 25, 'word': 'L', 'start': 42, 'end': 43}, {'entity': 'I-ORG', 'score': 0.89719623, 'index': 26, 'word': '##ON', 'start': 43, 'end': 45}, {'entity': 'I-ORG', 'score': 0.47645015, 'index': 27, 'word': '##D', 'start': 45, 'end': 46}, {'entity': 'I-LOC', 'score': 0.76042795, 'index': 28, 'word': '##ON', 'start': 46, 'end': 48}, {'entity': 'I-MISC', 'score': 0.99607664, 'index': 38, 'word': 'Scottish', 'start': 65, 'end': 73}, {'entity': 'I-ORG', 'score': 0.9997589, 'index': 86, 'word': 'Green', 'start': 233, 'end': 238}, {'entity': 'I-ORG', 'score': 0.99968183, 'index': 87, 'word': '##ock', 'start': 238, 'end': 241}, {'entity': 'I-ORG', 'score': 0.99961877, 'index': 88, 'word': 'Morton', 'start': 242, 'end': 248}, {'entity': 'I-ORG', 'score': 0.99973243, 'index': 100, 'word': 'Dundee', 'start': 268, 'end': 274}, {'entity': 'I-ORG', 'score': 0.99975175, 'index': 112, 'word': 'St', 'start': 294, 'end': 296}, {'entity': 'I-ORG', 'score': 0.9996791, 'index': 113, 'word': 'Johnstone', 'start': 297, 'end': 306}, {'entity': 'I-ORG', 'score': 0.9997249, 'index': 125, 'word': 'St', 'start': 326, 'end': 328}, {'entity': 'I-ORG', 'score': 0.99935263, 'index': 126, 'word': 'Mir', 'start': 329, 'end': 332}, {'entity': 'I-ORG', 'score': 0.9995969, 'index': 127, 'word': '##ren', 'start': 332, 'end': 335}, {'entity': 'I-ORG', 'score': 0.9998012, 'index': 139, 'word': 'Air', 'start': 355, 'end': 358}, {'entity': 'I-ORG', 'score': 0.9991947, 'index': 140, 'word': '##dr', 'start': 358, 'end': 360}, {'entity': 'I-ORG', 'score': 0.9995127, 'index': 141, 'word': '##ie', 'start': 360, 'end': 362}, {'entity': 'I-ORG', 'score': 0.99946994, 'index': 142, 'word': '##onia', 'start': 362, 'end': 366}, {'entity': 'I-ORG', 'score': 0.99934727, 'index': 143, 'word': '##ns', 'start': 366, 'end': 368}, {'entity': 'I-ORG', 'score': 0.9997737, 'index': 155, 'word': 'F', 'start': 388, 'end': 389}, {'entity': 'I-ORG', 'score': 0.9995927, 'index': 156, 'word': '##alk', 'start': 389, 'end': 392}, {'entity': 'I-ORG', 'score': 0.9996828, 'index': 157, 'word': '##irk', 'start': 392, 'end': 395}, {'entity': 'I-ORG', 'score': 0.9998087, 'index': 169, 'word': 'Clyde', 'start': 415, 'end': 420}, {'entity': 'I-ORG', 'score': 0.99953485, 'index': 170, 'word': '##bank', 'start': 420, 'end': 424}, {'entity': 'I-ORG', 'score': 0.9997465, 'index': 182, 'word': 'Part', 'start': 444, 'end': 448}, {'entity': 'I-ORG', 'score': 0.9995863, 'index': 183, 'word': '##ick', 'start': 448, 'end': 451}, {'entity': 'I-ORG', 'score': 0.99971706, 'index': 195, 'word': 'Stirling', 'start': 471, 'end': 479}, {'entity': 'I-ORG', 'score': 0.9997577, 'index': 207, 'word': 'East', 'start': 499, 'end': 503}, {'entity': 'I-ORG', 'score': 0.99963796, 'index': 208, 'word': 'Fife', 'start': 504, 'end': 508}, {'entity': 'I-ORG', 'score': 0.9997615, 'index': 226, 'word': 'Livingston', 'start': 546, 'end': 556}, {'entity': 'I-ORG', 'score': 0.99968934, 'index': 238, 'word': 'Queen', 'start': 576, 'end': 581}, {'entity': 'I-ORG', 'score': 0.999263, 'index': 239, 'word': 'of', 'start': 582, 'end': 584}, {'entity': 'I-ORG', 'score': 0.99931407, 'index': 240, 'word': 'South', 'start': 585, 'end': 590}, {'entity': 'I-ORG', 'score': 0.9996859, 'index': 252, 'word': 'A', 'start': 610, 'end': 611}, {'entity': 'I-ORG', 'score': 0.99943846, 'index': 253, 'word': '##yr', 'start': 611, 'end': 613}, {'entity': 'I-ORG', 'score': 0.99961615, 'index': 265, 'word': 'St', 'start': 633, 'end': 635}, {'entity': 'I-ORG', 'score': 0.9975057, 'index': 266, 'word': '##en', 'start': 635, 'end': 637}, {'entity': 'I-ORG', 'score': 0.99827886, 'index': 267, 'word': '##house', 'start': 637, 'end': 642}, {'entity': 'I-ORG', 'score': 0.99918145, 'index': 268, 'word': '##mu', 'start': 642, 'end': 644}, {'entity': 'I-ORG', 'score': 0.9994191, 'index': 269, 'word': '##ir', 'start': 644, 'end': 646}, {'entity': 'I-ORG', 'score': 0.99957794, 'index': 281, 'word': 'Hamilton', 'start': 666, 'end': 674}, {'entity': 'I-ORG', 'score': 0.9996043, 'index': 293, 'word': 'St', 'start': 694, 'end': 696}, {'entity': 'I-ORG', 'score': 0.99915755, 'index': 294, 'word': '##ran', 'start': 696, 'end': 699}, {'entity': 'I-ORG', 'score': 0.99913615, 'index': 295, 'word': '##rae', 'start': 699, 'end': 702}, {'entity': 'I-ORG', 'score': 0.9983492, 'index': 296, 'word': '##r', 'start': 702, 'end': 703}, {'entity': 'I-ORG', 'score': 0.99969614, 'index': 308, 'word': 'B', 'start': 723, 'end': 724}, {'entity': 'I-ORG', 'score': 0.99898845, 'index': 309, 'word': '##re', 'start': 724, 'end': 726}, {'entity': 'I-ORG', 'score': 0.99950874, 'index': 310, 'word': '##chin', 'start': 726, 'end': 730}, {'entity': 'I-ORG', 'score': 0.9997124, 'index': 322, 'word': 'Clyde', 'start': 750, 'end': 755}, {'entity': 'I-ORG', 'score': 0.99961865, 'index': 334, 'word': 'Du', 'start': 775, 'end': 777}, {'entity': 'I-ORG', 'score': 0.99775934, 'index': 335, 'word': '##mba', 'start': 777, 'end': 780}, {'entity': 'I-ORG', 'score': 0.9995516, 'index': 336, 'word': '##rton', 'start': 780, 'end': 784}, {'entity': 'I-ORG', 'score': 0.999713, 'index': 348, 'word': 'Be', 'start': 804, 'end': 806}, {'entity': 'I-ORG', 'score': 0.99965525, 'index': 349, 'word': '##rwick', 'start': 806, 'end': 811}, {'entity': 'I-ORG', 'score': 0.99969804, 'index': 367, 'word': 'Albion', 'start': 852, 'end': 858}, {'entity': 'I-ORG', 'score': 0.99964964, 'index': 379, 'word': 'For', 'start': 878, 'end': 881}, {'entity': 'I-ORG', 'score': 0.9993405, 'index': 380, 'word': '##far', 'start': 881, 'end': 884}, {'entity': 'I-ORG', 'score': 0.9922855, 'index': 390, 'word': 'S', 'start': 901, 'end': 902}, {'entity': 'I-ORG', 'score': 0.9992663, 'index': 392, 'word': 'Co', 'start': 904, 'end': 906}, {'entity': 'I-ORG', 'score': 0.99907994, 'index': 394, 'word': '##den', 'start': 907, 'end': 910}, {'entity': 'I-ORG', 'score': 0.99777776, 'index': 395, 'word': '##beat', 'start': 910, 'end': 914}, {'entity': 'I-ORG', 'score': 0.9988951, 'index': 396, 'word': '##h', 'start': 914, 'end': 915}, {'entity': 'I-ORG', 'score': 0.52420586, 'index': 406, 'word': 'S', 'start': 932, 'end': 933}, {'entity': 'I-ORG', 'score': 0.9554109, 'index': 408, 'word': 'A', 'start': 935, 'end': 936}, {'entity': 'I-ORG', 'score': 0.9932492, 'index': 409, 'word': '##rb', 'start': 936, 'end': 938}, {'entity': 'I-ORG', 'score': 0.99284256, 'index': 410, 'word': '##roa', 'start': 938, 'end': 941}, {'entity': 'I-ORG', 'score': 0.93301165, 'index': 411, 'word': '##th', 'start': 941, 'end': 943}, {'entity': 'I-ORG', 'score': 0.90791863, 'index': 421, 'word': 'S', 'start': 960, 'end': 961}, {'entity': 'I-ORG', 'score': 0.99923885, 'index': 423, 'word': 'All', 'start': 963, 'end': 966}, {'entity': 'I-ORG', 'score': 0.99944454, 'index': 424, 'word': '##oa', 'start': 966, 'end': 968}, {'entity': 'I-ORG', 'score': 0.94342506, 'index': 434, 'word': 'S', 'start': 985, 'end': 986}, {'entity': 'I-ORG', 'score': 0.9992956, 'index': 436, 'word': 'Queen', 'start': 988, 'end': 993}, {'entity': 'I-ORG', 'score': 0.9603725, 'index': 438, 'word': 's', 'start': 995, 'end': 996}, {'entity': 'I-ORG', 'score': 0.9990476, 'index': 439, 'word': 'Park', 'start': 997, 'end': 1001}, {'entity': 'I-ORG', 'score': 0.8884645, 'index': 449, 'word': 'S', 'start': 1018, 'end': 1019}, {'entity': 'I-ORG', 'score': 0.9996119, 'index': 451, 'word': 'Mont', 'start': 1021, 'end': 1025}, {'entity': 'I-ORG', 'score': 0.99906117, 'index': 452, 'word': '##rose', 'start': 1025, 'end': 1029}, {'entity': 'I-ORG', 'score': 0.97620183, 'index': 462, 'word': 'S', 'start': 1046, 'end': 1047}, {'entity': 'I-ORG', 'score': 0.9995425, 'index': 464, 'word': 'Inverness', 'start': 1049, 'end': 1058}, {'entity': 'I-ORG', 'score': 0.88594925, 'index': 466, 'word': '##tle', 'start': 1063, 'end': 1066}, {'entity': 'I-ORG', 'score': 0.9828174, 'index': 476, 'word': 'S', 'start': 1083, 'end': 1084}, {'entity': 'I-ORG', 'score': 0.9989324, 'index': 478, 'word': 'East', 'start': 1086, 'end': 1090}, {'entity': 'I-ORG', 'score': 0.9996032, 'index': 479, 'word': 'Stirling', 'start': 1091, 'end': 1099}, {'entity': 'I-ORG', 'score': 0.7962738, 'index': 489, 'word': 'S', 'start': 1116, 'end': 1117}, {'entity': 'I-ORG', 'score': 0.99903643, 'index': 491, 'word': 'Ross', 'start': 1119, 'end': 1123}, {'entity': 'I-ORG', 'score': 0.9995478, 'index': 492, 'word': 'County', 'start': 1124, 'end': 1130}, {'entity': 'I-ORG', 'score': 0.89750427, 'index': 502, 'word': 'S', 'start': 1147, 'end': 1148}]
[{'entity': 'I-MISC', 'score': 0.99700814, 'index': 6, 'word': 'E', 'start': 9, 'end': 10}, {'entity': 'I-MISC', 'score': 0.9166906, 'index': 7, 'word': '##NG', 'start': 10, 'end': 12}, {'entity': 'I-MISC', 'score': 0.46493426, 'index': 8, 'word': '##L', 'start': 12, 'end': 13}, {'entity': 'I-ORG', 'score': 0.44838768, 'index': 9, 'word': '##IS', 'start': 13, 'end': 15}, {'entity': 'I-ORG', 'score': 0.8969026, 'index': 25, 'word': 'L', 'start': 41, 'end': 42}, {'entity': 'I-ORG', 'score': 0.96736354, 'index': 26, 'word': '##ON', 'start': 42, 'end': 44}, {'entity': 'I-ORG', 'score': 0.8591567, 'index': 27, 'word': '##D', 'start': 44, 'end': 45}, {'entity': 'I-ORG', 'score': 0.9703705, 'index': 28, 'word': '##ON', 'start': 45, 'end': 47}, {'entity': 'I-MISC', 'score': 0.99872214, 'index': 38, 'word': 'English', 'start': 64, 'end': 71}, {'entity': 'I-ORG', 'score': 0.99980503, 'index': 87, 'word': 'Stoke', 'start': 238, 'end': 243}, {'entity': 'I-ORG', 'score': 0.9997944, 'index': 99, 'word': 'Bar', 'start': 264, 'end': 267}, {'entity': 'I-ORG', 'score': 0.99969745, 'index': 100, 'word': '##nsley', 'start': 267, 'end': 272}, {'entity': 'I-ORG', 'score': 0.99976987, 'index': 112, 'word': 'Norwich', 'start': 292, 'end': 299}, {'entity': 'I-ORG', 'score': 0.9996556, 'index': 124, 'word': 'T', 'start': 319, 'end': 320}, {'entity': 'I-ORG', 'score': 0.9991744, 'index': 125, 'word': '##ran', 'start': 320, 'end': 323}, {'entity': 'I-ORG', 'score': 0.99953127, 'index': 126, 'word': '##mere', 'start': 323, 'end': 327}, {'entity': 'I-ORG', 'score': 0.9997969, 'index': 138, 'word': 'Bolton', 'start': 347, 'end': 353}, {'entity': 'I-ORG', 'score': 0.9997843, 'index': 150, 'word': 'Queens', 'start': 373, 'end': 379}, {'entity': 'I-ORG', 'score': 0.99967194, 'index': 151, 'word': 'Park', 'start': 380, 'end': 384}, {'entity': 'I-ORG', 'score': 0.99973184, 'index': 152, 'word': 'Rangers', 'start': 385, 'end': 392}, {'entity': 'I-ORG', 'score': 0.99978477, 'index': 164, 'word': 'Wolverhampton', 'start': 412, 'end': 425}, {'entity': 'I-ORG', 'score': 0.9997478, 'index': 176, 'word': 'Swindon', 'start': 445, 'end': 452}, {'entity': 'I-ORG', 'score': 0.9997029, 'index': 188, 'word': 'Bradford', 'start': 472, 'end': 480}, {'entity': 'I-ORG', 'score': 0.9997702, 'index': 200, 'word': 'Portsmouth', 'start': 500, 'end': 510}, {'entity': 'I-ORG', 'score': 0.999793, 'index': 212, 'word': 'Ipswich', 'start': 530, 'end': 537}, {'entity': 'I-ORG', 'score': 0.9997719, 'index': 224, 'word': 'Crystal', 'start': 557, 'end': 564}, {'entity': 'I-ORG', 'score': 0.9996244, 'index': 225, 'word': 'Palace', 'start': 565, 'end': 571}, {'entity': 'I-ORG', 'score': 0.9997907, 'index': 237, 'word': 'Port', 'start': 591, 'end': 595}, {'entity': 'I-ORG', 'score': 0.9996966, 'index': 238, 'word': 'Vale', 'start': 596, 'end': 600}, {'entity': 'I-ORG', 'score': 0.9997054, 'index': 250, 'word': 'Birmingham', 'start': 620, 'end': 630}, {'entity': 'I-ORG', 'score': 0.9997025, 'index': 262, 'word': 'Reading', 'start': 650, 'end': 657}, {'entity': 'I-ORG', 'score': 0.999706, 'index': 274, 'word': 'Huddersfield', 'start': 678, 'end': 690}, {'entity': 'I-ORG', 'score': 0.99957114, 'index': 286, 'word': 'Oxford', 'start': 710, 'end': 716}, {'entity': 'I-ORG', 'score': 0.9997508, 'index': 298, 'word': 'Manchester', 'start': 736, 'end': 746}, {'entity': 'I-ORG', 'score': 0.999493, 'index': 299, 'word': 'City', 'start': 747, 'end': 751}, {'entity': 'I-ORG', 'score': 0.99977726, 'index': 311, 'word': 'West', 'start': 771, 'end': 775}, {'entity': 'I-ORG', 'score': 0.9996979, 'index': 312, 'word': 'B', 'start': 776, 'end': 777}, {'entity': 'I-ORG', 'score': 0.99919003, 'index': 313, 'word': '##rom', 'start': 777, 'end': 780}, {'entity': 'I-ORG', 'score': 0.9995758, 'index': 314, 'word': '##wich', 'start': 780, 'end': 784}, {'entity': 'I-ORG', 'score': 0.9997484, 'index': 326, 'word': 'Oldham', 'start': 804, 'end': 810}, {'entity': 'I-ORG', 'score': 0.99978286, 'index': 338, 'word': 'Sheffield', 'start': 830, 'end': 839}, {'entity': 'I-ORG', 'score': 0.9995888, 'index': 339, 'word': 'United', 'start': 840, 'end': 846}, {'entity': 'I-ORG', 'score': 0.9997336, 'index': 351, 'word': 'Grimsby', 'start': 866, 'end': 873}, {'entity': 'I-ORG', 'score': 0.9997392, 'index': 363, 'word': 'South', 'start': 893, 'end': 898}, {'entity': 'I-ORG', 'score': 0.99962044, 'index': 364, 'word': '##end', 'start': 898, 'end': 901}, {'entity': 'I-ORG', 'score': 0.999718, 'index': 376, 'word': 'Charlton', 'start': 922, 'end': 930}, {'entity': 'I-ORG', 'score': 0.9991948, 'index': 394, 'word': 'Plymouth', 'start': 968, 'end': 976}, {'entity': 'I-ORG', 'score': 0.9954725, 'index': 404, 'word': 'S', 'start': 995, 'end': 996}, {'entity': 'I-ORG', 'score': 0.9996625, 'index': 406, 'word': 'Brent', 'start': 998, 'end': 1003}, {'entity': 'I-ORG', 'score': 0.9987041, 'index': 407, 'word': '##ford', 'start': 1003, 'end': 1007}, {'entity': 'I-ORG', 'score': 0.9995803, 'index': 419, 'word': 'Bury', 'start': 1028, 'end': 1032}, {'entity': 'I-ORG', 'score': 0.80594164, 'index': 429, 'word': 'S', 'start': 1050, 'end': 1051}, {'entity': 'I-ORG', 'score': 0.99963653, 'index': 431, 'word': 'Chesterfield', 'start': 1053, 'end': 1065}, {'entity': 'I-ORG', 'score': 0.9600782, 'index': 441, 'word': 'S', 'start': 1082, 'end': 1083}, {'entity': 'I-ORG', 'score': 0.9987042, 'index': 443, 'word': 'Mill', 'start': 1085, 'end': 1089}, {'entity': 'I-ORG', 'score': 0.9966509, 'index': 444, 'word': '##wall', 'start': 1089, 'end': 1093}, {'entity': 'I-ORG', 'score': 0.9994616, 'index': 456, 'word': 'Shrewsbury', 'start': 1113, 'end': 1123}, {'entity': 'I-ORG', 'score': 0.7947198, 'index': 466, 'word': 'S', 'start': 1140, 'end': 1141}, {'entity': 'I-ORG', 'score': 0.9994985, 'index': 468, 'word': 'Blackpool', 'start': 1143, 'end': 1152}, {'entity': 'I-ORG', 'score': 0.9995925, 'index': 480, 'word': 'York', 'start': 1172, 'end': 1176}, {'entity': 'I-ORG', 'score': 0.976265, 'index': 490, 'word': 'S', 'start': 1193, 'end': 1194}, {'entity': 'I-ORG', 'score': 0.99928004, 'index': 492, 'word': 'Burnley', 'start': 1196, 'end': 1203}, {'entity': 'I-ORG', 'score': 0.9994585, 'index': 504, 'word': 'Bournemouth', 'start': 1223, 'end': 1234}]
[{'entity': 'I-MISC', 'score': 0.9886099, 'index': 6, 'word': 'SC', 'start': 9, 'end': 11}, {'entity': 'I-MISC', 'score': 0.87408704, 'index': 8, 'word': '##TI', 'start': 13, 'end': 15}, {'entity': 'I-MISC', 'score': 0.8385634, 'index': 9, 'word': '##S', 'start': 15, 'end': 16}, {'entity': 'I-ORG', 'score': 0.989782, 'index': 25, 'word': 'G', 'start': 40, 'end': 41}, {'entity': 'I-ORG', 'score': 0.700573, 'index': 26, 'word': '##LA', 'start': 41, 'end': 43}, {'entity': 'I-ORG', 'score': 0.8722751, 'index': 27, 'word': '##S', 'start': 43, 'end': 44}, {'entity': 'I-ORG', 'score': 0.8454621, 'index': 28, 'word': '##G', 'start': 44, 'end': 45}, {'entity': 'I-ORG', 'score': 0.5655823, 'index': 29, 'word': '##OW', 'start': 45, 'end': 47}, {'entity': 'I-MISC', 'score': 0.99827087, 'index': 41, 'word': 'Scottish', 'start': 75, 'end': 83}, {'entity': 'I-ORG', 'score': 0.9997507, 'index': 61, 'word': 'Green', 'start': 141, 'end': 146}, {'entity': 'I-ORG', 'score': 0.99966013, 'index': 62, 'word': '##ock', 'start': 146, 'end': 149}, {'entity': 'I-ORG', 'score': 0.99963665, 'index': 63, 'word': 'Morton', 'start': 150, 'end': 156}, {'entity': 'I-ORG', 'score': 0.99967813, 'index': 65, 'word': 'F', 'start': 159, 'end': 160}, {'entity': 'I-ORG', 'score': 0.99953663, 'index': 66, 'word': '##alk', 'start': 160, 'end': 163}, {'entity': 'I-ORG', 'score': 0.99960583, 'index': 67, 'word': '##irk', 'start': 163, 'end': 166}, {'entity': 'I-ORG', 'score': 0.9997547, 'index': 73, 'word': 'Part', 'start': 174, 'end': 178}, {'entity': 'I-ORG', 'score': 0.99961144, 'index': 74, 'word': '##ick', 'start': 178, 'end': 181}, {'entity': 'I-ORG', 'score': 0.9997155, 'index': 76, 'word': 'St', 'start': 184, 'end': 186}, {'entity': 'I-ORG', 'score': 0.9992448, 'index': 77, 'word': 'Mir', 'start': 187, 'end': 190}, {'entity': 'I-ORG', 'score': 0.999607, 'index': 78, 'word': '##ren', 'start': 190, 'end': 193}, {'entity': 'I-ORG', 'score': 0.99963486, 'index': 84, 'word': 'Stirling', 'start': 201, 'end': 209}, {'entity': 'I-ORG', 'score': 0.9997073, 'index': 86, 'word': 'Dundee', 'start': 212, 'end': 218}, {'entity': 'I-ORG', 'score': 0.99970466, 'index': 96, 'word': 'East', 'start': 238, 'end': 242}, {'entity': 'I-ORG', 'score': 0.9995901, 'index': 97, 'word': 'Fife', 'start': 243, 'end': 247}, {'entity': 'I-ORG', 'score': 0.99972254, 'index': 99, 'word': 'Clyde', 'start': 250, 'end': 255}, {'entity': 'I-ORG', 'score': 0.9994362, 'index': 100, 'word': '##bank', 'start': 255, 'end': 259}, {'entity': 'I-ORG', 'score': 0.9996418, 'index': 102, 'word': 'St', 'start': 262, 'end': 264}, {'entity': 'I-ORG', 'score': 0.9996245, 'index': 103, 'word': 'Johnstone', 'start': 265, 'end': 274}, {'entity': 'I-ORG', 'score': 0.9997472, 'index': 109, 'word': 'Air', 'start': 282, 'end': 285}, {'entity': 'I-ORG', 'score': 0.99749655, 'index': 110, 'word': '##dr', 'start': 285, 'end': 287}, {'entity': 'I-ORG', 'score': 0.99921465, 'index': 111, 'word': '##ie', 'start': 287, 'end': 289}, {'entity': 'I-ORG', 'score': 0.99899954, 'index': 112, 'word': '##onia', 'start': 289, 'end': 293}, {'entity': 'I-ORG', 'score': 0.99895275, 'index': 113, 'word': '##ns', 'start': 293, 'end': 295}, {'entity': 'I-ORG', 'score': 0.9996637, 'index': 125, 'word': 'A', 'start': 321, 'end': 322}, {'entity': 'I-ORG', 'score': 0.9996125, 'index': 126, 'word': '##yr', 'start': 322, 'end': 324}, {'entity': 'I-ORG', 'score': 0.99971396, 'index': 128, 'word': 'Be', 'start': 327, 'end': 329}, {'entity': 'I-ORG', 'score': 0.999653, 'index': 129, 'word': '##rwick', 'start': 329, 'end': 334}, {'entity': 'I-ORG', 'score': 0.9997279, 'index': 135, 'word': 'Clyde', 'start': 342, 'end': 347}, {'entity': 'I-ORG', 'score': 0.999701, 'index': 137, 'word': 'Queen', 'start': 350, 'end': 355}, {'entity': 'I-ORG', 'score': 0.9993648, 'index': 138, 'word': 'of', 'start': 356, 'end': 358}, {'entity': 'I-ORG', 'score': 0.9995012, 'index': 139, 'word': 'South', 'start': 359, 'end': 364}, {'entity': 'I-ORG', 'score': 0.99961925, 'index': 145, 'word': 'Du', 'start': 372, 'end': 374}, {'entity': 'I-ORG', 'score': 0.997821, 'index': 146, 'word': '##mba', 'start': 374, 'end': 377}, {'entity': 'I-ORG', 'score': 0.999595, 'index': 147, 'word': '##rton', 'start': 377, 'end': 381}, {'entity': 'I-ORG', 'score': 0.999706, 'index': 149, 'word': 'B', 'start': 384, 'end': 385}, {'entity': 'I-ORG', 'score': 0.99833554, 'index': 150, 'word': '##re', 'start': 385, 'end': 387}, {'entity': 'I-ORG', 'score': 0.99946696, 'index': 151, 'word': '##chin', 'start': 387, 'end': 391}, {'entity': 'I-ORG', 'score': 0.99971, 'index': 157, 'word': 'Livingston', 'start': 399, 'end': 409}, {'entity': 'I-ORG', 'score': 0.99965537, 'index': 159, 'word': 'Hamilton', 'start': 412, 'end': 420}, {'entity': 'I-ORG', 'score': 0.9996674, 'index': 165, 'word': 'St', 'start': 428, 'end': 430}, {'entity': 'I-ORG', 'score': 0.99880385, 'index': 166, 'word': '##en', 'start': 430, 'end': 432}, {'entity': 'I-ORG', 'score': 0.9988236, 'index': 167, 'word': '##house', 'start': 432, 'end': 437}, {'entity': 'I-ORG', 'score': 0.99927896, 'index': 168, 'word': '##mu', 'start': 437, 'end': 439}, {'entity': 'I-ORG', 'score': 0.9994911, 'index': 169, 'word': '##ir', 'start': 439, 'end': 441}, {'entity': 'I-ORG', 'score': 0.9996258, 'index': 171, 'word': 'St', 'start': 444, 'end': 446}, {'entity': 'I-ORG', 'score': 0.99914145, 'index': 172, 'word': '##ran', 'start': 446, 'end': 449}, {'entity': 'I-ORG', 'score': 0.9987312, 'index': 173, 'word': '##rae', 'start': 449, 'end': 452}, {'entity': 'I-ORG', 'score': 0.99878985, 'index': 174, 'word': '##r', 'start': 452, 'end': 453}, {'entity': 'I-ORG', 'score': 0.9996339, 'index': 186, 'word': 'Albion', 'start': 481, 'end': 487}, {'entity': 'I-ORG', 'score': 0.99948716, 'index': 188, 'word': 'Co', 'start': 490, 'end': 492}, {'entity': 'I-ORG', 'score': 0.99218714, 'index': 189, 'word': '##w', 'start': 492, 'end': 493}, {'entity': 'I-ORG', 'score': 0.9981633, 'index': 190, 'word': '##den', 'start': 493, 'end': 496}, {'entity': 'I-ORG', 'score': 0.9946243, 'index': 191, 'word': '##beat', 'start': 496, 'end': 500}, {'entity': 'I-ORG', 'score': 0.9991696, 'index': 192, 'word': '##h', 'start': 500, 'end': 501}, {'entity': 'I-ORG', 'score': 0.9996112, 'index': 198, 'word': 'A', 'start': 509, 'end': 510}, {'entity': 'I-ORG', 'score': 0.99898213, 'index': 199, 'word': '##rb', 'start': 510, 'end': 512}, {'entity': 'I-ORG', 'score': 0.99853504, 'index': 200, 'word': '##roa', 'start': 512, 'end': 515}, {'entity': 'I-ORG', 'score': 0.99927527, 'index': 201, 'word': '##th', 'start': 515, 'end': 517}, {'entity': 'I-ORG', 'score': 0.99957997, 'index': 203, 'word': 'East', 'start': 520, 'end': 524}, {'entity': 'I-ORG', 'score': 0.99940395, 'index': 204, 'word': 'Stirling', 'start': 525, 'end': 533}, {'entity': 'I-ORG', 'score': 0.9996234, 'index': 210, 'word': 'Inverness', 'start': 541, 'end': 550}, {'entity': 'I-ORG', 'score': 0.9993736, 'index': 211, 'word': 'This', 'start': 551, 'end': 555}, {'entity': 'I-ORG', 'score': 0.9992755, 'index': 212, 'word': '##tle', 'start': 555, 'end': 558}, {'entity': 'I-ORG', 'score': 0.9996841, 'index': 214, 'word': 'All', 'start': 561, 'end': 564}, {'entity': 'I-ORG', 'score': 0.99946564, 'index': 215, 'word': '##oa', 'start': 564, 'end': 566}, {'entity': 'I-ORG', 'score': 0.9997402, 'index': 221, 'word': 'Mont', 'start': 574, 'end': 578}, {'entity': 'I-ORG', 'score': 0.9994772, 'index': 222, 'word': '##rose', 'start': 578, 'end': 582}, {'entity': 'I-ORG', 'score': 0.9996834, 'index': 224, 'word': 'Ross', 'start': 585, 'end': 589}, {'entity': 'I-ORG', 'score': 0.99948275, 'index': 225, 'word': 'County', 'start': 590, 'end': 596}, {'entity': 'I-ORG', 'score': 0.9996513, 'index': 231, 'word': 'Queen', 'start': 604, 'end': 609}, {'entity': 'I-ORG', 'score': 0.99936265, 'index': 232, 'word': "'", 'start': 610, 'end': 611}, {'entity': 'I-ORG', 'score': 0.99952364, 'index': 233, 'word': 's', 'start': 611, 'end': 612}, {'entity': 'I-ORG', 'score': 0.9994898, 'index': 234, 'word': 'Park', 'start': 613, 'end': 617}, {'entity': 'I-ORG', 'score': 0.99939895, 'index': 236, 'word': 'For', 'start': 620, 'end': 623}, {'entity': 'I-ORG', 'score': 0.9986432, 'index': 237, 'word': '##far', 'start': 623, 'end': 626}]
[{'entity': 'I-MISC', 'score': 0.99723756, 'index': 6, 'word': 'E', 'start': 9, 'end': 10}, {'entity': 'I-MISC', 'score': 0.9417038, 'index': 7, 'word': '##NG', 'start': 10, 'end': 12}, {'entity': 'I-MISC', 'score': 0.87692016, 'index': 8, 'word': '##L', 'start': 12, 'end': 13}, {'entity': 'I-LOC', 'score': 0.51787186, 'index': 25, 'word': 'L', 'start': 39, 'end': 40}, {'entity': 'I-ORG', 'score': 0.93202084, 'index': 26, 'word': '##ON', 'start': 40, 'end': 42}, {'entity': 'I-ORG', 'score': 0.8394966, 'index': 27, 'word': '##D', 'start': 42, 'end': 43}, {'entity': 'I-ORG', 'score': 0.93481684, 'index': 28, 'word': '##ON', 'start': 43, 'end': 45}, {'entity': 'I-MISC', 'score': 0.9988123, 'index': 40, 'word': 'English', 'start': 73, 'end': 80}, {'entity': 'I-ORG', 'score': 0.9997172, 'index': 60, 'word': 'Bradford', 'start': 138, 'end': 146}, {'entity': 'I-ORG', 'score': 0.999498, 'index': 62, 'word': 'T', 'start': 149, 'end': 150}, {'entity': 'I-ORG', 'score': 0.9993506, 'index': 63, 'word': '##ran', 'start': 150, 'end': 153}, {'entity': 'I-ORG', 'score': 0.99946636, 'index': 64, 'word': '##mere', 'start': 153, 'end': 157}, {'entity': 'I-ORG', 'score': 0.999683, 'index': 70, 'word': 'Grimsby', 'start': 165, 'end': 172}, {'entity': 'I-ORG', 'score': 0.9996915, 'index': 72, 'word': 'Portsmouth', 'start': 175, 'end': 185}, {'entity': 'I-ORG', 'score': 0.9997379, 'index': 78, 'word': 'Huddersfield', 'start': 193, 'end': 205}, {'entity': 'I-ORG', 'score': 0.9996953, 'index': 80, 'word': 'Crystal', 'start': 208, 'end': 215}, {'entity': 'I-ORG', 'score': 0.9995272, 'index': 81, 'word': 'Palace', 'start': 216, 'end': 222}, {'entity': 'I-ORG', 'score': 0.99968743, 'index': 87, 'word': 'Norwich', 'start': 230, 'end': 237}, {'entity': 'I-ORG', 'score': 0.9997409, 'index': 89, 'word': 'Wolverhampton', 'start': 240, 'end': 253}, {'entity': 'I-ORG', 'score': 0.9997837, 'index': 95, 'word': 'Oldham', 'start': 261, 'end': 267}, {'entity': 'I-ORG', 'score': 0.9997886, 'index': 97, 'word': 'Ipswich', 'start': 270, 'end': 277}, {'entity': 'I-ORG', 'score': 0.99974126, 'index': 103, 'word': 'Port', 'start': 285, 'end': 289}, {'entity': 'I-ORG', 'score': 0.99966514, 'index': 104, 'word': 'Vale', 'start': 290, 'end': 294}, {'entity': 'I-ORG', 'score': 0.999663, 'index': 106, 'word': 'Oxford', 'start': 297, 'end': 303}, {'entity': 'I-ORG', 'score': 0.99973804, 'index': 112, 'word': 'Reading', 'start': 311, 'end': 318}, {'entity': 'I-ORG', 'score': 0.99975604, 'index': 114, 'word': 'Stoke', 'start': 321, 'end': 326}, {'entity': 'I-ORG', 'score': 0.9996562, 'index': 120, 'word': 'South', 'start': 334, 'end': 339}, {'entity': 'I-ORG', 'score': 0.9995633, 'index': 121, 'word': '##end', 'start': 339, 'end': 342}, {'entity': 'I-ORG', 'score': 0.9997353, 'index': 123, 'word': 'Swindon', 'start': 345, 'end': 352}, {'entity': 'I-ORG', 'score': 0.99962735, 'index': 133, 'word': 'Birmingham', 'start': 372, 'end': 382}, {'entity': 'I-ORG', 'score': 0.9996637, 'index': 135, 'word': 'Bar', 'start': 385, 'end': 388}, {'entity': 'I-ORG', 'score': 0.99962723, 'index': 136, 'word': '##nsley', 'start': 388, 'end': 393}, {'entity': 'I-ORG', 'score': 0.99976856, 'index': 138, 'word': 'Manchester', 'start': 396, 'end': 406}, {'entity': 'I-ORG', 'score': 0.99964464, 'index': 139, 'word': 'City', 'start': 407, 'end': 411}, {'entity': 'I-ORG', 'score': 0.9997315, 'index': 141, 'word': 'Charlton', 'start': 414, 'end': 422}, {'entity': 'I-ORG', 'score': 0.99970263, 'index': 149, 'word': 'Queens', 'start': 445, 'end': 451}, {'entity': 'I-ORG', 'score': 0.99955827, 'index': 150, 'word': 'Park', 'start': 452, 'end': 456}, {'entity': 'I-ORG', 'score': 0.9997123, 'index': 151, 'word': 'Rangers', 'start': 457, 'end': 464}, {'entity': 'I-ORG', 'score': 0.9997408, 'index': 153, 'word': 'Bolton', 'start': 467, 'end': 473}, {'entity': 'I-ORG', 'score': 0.99970394, 'index': 164, 'word': 'Blackpool', 'start': 497, 'end': 506}, {'entity': 'I-ORG', 'score': 0.9995345, 'index': 166, 'word': 'W', 'start': 509, 'end': 510}, {'entity': 'I-ORG', 'score': 0.99808794, 'index': 167, 'word': '##y', 'start': 510, 'end': 511}, {'entity': 'I-ORG', 'score': 0.9992835, 'index': 168, 'word': '##combe', 'start': 511, 'end': 516}, {'entity': 'I-ORG', 'score': 0.9996413, 'index': 174, 'word': 'Bournemouth', 'start': 524, 'end': 535}, {'entity': 'I-ORG', 'score': 0.99968565, 'index': 176, 'word': 'Peterborough', 'start': 538, 'end': 550}, {'entity': 'I-ORG', 'score': 0.99970657, 'index': 182, 'word': 'Bristol', 'start': 558, 'end': 565}, {'entity': 'I-ORG', 'score': 0.9995852, 'index': 183, 'word': 'Rovers', 'start': 566, 'end': 572}, {'entity': 'I-ORG', 'score': 0.9997143, 'index': 185, 'word': 'Stock', 'start': 575, 'end': 580}, {'entity': 'I-ORG', 'score': 0.99950814, 'index': 186, 'word': '##port', 'start': 580, 'end': 584}, {'entity': 'I-ORG', 'score': 0.999721, 'index': 192, 'word': 'Bury', 'start': 592, 'end': 596}, {'entity': 'I-ORG', 'score': 0.9996866, 'index': 194, 'word': 'Bristol', 'start': 599, 'end': 606}, {'entity': 'I-ORG', 'score': 0.99952734, 'index': 195, 'word': 'City', 'start': 607, 'end': 611}, {'entity': 'I-ORG', 'score': 0.99973005, 'index': 201, 'word': 'Crewe', 'start': 619, 'end': 624}, {'entity': 'I-ORG', 'score': 0.9997098, 'index': 203, 'word': 'Watford', 'start': 627, 'end': 634}, {'entity': 'I-ORG', 'score': 0.9997161, 'index': 209, 'word': 'Gill', 'start': 642, 'end': 646}, {'entity': 'I-ORG', 'score': 0.9995103, 'index': 210, 'word': '##ingham', 'start': 646, 'end': 652}, {'entity': 'I-ORG', 'score': 0.9996494, 'index': 212, 'word': 'Chesterfield', 'start': 655, 'end': 667}, {'entity': 'I-ORG', 'score': 0.999726, 'index': 218, 'word': 'Luton', 'start': 675, 'end': 680}, {'entity': 'I-ORG', 'score': 0.99968505, 'index': 220, 'word': 'Roth', 'start': 683, 'end': 687}, {'entity': 'I-ORG', 'score': 0.9993806, 'index': 221, 'word': '##erham', 'start': 687, 'end': 692}, {'entity': 'I-ORG', 'score': 0.9997316, 'index': 227, 'word': 'Mill', 'start': 700, 'end': 704}, {'entity': 'I-ORG', 'score': 0.99957186, 'index': 228, 'word': '##wall', 'start': 704, 'end': 708}, {'entity': 'I-ORG', 'score': 0.99967563, 'index': 230, 'word': 'Burnley', 'start': 711, 'end': 718}, {'entity': 'I-ORG', 'score': 0.9995173, 'index': 236, 'word': 'Not', 'start': 726, 'end': 729}, {'entity': 'I-ORG', 'score': 0.9996873, 'index': 237, 'word': '##ts', 'start': 729, 'end': 731}, {'entity': 'I-ORG', 'score': 0.999403, 'index': 238, 'word': 'County', 'start': 732, 'end': 738}, {'entity': 'I-ORG', 'score': 0.9996184, 'index': 240, 'word': 'York', 'start': 741, 'end': 745}, {'entity': 'I-ORG', 'score': 0.99962986, 'index': 246, 'word': 'Shrewsbury', 'start': 753, 'end': 763}, {'entity': 'I-ORG', 'score': 0.99969506, 'index': 248, 'word': 'Brent', 'start': 766, 'end': 771}, {'entity': 'I-ORG', 'score': 0.9995004, 'index': 249, 'word': '##ford', 'start': 771, 'end': 775}, {'entity': 'I-ORG', 'score': 0.99921834, 'index': 259, 'word': 'W', 'start': 794, 'end': 795}, {'entity': 'I-ORG', 'score': 0.9972162, 'index': 260, 'word': '##als', 'start': 795, 'end': 798}, {'entity': 'I-ORG', 'score': 0.9992291, 'index': 261, 'word': '##all', 'start': 798, 'end': 801}, {'entity': 'I-ORG', 'score': 0.99936384, 'index': 263, 'word': 'W', 'start': 804, 'end': 805}, {'entity': 'I-ORG', 'score': 0.9986248, 'index': 264, 'word': '##re', 'start': 805, 'end': 807}, {'entity': 'I-ORG', 'score': 0.99947685, 'index': 265, 'word': '##xham', 'start': 807, 'end': 811}, {'entity': 'I-ORG', 'score': 0.9994659, 'index': 276, 'word': 'Brighton', 'start': 837, 'end': 845}, {'entity': 'I-ORG', 'score': 0.9991523, 'index': 278, 'word': 'Sc', 'start': 848, 'end': 850}, {'entity': 'I-ORG', 'score': 0.99545383, 'index': 279, 'word': '##unt', 'start': 850, 'end': 853}, {'entity': 'I-ORG', 'score': 0.99770904, 'index': 280, 'word': '##hor', 'start': 853, 'end': 856}, {'entity': 'I-ORG', 'score': 0.9991062, 'index': 281, 'word': '##pe', 'start': 856, 'end': 858}, {'entity': 'I-ORG', 'score': 0.99960047, 'index': 287, 'word': 'Cambridge', 'start': 866, 'end': 875}, {'entity': 'I-ORG', 'score': 0.99931026, 'index': 288, 'word': 'United', 'start': 876, 'end': 882}, {'entity': 'I-ORG', 'score': 0.99932456, 'index': 290, 'word': 'Cardiff', 'start': 885, 'end': 892}, {'entity': 'I-ORG', 'score': 0.99958235, 'index': 296, 'word': 'Colchester', 'start': 900, 'end': 910}, {'entity': 'I-ORG', 'score': 0.99953854, 'index': 298, 'word': 'Hereford', 'start': 913, 'end': 921}, {'entity': 'I-ORG', 'score': 0.99956566, 'index': 304, 'word': 'Doncaster', 'start': 929, 'end': 938}, {'entity': 'I-ORG', 'score': 0.9995529, 'index': 306, 'word': 'Darlington', 'start': 941, 'end': 951}, {'entity': 'I-ORG', 'score': 0.99968016, 'index': 312, 'word': 'Fulham', 'start': 959, 'end': 965}, {'entity': 'I-ORG', 'score': 0.99962974, 'index': 314, 'word': 'Carlisle', 'start': 968, 'end': 976}, {'entity': 'I-ORG', 'score': 0.99966514, 'index': 320, 'word': 'Hull', 'start': 984, 'end': 988}, {'entity': 'I-ORG', 'score': 0.9996253, 'index': 322, 'word': 'Bar', 'start': 991, 'end': 994}, {'entity': 'I-ORG', 'score': 0.99953854, 'index': 323, 'word': '##net', 'start': 994, 'end': 997}, {'entity': 'I-ORG', 'score': 0.9996357, 'index': 329, 'word': 'Le', 'start': 1005, 'end': 1007}, {'entity': 'I-ORG', 'score': 0.9996642, 'index': 330, 'word': '##yton', 'start': 1007, 'end': 1011}, {'entity': 'I-ORG', 'score': 0.9996463, 'index': 331, 'word': 'Orient', 'start': 1012, 'end': 1018}, {'entity': 'I-ORG', 'score': 0.999602, 'index': 333, 'word': 'Hart', 'start': 1021, 'end': 1025}, {'entity': 'I-ORG', 'score': 0.9994911, 'index': 334, 'word': '##le', 'start': 1025, 'end': 1027}, {'entity': 'I-ORG', 'score': 0.9995067, 'index': 335, 'word': '##pool', 'start': 1027, 'end': 1031}, {'entity': 'I-ORG', 'score': 0.9995838, 'index': 341, 'word': 'Mansfield', 'start': 1039, 'end': 1048}, {'entity': 'I-ORG', 'score': 0.9995179, 'index': 343, 'word': 'R', 'start': 1051, 'end': 1052}, {'entity': 'I-ORG', 'score': 0.9991755, 'index': 344, 'word': '##och', 'start': 1052, 'end': 1055}, {'entity': 'I-ORG', 'score': 0.9995376, 'index': 345, 'word': '##dale', 'start': 1055, 'end': 1059}, {'entity': 'I-ORG', 'score': 0.99967, 'index': 351, 'word': 'Scarborough', 'start': 1067, 'end': 1078}, {'entity': 'I-ORG', 'score': 0.999726, 'index': 353, 'word': 'Northampton', 'start': 1081, 'end': 1092}, {'entity': 'I-ORG', 'score': 0.99968576, 'index': 359, 'word': 'Tor', 'start': 1100, 'end': 1103}, {'entity': 'I-ORG', 'score': 0.9994326, 'index': 360, 'word': '##qua', 'start': 1103, 'end': 1106}, {'entity': 'I-ORG', 'score': 0.99955004, 'index': 361, 'word': '##y', 'start': 1106, 'end': 1107}, {'entity': 'I-ORG', 'score': 0.99966156, 'index': 363, 'word': 'Exeter', 'start': 1110, 'end': 1116}, {'entity': 'I-ORG', 'score': 0.99968004, 'index': 369, 'word': 'Wigan', 'start': 1124, 'end': 1129}, {'entity': 'I-ORG', 'score': 0.9996908, 'index': 371, 'word': 'Chester', 'start': 1132, 'end': 1139}]
[{'entity': 'I-MISC', 'score': 0.5153147, 'index': 2, 'word': '##IC', 'start': 2, 'end': 4}, {'entity': 'I-MISC', 'score': 0.99531233, 'index': 6, 'word': 'E', 'start': 10, 'end': 11}, {'entity': 'I-MISC', 'score': 0.9646327, 'index': 7, 'word': '##NG', 'start': 11, 'end': 13}, {'entity': 'I-MISC', 'score': 0.95321995, 'index': 8, 'word': '##L', 'start': 13, 'end': 14}, {'entity': 'I-MISC', 'score': 0.91066134, 'index': 11, 'word': 'CO', 'start': 18, 'end': 20}, {'entity': 'I-MISC', 'score': 0.646585, 'index': 12, 'word': '##UN', 'start': 20, 'end': 22}, {'entity': 'I-MISC', 'score': 0.8328061, 'index': 13, 'word': '##TY', 'start': 22, 'end': 24}, {'entity': 'I-MISC', 'score': 0.98430055, 'index': 14, 'word': 'CH', 'start': 25, 'end': 27}, {'entity': 'I-MISC', 'score': 0.5973946, 'index': 15, 'word': '##AM', 'start': 27, 'end': 29}, {'entity': 'I-MISC', 'score': 0.69426084, 'index': 19, 'word': '##H', 'start': 34, 'end': 35}, {'entity': 'I-LOC', 'score': 0.9987062, 'index': 29, 'word': 'L', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9870819, 'index': 30, 'word': '##ON', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.7978572, 'index': 31, 'word': '##D', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.99785066, 'index': 32, 'word': '##ON', 'start': 56, 'end': 58}, {'entity': 'I-MISC', 'score': 0.9986199, 'index': 50, 'word': 'English', 'start': 112, 'end': 119}, {'entity': 'I-LOC', 'score': 0.99933845, 'index': 62, 'word': 'Portsmouth', 'start': 170, 'end': 180}, {'entity': 'I-ORG', 'score': 0.99943703, 'index': 64, 'word': 'Middlesex', 'start': 183, 'end': 192}, {'entity': 'I-ORG', 'score': 0.99881124, 'index': 66, 'word': 'Hampshire', 'start': 198, 'end': 207}, {'entity': 'I-ORG', 'score': 0.99909496, 'index': 75, 'word': 'Middlesex', 'start': 227, 'end': 236}, {'entity': 'I-ORG', 'score': 0.99928623, 'index': 81, 'word': 'Hampshire', 'start': 251, 'end': 260}, {'entity': 'I-PER', 'score': 0.99965966, 'index': 86, 'word': 'A', 'start': 275, 'end': 276}, {'entity': 'I-PER', 'score': 0.92997533, 'index': 87, 'word': '.', 'start': 276, 'end': 277}, {'entity': 'I-PER', 'score': 0.99983025, 'index': 88, 'word': 'Fraser', 'start': 278, 'end': 284}, {'entity': 'I-PER', 'score': 0.9997106, 'index': 93, 'word': 'P', 'start': 292, 'end': 293}, {'entity': 'I-PER', 'score': 0.8588072, 'index': 94, 'word': '.', 'start': 293, 'end': 294}, {'entity': 'I-PER', 'score': 0.99953496, 'index': 95, 'word': 'Tu', 'start': 295, 'end': 297}, {'entity': 'I-PER', 'score': 0.73957545, 'index': 96, 'word': '##f', 'start': 297, 'end': 298}, {'entity': 'I-PER', 'score': 0.99630296, 'index': 97, 'word': '##nell', 'start': 298, 'end': 302}, {'entity': 'I-ORG', 'score': 0.99963224, 'index': 107, 'word': 'Middlesex', 'start': 317, 'end': 326}, {'entity': 'I-ORG', 'score': 0.99943596, 'index': 111, 'word': 'Hampshire', 'start': 339, 'end': 348}, {'entity': 'I-LOC', 'score': 0.99883455, 'index': 119, 'word': 'Chester', 'start': 361, 'end': 368}, {'entity': 'I-LOC', 'score': 0.96563506, 'index': 120, 'word': '-', 'start': 368, 'end': 369}, {'entity': 'I-LOC', 'score': 0.9967188, 'index': 121, 'word': 'le', 'start': 369, 'end': 371}, {'entity': 'I-LOC', 'score': 0.9680599, 'index': 122, 'word': '-', 'start': 371, 'end': 372}, {'entity': 'I-LOC', 'score': 0.9966898, 'index': 123, 'word': 'Street', 'start': 372, 'end': 378}, {'entity': 'I-ORG', 'score': 0.9996917, 'index': 125, 'word': 'Glamorgan', 'start': 381, 'end': 390}, {'entity': 'I-ORG', 'score': 0.999363, 'index': 127, 'word': 'Durham', 'start': 396, 'end': 402}, {'entity': 'I-ORG', 'score': 0.99945694, 'index': 136, 'word': 'Glamorgan', 'start': 422, 'end': 431}, {'entity': 'I-ORG', 'score': 0.9994906, 'index': 142, 'word': 'Durham', 'start': 446, 'end': 452}, {'entity': 'I-ORG', 'score': 0.99959534, 'index': 151, 'word': 'Glamorgan', 'start': 472, 'end': 481}, {'entity': 'I-ORG', 'score': 0.9994899, 'index': 155, 'word': 'Durham', 'start': 494, 'end': 500}, {'entity': 'I-LOC', 'score': 0.99767774, 'index': 163, 'word': 'Chesterfield', 'start': 513, 'end': 525}, {'entity': 'I-ORG', 'score': 0.9990964, 'index': 165, 'word': 'Derbyshire', 'start': 528, 'end': 538}, {'entity': 'I-ORG', 'score': 0.99895966, 'index': 167, 'word': 'Worcestershire', 'start': 544, 'end': 558}, {'entity': 'I-ORG', 'score': 0.99871695, 'index': 176, 'word': 'Worcestershire', 'start': 582, 'end': 596}, {'entity': 'I-PER', 'score': 0.99976486, 'index': 181, 'word': 'K', 'start': 611, 'end': 612}, {'entity': 'I-PER', 'score': 0.92318743, 'index': 182, 'word': '.', 'start': 612, 'end': 613}, {'entity': 'I-PER', 'score': 0.9996105, 'index': 183, 'word': 'S', 'start': 614, 'end': 615}, {'entity': 'I-PER', 'score': 0.9945201, 'index': 184, 'word': '##pi', 'start': 615, 'end': 617}, {'entity': 'I-PER', 'score': 0.9777803, 'index': 185, 'word': '##ring', 'start': 617, 'end': 621}, {'entity': 'I-PER', 'score': 0.9997061, 'index': 190, 'word': 'S', 'start': 636, 'end': 637}, {'entity': 'I-PER', 'score': 0.9997969, 'index': 192, 'word': 'Rhodes', 'start': 639, 'end': 645}, {'entity': 'I-PER', 'score': 0.9997073, 'index': 195, 'word': 'P', 'start': 651, 'end': 652}, {'entity': 'I-PER', 'score': 0.8536775, 'index': 196, 'word': '.', 'start': 652, 'end': 653}, {'entity': 'I-PER', 'score': 0.998909, 'index': 197, 'word': 'De', 'start': 654, 'end': 656}, {'entity': 'I-PER', 'score': 0.9922267, 'index': 198, 'word': '##F', 'start': 656, 'end': 657}, {'entity': 'I-PER', 'score': 0.9406548, 'index': 199, 'word': '##re', 'start': 657, 'end': 659}, {'entity': 'I-PER', 'score': 0.9959726, 'index': 200, 'word': '##itas', 'start': 659, 'end': 663}, {'entity': 'I-ORG', 'score': 0.9993174, 'index': 206, 'word': 'Derbyshire', 'start': 673, 'end': 683}, {'entity': 'I-ORG', 'score': 0.99934703, 'index': 218, 'word': 'Derbyshire', 'start': 704, 'end': 714}, {'entity': 'I-ORG', 'score': 0.99923694, 'index': 222, 'word': 'Worcestershire', 'start': 727, 'end': 741}, {'entity': 'I-LOC', 'score': 0.99485445, 'index': 230, 'word': 'The', 'start': 754, 'end': 757}, {'entity': 'I-LOC', 'score': 0.9990268, 'index': 231, 'word': 'Oval', 'start': 758, 'end': 762}, {'entity': 'I-LOC', 'score': 0.9992235, 'index': 233, 'word': 'London', 'start': 765, 'end': 771}, {'entity': 'I-ORG', 'score': 0.99922955, 'index': 236, 'word': 'Surrey', 'start': 776, 'end': 782}, {'entity': 'I-ORG', 'score': 0.9991374, 'index': 238, 'word': 'Warwickshire', 'start': 788, 'end': 800}, {'entity': 'I-ORG', 'score': 0.99901605, 'index': 250, 'word': 'Warwickshire', 'start': 835, 'end': 847}, {'entity': 'I-PER', 'score': 0.99967587, 'index': 255, 'word': 'J', 'start': 862, 'end': 863}, {'entity': 'I-PER', 'score': 0.7309012, 'index': 256, 'word': '.', 'start': 863, 'end': 864}, {'entity': 'I-PER', 'score': 0.9998394, 'index': 257, 'word': 'Benjamin', 'start': 865, 'end': 873}, {'entity': 'I-PER', 'score': 0.999694, 'index': 262, 'word': 'M', 'start': 881, 'end': 882}, {'entity': 'I-PER', 'score': 0.67866564, 'index': 263, 'word': '.', 'start': 882, 'end': 883}, {'entity': 'I-PER', 'score': 0.99966526, 'index': 264, 'word': 'B', 'start': 884, 'end': 885}, {'entity': 'I-PER', 'score': 0.99598527, 'index': 265, 'word': '##ick', 'start': 885, 'end': 888}, {'entity': 'I-PER', 'score': 0.9959953, 'index': 266, 'word': '##nell', 'start': 888, 'end': 892}, {'entity': 'I-ORG', 'score': 0.99900776, 'index': 272, 'word': 'Surrey', 'start': 902, 'end': 908}, {'entity': 'I-PER', 'score': 0.99973506, 'index': 276, 'word': 'C', 'start': 915, 'end': 916}, {'entity': 'I-PER', 'score': 0.99980026, 'index': 278, 'word': 'Lewis', 'start': 918, 'end': 923}, {'entity': 'I-PER', 'score': 0.99972016, 'index': 281, 'word': 'M', 'start': 929, 'end': 930}, {'entity': 'I-PER', 'score': 0.6179121, 'index': 282, 'word': '.', 'start': 930, 'end': 931}, {'entity': 'I-PER', 'score': 0.9998394, 'index': 283, 'word': 'Butcher', 'start': 932, 'end': 939}, {'entity': 'I-PER', 'score': 0.9997584, 'index': 286, 'word': 'G', 'start': 945, 'end': 946}, {'entity': 'I-PER', 'score': 0.9086617, 'index': 287, 'word': '.', 'start': 946, 'end': 947}, {'entity': 'I-PER', 'score': 0.9996345, 'index': 288, 'word': 'Ke', 'start': 948, 'end': 950}, {'entity': 'I-PER', 'score': 0.99899644, 'index': 289, 'word': '##rsey', 'start': 950, 'end': 954}, {'entity': 'I-PER', 'score': 0.9996424, 'index': 292, 'word': 'J', 'start': 960, 'end': 961}, {'entity': 'I-PER', 'score': 0.5166018, 'index': 293, 'word': '.', 'start': 961, 'end': 962}, {'entity': 'I-PER', 'score': 0.99962795, 'index': 294, 'word': 'Rat', 'start': 963, 'end': 966}, {'entity': 'I-PER', 'score': 0.998978, 'index': 295, 'word': '##cliffe', 'start': 966, 'end': 972}, {'entity': 'I-PER', 'score': 0.9996773, 'index': 298, 'word': 'D', 'start': 978, 'end': 979}, {'entity': 'I-PER', 'score': 0.99968755, 'index': 300, 'word': 'B', 'start': 981, 'end': 982}, {'entity': 'I-PER', 'score': 0.9966248, 'index': 301, 'word': '##ick', 'start': 982, 'end': 985}, {'entity': 'I-PER', 'score': 0.994493, 'index': 302, 'word': '##nell', 'start': 985, 'end': 989}, {'entity': 'I-ORG', 'score': 0.9994374, 'index': 310, 'word': 'Surrey', 'start': 1002, 'end': 1008}, {'entity': 'I-ORG', 'score': 0.99941385, 'index': 314, 'word': 'Warwickshire', 'start': 1021, 'end': 1033}, {'entity': 'I-LOC', 'score': 0.998889, 'index': 322, 'word': 'Head', 'start': 1046, 'end': 1050}, {'entity': 'I-LOC', 'score': 0.996421, 'index': 323, 'word': '##ing', 'start': 1050, 'end': 1053}, {'entity': 'I-LOC', 'score': 0.99872726, 'index': 324, 'word': '##ley', 'start': 1053, 'end': 1056}, {'entity': 'I-LOC', 'score': 0.9993344, 'index': 326, 'word': 'Leeds', 'start': 1059, 'end': 1064}, {'entity': 'I-ORG', 'score': 0.9991296, 'index': 329, 'word': 'Yorkshire', 'start': 1069, 'end': 1078}, {'entity': 'I-PER', 'score': 0.99962807, 'index': 335, 'word': 'R', 'start': 1093, 'end': 1094}, {'entity': 'I-PER', 'score': 0.57497233, 'index': 336, 'word': '.', 'start': 1094, 'end': 1095}, {'entity': 'I-PER', 'score': 0.9993969, 'index': 337, 'word': 'Ke', 'start': 1096, 'end': 1098}, {'entity': 'I-PER', 'score': 0.9830314, 'index': 338, 'word': '##ttle', 'start': 1098, 'end': 1102}, {'entity': 'I-PER', 'score': 0.98060554, 'index': 339, 'word': '##borough', 'start': 1102, 'end': 1109}, {'entity': 'I-PER', 'score': 0.99966586, 'index': 342, 'word': 'G', 'start': 1116, 'end': 1117}, {'entity': 'I-PER', 'score': 0.4971471, 'index': 343, 'word': '.', 'start': 1117, 'end': 1118}, {'entity': 'I-PER', 'score': 0.99981266, 'index': 344, 'word': 'Hamilton', 'start': 1119, 'end': 1127}, {'entity': 'I-PER', 'score': 0.9997013, 'index': 347, 'word': 'P', 'start': 1133, 'end': 1134}, {'entity': 'I-PER', 'score': 0.82018965, 'index': 348, 'word': '.', 'start': 1134, 'end': 1135}, {'entity': 'I-PER', 'score': 0.99931884, 'index': 349, 'word': 'Such', 'start': 1136, 'end': 1140}, {'entity': 'I-ORG', 'score': 0.9986463, 'index': 355, 'word': 'Essex', 'start': 1151, 'end': 1156}, {'entity': 'I-LOC', 'score': 0.9987821, 'index': 368, 'word': 'Ho', 'start': 1181, 'end': 1183}, {'entity': 'I-LOC', 'score': 0.99590683, 'index': 369, 'word': '##ve', 'start': 1183, 'end': 1185}, {'entity': 'I-ORG', 'score': 0.9991035, 'index': 371, 'word': 'Sussex', 'start': 1188, 'end': 1194}, {'entity': 'I-ORG', 'score': 0.9993765, 'index': 377, 'word': 'Lancashire', 'start': 1209, 'end': 1219}, {'entity': 'I-PER', 'score': 0.9490466, 'index': 386, 'word': 'S', 'start': 1237, 'end': 1238}, {'entity': 'I-PER', 'score': 0.99614847, 'index': 389, 'word': 'Tu', 'start': 1243, 'end': 1245}, {'entity': 'I-PER', 'score': 0.9862212, 'index': 390, 'word': '##nbridge', 'start': 1245, 'end': 1252}, {'entity': 'I-PER', 'score': 0.97713405, 'index': 391, 'word': 'Wells', 'start': 1253, 'end': 1258}, {'entity': 'I-ORG', 'score': 0.9950016, 'index': 393, 'word': 'Nottinghamshire', 'start': 1261, 'end': 1276}, {'entity': 'I-PER', 'score': 0.97998273, 'index': 400, 'word': 'C', 'start': 1293, 'end': 1294}, {'entity': 'I-PER', 'score': 0.98765963, 'index': 402, 'word': 'To', 'start': 1296, 'end': 1298}, {'entity': 'I-PER', 'score': 0.47475794, 'index': 403, 'word': '##lle', 'start': 1298, 'end': 1301}, {'entity': 'I-ORG', 'score': 0.99748397, 'index': 410, 'word': 'Kent', 'start': 1318, 'end': 1322}, {'entity': 'I-PER', 'score': 0.98809195, 'index': 413, 'word': 'C', 'start': 1329, 'end': 1330}, {'entity': 'I-PER', 'score': 0.9868168, 'index': 415, 'word': 'Hooper', 'start': 1332, 'end': 1338}, {'entity': 'I-PER', 'score': 0.9732766, 'index': 418, 'word': 'C', 'start': 1344, 'end': 1345}, {'entity': 'I-PER', 'score': 0.9894075, 'index': 420, 'word': 'To', 'start': 1347, 'end': 1349}, {'entity': 'I-PER', 'score': 0.44311008, 'index': 421, 'word': '##lle', 'start': 1349, 'end': 1352}, {'entity': 'I-PER', 'score': 0.9971259, 'index': 427, 'word': 'K', 'start': 1361, 'end': 1362}, {'entity': 'I-PER', 'score': 0.99920636, 'index': 429, 'word': 'Evans', 'start': 1364, 'end': 1369}, {'entity': 'I-PER', 'score': 0.79248685, 'index': 436, 'word': 'S', 'start': 1379, 'end': 1380}, {'entity': 'I-LOC', 'score': 0.99421424, 'index': 439, 'word': 'Bristol', 'start': 1385, 'end': 1392}, {'entity': 'I-ORG', 'score': 0.998379, 'index': 441, 'word': 'Gloucestershire', 'start': 1395, 'end': 1410}, {'entity': 'I-PER', 'score': 0.9330676, 'index': 446, 'word': 'J', 'start': 1425, 'end': 1426}, {'entity': 'I-PER', 'score': 0.99524885, 'index': 448, 'word': 'Russell', 'start': 1428, 'end': 1435}, {'entity': 'I-ORG', 'score': 0.99950707, 'index': 452, 'word': 'Northamptonshire', 'start': 1443, 'end': 1459}, {'entity': 'I-PER', 'score': 0.81444204, 'index': 461, 'word': 'S', 'start': 1478, 'end': 1479}]
[{'entity': 'I-ORG', 'score': 0.54871345, 'index': 14, 'word': '##AL', 'start': 25, 'end': 27}, {'entity': 'I-LOC', 'score': 0.33618653, 'index': 20, 'word': 'VA', 'start': 38, 'end': 40}, {'entity': 'I-MISC', 'score': 0.38332173, 'index': 21, 'word': '##NC', 'start': 40, 'end': 42}, {'entity': 'I-MISC', 'score': 0.39071316, 'index': 22, 'word': '##O', 'start': 42, 'end': 43}, {'entity': 'I-LOC', 'score': 0.9663116, 'index': 38, 'word': 'VA', 'start': 68, 'end': 70}, {'entity': 'I-LOC', 'score': 0.7034797, 'index': 39, 'word': '##NC', 'start': 70, 'end': 72}, {'entity': 'I-LOC', 'score': 0.33787534, 'index': 40, 'word': '##O', 'start': 72, 'end': 73}, {'entity': 'I-LOC', 'score': 0.569794, 'index': 43, 'word': '##R', 'start': 76, 'end': 77}, {'entity': 'I-LOC', 'score': 0.983043, 'index': 66, 'word': 'Vancouver', 'start': 137, 'end': 146}, {'entity': 'I-MISC', 'score': 0.9884723, 'index': 67, 'word': 'Indy', 'start': 147, 'end': 151}, {'entity': 'I-MISC', 'score': 0.96346605, 'index': 68, 'word': '##C', 'start': 151, 'end': 152}, {'entity': 'I-MISC', 'score': 0.98952174, 'index': 69, 'word': '##ar', 'start': 152, 'end': 154}, {'entity': 'I-PER', 'score': 0.9996214, 'index': 109, 'word': 'Alex', 'start': 291, 'end': 295}, {'entity': 'I-PER', 'score': 0.9996402, 'index': 110, 'word': 'Z', 'start': 296, 'end': 297}, {'entity': 'I-PER', 'score': 0.9798621, 'index': 111, 'word': '##ana', 'start': 297, 'end': 300}, {'entity': 'I-PER', 'score': 0.99902725, 'index': 112, 'word': '##rdi', 'start': 300, 'end': 303}, {'entity': 'I-LOC', 'score': 0.9998456, 'index': 114, 'word': 'Italy', 'start': 306, 'end': 311}, {'entity': 'I-ORG', 'score': 0.995802, 'index': 117, 'word': 'Rey', 'start': 316, 'end': 319}, {'entity': 'I-ORG', 'score': 0.99792457, 'index': 118, 'word': '##nard', 'start': 319, 'end': 323}, {'entity': 'I-ORG', 'score': 0.9993261, 'index': 119, 'word': 'Honda', 'start': 324, 'end': 329}, {'entity': 'I-PER', 'score': 0.9996314, 'index': 149, 'word': 'Michael', 'start': 382, 'end': 389}, {'entity': 'I-PER', 'score': 0.9992378, 'index': 150, 'word': 'Andre', 'start': 390, 'end': 395}, {'entity': 'I-PER', 'score': 0.9995839, 'index': 151, 'word': '##tti', 'start': 395, 'end': 398}, {'entity': 'I-LOC', 'score': 0.9997286, 'index': 153, 'word': 'U', 'start': 401, 'end': 402}, {'entity': 'I-LOC', 'score': 0.9995766, 'index': 155, 'word': 'S', 'start': 403, 'end': 404}, {'entity': 'I-ORG', 'score': 0.99855596, 'index': 159, 'word': 'Lola', 'start': 410, 'end': 414}, {'entity': 'I-ORG', 'score': 0.9988952, 'index': 160, 'word': 'Ford', 'start': 415, 'end': 419}, {'entity': 'I-ORG', 'score': 0.9979826, 'index': 161, 'word': 'Co', 'start': 420, 'end': 422}, {'entity': 'I-ORG', 'score': 0.9960968, 'index': 162, 'word': '##sworth', 'start': 422, 'end': 428}, {'entity': 'I-PER', 'score': 0.9997347, 'index': 174, 'word': 'Bobby', 'start': 446, 'end': 451}, {'entity': 'I-PER', 'score': 0.999803, 'index': 175, 'word': 'Ra', 'start': 452, 'end': 454}, {'entity': 'I-PER', 'score': 0.9997162, 'index': 176, 'word': '##hal', 'start': 454, 'end': 457}, {'entity': 'I-LOC', 'score': 0.9997454, 'index': 178, 'word': 'U', 'start': 460, 'end': 461}, {'entity': 'I-LOC', 'score': 0.99966407, 'index': 180, 'word': 'S', 'start': 462, 'end': 463}, {'entity': 'I-ORG', 'score': 0.96661556, 'index': 184, 'word': 'Rey', 'start': 469, 'end': 472}, {'entity': 'I-ORG', 'score': 0.99102753, 'index': 185, 'word': '##nard', 'start': 472, 'end': 476}, {'entity': 'I-ORG', 'score': 0.99603647, 'index': 186, 'word': 'Mercedes', 'start': 477, 'end': 485}, {'entity': 'I-ORG', 'score': 0.9409725, 'index': 187, 'word': '-', 'start': 485, 'end': 486}, {'entity': 'I-ORG', 'score': 0.9972886, 'index': 188, 'word': 'Benz', 'start': 486, 'end': 490}, {'entity': 'I-PER', 'score': 0.9996569, 'index': 200, 'word': 'Bryan', 'start': 508, 'end': 513}, {'entity': 'I-PER', 'score': 0.9995346, 'index': 201, 'word': 'Her', 'start': 514, 'end': 517}, {'entity': 'I-PER', 'score': 0.9988834, 'index': 202, 'word': '##ta', 'start': 517, 'end': 519}, {'entity': 'I-LOC', 'score': 0.99973303, 'index': 204, 'word': 'U', 'start': 522, 'end': 523}, {'entity': 'I-LOC', 'score': 0.9995461, 'index': 206, 'word': 'S', 'start': 524, 'end': 525}, {'entity': 'I-ORG', 'score': 0.98156047, 'index': 210, 'word': 'Rey', 'start': 531, 'end': 534}, {'entity': 'I-ORG', 'score': 0.9927947, 'index': 211, 'word': '##nard', 'start': 534, 'end': 538}, {'entity': 'I-ORG', 'score': 0.99595463, 'index': 212, 'word': 'Mercedes', 'start': 539, 'end': 547}, {'entity': 'I-ORG', 'score': 0.931207, 'index': 213, 'word': '-', 'start': 547, 'end': 548}, {'entity': 'I-ORG', 'score': 0.99731004, 'index': 214, 'word': 'Benz', 'start': 548, 'end': 552}, {'entity': 'I-PER', 'score': 0.9996505, 'index': 226, 'word': 'Jimmy', 'start': 570, 'end': 575}, {'entity': 'I-PER', 'score': 0.99962246, 'index': 227, 'word': 'V', 'start': 576, 'end': 577}, {'entity': 'I-PER', 'score': 0.9960781, 'index': 228, 'word': '##ass', 'start': 577, 'end': 580}, {'entity': 'I-PER', 'score': 0.99917394, 'index': 229, 'word': '##er', 'start': 580, 'end': 582}, {'entity': 'I-LOC', 'score': 0.9996785, 'index': 231, 'word': 'U', 'start': 585, 'end': 586}, {'entity': 'I-LOC', 'score': 0.999479, 'index': 233, 'word': 'S', 'start': 587, 'end': 588}, {'entity': 'I-ORG', 'score': 0.9903054, 'index': 237, 'word': 'Rey', 'start': 594, 'end': 597}, {'entity': 'I-ORG', 'score': 0.9966053, 'index': 238, 'word': '##nard', 'start': 597, 'end': 601}, {'entity': 'I-ORG', 'score': 0.9988673, 'index': 239, 'word': 'Honda', 'start': 602, 'end': 607}, {'entity': 'I-PER', 'score': 0.9996903, 'index': 251, 'word': 'Paul', 'start': 625, 'end': 629}, {'entity': 'I-PER', 'score': 0.99980444, 'index': 252, 'word': 'Tracy', 'start': 630, 'end': 635}, {'entity': 'I-LOC', 'score': 0.9997943, 'index': 254, 'word': 'Canada', 'start': 638, 'end': 644}, {'entity': 'I-ORG', 'score': 0.98635685, 'index': 257, 'word': 'Pen', 'start': 649, 'end': 652}, {'entity': 'I-ORG', 'score': 0.993415, 'index': 258, 'word': '##ske', 'start': 652, 'end': 655}, {'entity': 'I-ORG', 'score': 0.99217415, 'index': 259, 'word': 'Mercedes', 'start': 656, 'end': 664}, {'entity': 'I-ORG', 'score': 0.9159493, 'index': 260, 'word': '-', 'start': 664, 'end': 665}, {'entity': 'I-ORG', 'score': 0.99213105, 'index': 261, 'word': 'Benz', 'start': 665, 'end': 669}, {'entity': 'I-PER', 'score': 0.99960154, 'index': 272, 'word': 'Al', 'start': 687, 'end': 689}, {'entity': 'I-PER', 'score': 0.99937004, 'index': 273, 'word': 'Un', 'start': 690, 'end': 692}, {'entity': 'I-PER', 'score': 0.999401, 'index': 274, 'word': '##ser', 'start': 692, 'end': 695}, {'entity': 'I-PER', 'score': 0.9988997, 'index': 275, 'word': 'Jr', 'start': 696, 'end': 698}, {'entity': 'I-LOC', 'score': 0.9996586, 'index': 277, 'word': 'U', 'start': 701, 'end': 702}, {'entity': 'I-LOC', 'score': 0.99963176, 'index': 279, 'word': 'S', 'start': 703, 'end': 704}, {'entity': 'I-LOC', 'score': 0.514456, 'index': 280, 'word': '.', 'start': 704, 'end': 705}, {'entity': 'I-ORG', 'score': 0.98441297, 'index': 283, 'word': 'Pen', 'start': 710, 'end': 713}, {'entity': 'I-ORG', 'score': 0.9934267, 'index': 284, 'word': '##ske', 'start': 713, 'end': 716}, {'entity': 'I-ORG', 'score': 0.9917647, 'index': 285, 'word': 'Mercedes', 'start': 717, 'end': 725}, {'entity': 'I-ORG', 'score': 0.9253888, 'index': 286, 'word': '-', 'start': 725, 'end': 726}, {'entity': 'I-ORG', 'score': 0.9923717, 'index': 287, 'word': 'Benz', 'start': 726, 'end': 730}, {'entity': 'I-PER', 'score': 0.99964523, 'index': 299, 'word': 'Andre', 'start': 748, 'end': 753}, {'entity': 'I-PER', 'score': 0.99969757, 'index': 300, 'word': 'R', 'start': 754, 'end': 755}, {'entity': 'I-PER', 'score': 0.99911946, 'index': 301, 'word': '##ibe', 'start': 755, 'end': 758}, {'entity': 'I-PER', 'score': 0.99962246, 'index': 302, 'word': '##iro', 'start': 758, 'end': 761}, {'entity': 'I-LOC', 'score': 0.9998406, 'index': 304, 'word': 'Brazil', 'start': 764, 'end': 770}, {'entity': 'I-ORG', 'score': 0.99874866, 'index': 307, 'word': 'Lola', 'start': 775, 'end': 779}, {'entity': 'I-ORG', 'score': 0.9992766, 'index': 308, 'word': 'Honda', 'start': 780, 'end': 785}, {'entity': 'I-PER', 'score': 0.9997663, 'index': 319, 'word': 'Ma', 'start': 803, 'end': 805}, {'entity': 'I-PER', 'score': 0.9994622, 'index': 320, 'word': '##uri', 'start': 805, 'end': 808}, {'entity': 'I-PER', 'score': 0.999553, 'index': 321, 'word': '##cio', 'start': 808, 'end': 811}, {'entity': 'I-PER', 'score': 0.9997261, 'index': 322, 'word': 'G', 'start': 812, 'end': 813}, {'entity': 'I-PER', 'score': 0.9988458, 'index': 323, 'word': '##uge', 'start': 813, 'end': 816}, {'entity': 'I-PER', 'score': 0.9982418, 'index': 324, 'word': '##lm', 'start': 816, 'end': 818}, {'entity': 'I-PER', 'score': 0.9939219, 'index': 325, 'word': '##in', 'start': 818, 'end': 820}, {'entity': 'I-LOC', 'score': 0.9998549, 'index': 327, 'word': 'Brazil', 'start': 823, 'end': 829}, {'entity': 'I-ORG', 'score': 0.98936474, 'index': 330, 'word': 'Rey', 'start': 834, 'end': 837}, {'entity': 'I-ORG', 'score': 0.99734926, 'index': 331, 'word': '##nard', 'start': 837, 'end': 841}, {'entity': 'I-ORG', 'score': 0.9989617, 'index': 332, 'word': 'Ford', 'start': 842, 'end': 846}, {'entity': 'I-ORG', 'score': 0.99770856, 'index': 333, 'word': 'Co', 'start': 847, 'end': 849}, {'entity': 'I-ORG', 'score': 0.99671376, 'index': 334, 'word': '##sworth', 'start': 849, 'end': 855}, {'entity': 'I-PER', 'score': 0.9996526, 'index': 346, 'word': 'Gil', 'start': 874, 'end': 877}, {'entity': 'I-PER', 'score': 0.99957675, 'index': 347, 'word': 'de', 'start': 878, 'end': 880}, {'entity': 'I-PER', 'score': 0.99960726, 'index': 348, 'word': 'Fe', 'start': 881, 'end': 883}, {'entity': 'I-PER', 'score': 0.9950617, 'index': 349, 'word': '##rra', 'start': 883, 'end': 886}, {'entity': 'I-PER', 'score': 0.99926347, 'index': 350, 'word': '##n', 'start': 886, 'end': 887}, {'entity': 'I-LOC', 'score': 0.9998548, 'index': 352, 'word': 'Brazil', 'start': 890, 'end': 896}, {'entity': 'I-ORG', 'score': 0.9932787, 'index': 355, 'word': 'Rey', 'start': 901, 'end': 904}, {'entity': 'I-ORG', 'score': 0.9975062, 'index': 356, 'word': '##nard', 'start': 904, 'end': 908}, {'entity': 'I-ORG', 'score': 0.9990451, 'index': 357, 'word': 'Honda', 'start': 909, 'end': 914}]
[{'entity': 'I-LOC', 'score': 0.9302551, 'index': 6, 'word': 'CA', 'start': 9, 'end': 11}, {'entity': 'I-LOC', 'score': 0.89123785, 'index': 7, 'word': '##NA', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.5719331, 'index': 8, 'word': '##DA', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.94147277, 'index': 12, 'word': 'PA', 'start': 21, 'end': 23}, {'entity': 'I-LOC', 'score': 0.51322114, 'index': 13, 'word': '##NA', 'start': 23, 'end': 25}, {'entity': 'I-ORG', 'score': 0.47866985, 'index': 14, 'word': '##MA', 'start': 25, 'end': 27}, {'entity': 'I-MISC', 'score': 0.9933761, 'index': 19, 'word': 'W', 'start': 35, 'end': 36}, {'entity': 'I-MISC', 'score': 0.9821702, 'index': 20, 'word': '##OR', 'start': 36, 'end': 38}, {'entity': 'I-MISC', 'score': 0.9979588, 'index': 21, 'word': '##LD', 'start': 38, 'end': 40}, {'entity': 'I-MISC', 'score': 0.98744375, 'index': 22, 'word': 'C', 'start': 41, 'end': 42}, {'entity': 'I-MISC', 'score': 0.9936652, 'index': 23, 'word': '##UP', 'start': 42, 'end': 44}, {'entity': 'I-LOC', 'score': 0.9985122, 'index': 35, 'word': 'E', 'start': 62, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9846144, 'index': 36, 'word': '##DM', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.98045564, 'index': 37, 'word': '##ON', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.99197984, 'index': 38, 'word': '##TO', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.99708647, 'index': 39, 'word': '##N', 'start': 69, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9997347, 'index': 49, 'word': 'Canada', 'start': 87, 'end': 93}, {'entity': 'I-LOC', 'score': 0.99973303, 'index': 51, 'word': 'Panama', 'start': 99, 'end': 105}, {'entity': 'I-MISC', 'score': 0.9701334, 'index': 63, 'word': 'CONCACAF', 'start': 136, 'end': 144}, {'entity': 'I-MISC', 'score': 0.9862316, 'index': 71, 'word': 'World', 'start': 191, 'end': 196}, {'entity': 'I-MISC', 'score': 0.99921715, 'index': 72, 'word': 'Cup', 'start': 197, 'end': 200}, {'entity': 'I-LOC', 'score': 0.99921227, 'index': 87, 'word': 'Canada', 'start': 233, 'end': 239}, {'entity': 'I-PER', 'score': 0.9986337, 'index': 89, 'word': 'Au', 'start': 242, 'end': 244}, {'entity': 'I-PER', 'score': 0.9993303, 'index': 90, 'word': '##nger', 'start': 244, 'end': 248}, {'entity': 'I-PER', 'score': 0.99959403, 'index': 98, 'word': 'Paul', 'start': 270, 'end': 274}, {'entity': 'I-PER', 'score': 0.9990614, 'index': 99, 'word': 'P', 'start': 275, 'end': 276}, {'entity': 'I-PER', 'score': 0.980941, 'index': 100, 'word': '##es', 'start': 276, 'end': 278}, {'entity': 'I-PER', 'score': 0.98485374, 'index': 101, 'word': '##chi', 'start': 278, 'end': 281}, {'entity': 'I-PER', 'score': 0.9871841, 'index': 102, 'word': '##sol', 'start': 281, 'end': 284}, {'entity': 'I-PER', 'score': 0.9931064, 'index': 103, 'word': '##ido', 'start': 284, 'end': 287}, {'entity': 'I-PER', 'score': 0.9995072, 'index': 108, 'word': 'Carlo', 'start': 299, 'end': 304}, {'entity': 'I-PER', 'score': 0.9995425, 'index': 109, 'word': 'Co', 'start': 305, 'end': 307}, {'entity': 'I-PER', 'score': 0.9944621, 'index': 110, 'word': '##rra', 'start': 307, 'end': 310}, {'entity': 'I-PER', 'score': 0.9928288, 'index': 111, 'word': '##zin', 'start': 310, 'end': 313}, {'entity': 'I-LOC', 'score': 0.99897003, 'index': 120, 'word': 'Panama', 'start': 328, 'end': 334}, {'entity': 'I-PER', 'score': 0.9994349, 'index': 122, 'word': 'Jorge', 'start': 337, 'end': 342}, {'entity': 'I-PER', 'score': 0.9996031, 'index': 123, 'word': 'Luis', 'start': 343, 'end': 347}, {'entity': 'I-PER', 'score': 0.99960357, 'index': 124, 'word': 'Del', 'start': 348, 'end': 351}, {'entity': 'I-PER', 'score': 0.99912363, 'index': 125, 'word': '##y', 'start': 351, 'end': 352}, {'entity': 'I-PER', 'score': 0.99835867, 'index': 126, 'word': 'Val', 'start': 353, 'end': 356}, {'entity': 'I-PER', 'score': 0.9970988, 'index': 127, 'word': '##des', 'start': 356, 'end': 359}]
[{'entity': 'I-ORG', 'score': 0.97333, 'index': 1, 'word': 'R', 'start': 0, 'end': 1}, {'entity': 'I-ORG', 'score': 0.5849585, 'index': 2, 'word': '##U', 'start': 1, 'end': 2}, {'entity': 'I-ORG', 'score': 0.76231724, 'index': 3, 'word': '##GB', 'start': 2, 'end': 4}, {'entity': 'I-ORG', 'score': 0.87337804, 'index': 4, 'word': '##Y', 'start': 4, 'end': 5}, {'entity': 'I-ORG', 'score': 0.9932114, 'index': 5, 'word': 'UN', 'start': 6, 'end': 8}, {'entity': 'I-ORG', 'score': 0.94925296, 'index': 6, 'word': '##ION', 'start': 8, 'end': 11}, {'entity': 'I-PER', 'score': 0.78165746, 'index': 8, 'word': 'SP', 'start': 14, 'end': 16}, {'entity': 'I-PER', 'score': 0.67757076, 'index': 23, 'word': 'B', 'start': 43, 'end': 44}, {'entity': 'I-PER', 'score': 0.9997298, 'index': 35, 'word': 'Andy', 'start': 62, 'end': 66}, {'entity': 'I-PER', 'score': 0.9993174, 'index': 36, 'word': 'Col', 'start': 67, 'end': 70}, {'entity': 'I-PER', 'score': 0.98445594, 'index': 37, 'word': '##q', 'start': 70, 'end': 71}, {'entity': 'I-PER', 'score': 0.9221157, 'index': 38, 'word': '##uh', 'start': 71, 'end': 73}, {'entity': 'I-PER', 'score': 0.41207463, 'index': 39, 'word': '##ou', 'start': 73, 'end': 75}, {'entity': 'I-PER', 'score': 0.9833951, 'index': 40, 'word': '##n', 'start': 75, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9930311, 'index': 45, 'word': 'J', 'start': 82, 'end': 83}, {'entity': 'I-LOC', 'score': 0.97632515, 'index': 46, 'word': '##OH', 'start': 83, 'end': 85}, {'entity': 'I-LOC', 'score': 0.9628629, 'index': 47, 'word': '##AN', 'start': 85, 'end': 87}, {'entity': 'I-LOC', 'score': 0.99342304, 'index': 48, 'word': '##NE', 'start': 87, 'end': 89}, {'entity': 'I-LOC', 'score': 0.94380057, 'index': 49, 'word': '##SB', 'start': 89, 'end': 91}, {'entity': 'I-LOC', 'score': 0.8765154, 'index': 50, 'word': '##UR', 'start': 91, 'end': 93}, {'entity': 'I-LOC', 'score': 0.9956898, 'index': 51, 'word': '##G', 'start': 93, 'end': 94}, {'entity': 'I-LOC', 'score': 0.99963415, 'index': 61, 'word': 'South', 'start': 111, 'end': 116}, {'entity': 'I-LOC', 'score': 0.9996302, 'index': 62, 'word': 'Africa', 'start': 117, 'end': 123}, {'entity': 'I-ORG', 'score': 0.9986266, 'index': 77, 'word': 'All', 'start': 195, 'end': 198}, {'entity': 'I-ORG', 'score': 0.99645066, 'index': 78, 'word': 'Blacks', 'start': 199, 'end': 205}, {'entity': 'I-LOC', 'score': 0.96863234, 'index': 96, 'word': 'Ellis', 'start': 261, 'end': 266}, {'entity': 'I-LOC', 'score': 0.990316, 'index': 97, 'word': 'Park', 'start': 267, 'end': 271}, {'entity': 'I-LOC', 'score': 0.99962234, 'index': 116, 'word': 'New', 'start': 362, 'end': 365}, {'entity': 'I-LOC', 'score': 0.99970263, 'index': 117, 'word': 'Zealand', 'start': 366, 'end': 373}, {'entity': 'I-LOC', 'score': 0.9996494, 'index': 157, 'word': 'New', 'start': 542, 'end': 545}, {'entity': 'I-LOC', 'score': 0.99951386, 'index': 158, 'word': 'Zealand', 'start': 546, 'end': 553}, {'entity': 'I-MISC', 'score': 0.95502967, 'index': 175, 'word': 'All', 'start': 628, 'end': 631}, {'entity': 'I-MISC', 'score': 0.91608924, 'index': 176, 'word': 'Black', 'start': 632, 'end': 637}, {'entity': 'I-MISC', 'score': 0.999159, 'index': 180, 'word': 'South', 'start': 656, 'end': 661}, {'entity': 'I-MISC', 'score': 0.9992747, 'index': 181, 'word': 'African', 'start': 662, 'end': 669}, {'entity': 'I-ORG', 'score': 0.9961448, 'index': 188, 'word': 'Spring', 'start': 682, 'end': 688}, {'entity': 'I-ORG', 'score': 0.98797506, 'index': 189, 'word': '##bo', 'start': 688, 'end': 690}, {'entity': 'I-ORG', 'score': 0.99465126, 'index': 190, 'word': '##k', 'start': 690, 'end': 691}, {'entity': 'I-PER', 'score': 0.999765, 'index': 196, 'word': 'Jo', 'start': 703, 'end': 705}, {'entity': 'I-PER', 'score': 0.999742, 'index': 197, 'word': '##ost', 'start': 705, 'end': 708}, {'entity': 'I-PER', 'score': 0.99969494, 'index': 198, 'word': 'van', 'start': 709, 'end': 712}, {'entity': 'I-PER', 'score': 0.9995018, 'index': 199, 'word': 'der', 'start': 713, 'end': 716}, {'entity': 'I-PER', 'score': 0.99955946, 'index': 200, 'word': 'West', 'start': 717, 'end': 721}, {'entity': 'I-PER', 'score': 0.97839373, 'index': 201, 'word': '##hui', 'start': 721, 'end': 724}, {'entity': 'I-PER', 'score': 0.99381447, 'index': 202, 'word': '##zen', 'start': 724, 'end': 727}, {'entity': 'I-PER', 'score': 0.99972814, 'index': 221, 'word': 'Andre', 'start': 817, 'end': 822}, {'entity': 'I-PER', 'score': 0.9997671, 'index': 222, 'word': 'V', 'start': 823, 'end': 824}, {'entity': 'I-PER', 'score': 0.9996929, 'index': 223, 'word': '##enter', 'start': 824, 'end': 829}, {'entity': 'I-PER', 'score': 0.9997671, 'index': 248, 'word': 'Andre', 'start': 921, 'end': 926}, {'entity': 'I-PER', 'score': 0.99966645, 'index': 249, 'word': 'Jo', 'start': 927, 'end': 929}, {'entity': 'I-PER', 'score': 0.9951383, 'index': 250, 'word': '##ube', 'start': 929, 'end': 932}, {'entity': 'I-PER', 'score': 0.99821645, 'index': 251, 'word': '##rt', 'start': 932, 'end': 934}, {'entity': 'I-ORG', 'score': 0.99927384, 'index': 285, 'word': 'All', 'start': 1066, 'end': 1069}, {'entity': 'I-ORG', 'score': 0.9980867, 'index': 286, 'word': 'Blacks', 'start': 1070, 'end': 1076}, {'entity': 'I-PER', 'score': 0.9996842, 'index': 297, 'word': 'Walter', 'start': 1130, 'end': 1136}, {'entity': 'I-PER', 'score': 0.9997619, 'index': 298, 'word': 'Little', 'start': 1137, 'end': 1143}, {'entity': 'I-PER', 'score': 0.9997569, 'index': 305, 'word': 'Justin', 'start': 1159, 'end': 1165}, {'entity': 'I-PER', 'score': 0.999814, 'index': 306, 'word': 'Marshall', 'start': 1166, 'end': 1174}, {'entity': 'I-PER', 'score': 0.9997582, 'index': 344, 'word': 'Andrew', 'start': 1334, 'end': 1340}, {'entity': 'I-PER', 'score': 0.9998184, 'index': 345, 'word': 'Me', 'start': 1341, 'end': 1343}, {'entity': 'I-PER', 'score': 0.9957402, 'index': 346, 'word': '##hr', 'start': 1343, 'end': 1345}, {'entity': 'I-PER', 'score': 0.9987859, 'index': 347, 'word': '##tens', 'start': 1345, 'end': 1349}, {'entity': 'I-PER', 'score': 0.99975616, 'index': 368, 'word': 'Henry', 'start': 1418, 'end': 1423}, {'entity': 'I-PER', 'score': 0.9996444, 'index': 369, 'word': 'Hon', 'start': 1424, 'end': 1427}, {'entity': 'I-PER', 'score': 0.9982151, 'index': 370, 'word': '##iba', 'start': 1427, 'end': 1430}, {'entity': 'I-PER', 'score': 0.99660456, 'index': 371, 'word': '##ll', 'start': 1430, 'end': 1432}, {'entity': 'I-ORG', 'score': 0.9990396, 'index': 374, 'word': 'Spring', 'start': 1444, 'end': 1450}, {'entity': 'I-ORG', 'score': 0.9966169, 'index': 375, 'word': '##bo', 'start': 1450, 'end': 1452}, {'entity': 'I-ORG', 'score': 0.9966989, 'index': 376, 'word': '##ks', 'start': 1452, 'end': 1454}, {'entity': 'I-PER', 'score': 0.9997062, 'index': 389, 'word': 'Andrew', 'start': 1500, 'end': 1506}, {'entity': 'I-PER', 'score': 0.99809104, 'index': 390, 'word': 'Me', 'start': 1507, 'end': 1509}, {'entity': 'I-PER', 'score': 0.82838285, 'index': 392, 'word': '##tens', 'start': 1511, 'end': 1515}, {'entity': 'I-PER', 'score': 0.7999245, 'index': 410, 'word': 'S', 'start': 1593, 'end': 1594}, {'entity': 'I-PER', 'score': 0.9982559, 'index': 412, 'word': 'Me', 'start': 1596, 'end': 1598}, {'entity': 'I-PER', 'score': 0.93370944, 'index': 414, 'word': '##tens', 'start': 1600, 'end': 1604}, {'entity': 'I-PER', 'score': 0.99723816, 'index': 439, 'word': 'Spring', 'start': 1730, 'end': 1736}, {'entity': 'I-PER', 'score': 0.7315539, 'index': 450, 'word': 'S', 'start': 1775, 'end': 1776}, {'entity': 'I-PER', 'score': 0.99706584, 'index': 457, 'word': 'Jo', 'start': 1810, 'end': 1812}, {'entity': 'I-PER', 'score': 0.6601863, 'index': 458, 'word': '##ube', 'start': 1812, 'end': 1815}, {'entity': 'I-PER', 'score': 0.9997003, 'index': 474, 'word': 'Pieter', 'start': 1881, 'end': 1887}, {'entity': 'I-PER', 'score': 0.9100394, 'index': 475, 'word': 'He', 'start': 1888, 'end': 1890}, {'entity': 'I-PER', 'score': 0.7740728, 'index': 477, 'word': '##rik', 'start': 1892, 'end': 1895}, {'entity': 'I-PER', 'score': 0.99803025, 'index': 483, 'word': 'Jo', 'start': 1918, 'end': 1920}, {'entity': 'I-PER', 'score': 0.7561485, 'index': 484, 'word': '##ube', 'start': 1920, 'end': 1923}, {'entity': 'I-MISC', 'score': 0.9879709, 'index': 491, 'word': 'Welsh', 'start': 1944, 'end': 1949}, {'entity': 'I-PER', 'score': 0.9998012, 'index': 493, 'word': 'Derek', 'start': 1958, 'end': 1963}, {'entity': 'I-PER', 'score': 0.9910019, 'index': 494, 'word': 'Be', 'start': 1964, 'end': 1966}, {'entity': 'I-PER', 'score': 0.99699545, 'index': 497, 'word': 'Van', 'start': 1978, 'end': 1981}, {'entity': 'I-PER', 'score': 0.8393621, 'index': 499, 'word': 'West', 'start': 1986, 'end': 1990}, {'entity': 'I-PER', 'score': 0.9917173, 'index': 500, 'word': '##hui', 'start': 1990, 'end': 1993}, {'entity': 'I-PER', 'score': 0.82849604, 'index': 501, 'word': '##zen', 'start': 1993, 'end': 1996}]
[{'entity': 'I-ORG', 'score': 0.98881614, 'index': 1, 'word': 'R', 'start': 0, 'end': 1}, {'entity': 'I-ORG', 'score': 0.70958817, 'index': 2, 'word': '##U', 'start': 1, 'end': 2}, {'entity': 'I-ORG', 'score': 0.9553574, 'index': 3, 'word': '##GB', 'start': 2, 'end': 4}, {'entity': 'I-ORG', 'score': 0.97279537, 'index': 4, 'word': '##Y', 'start': 4, 'end': 5}, {'entity': 'I-ORG', 'score': 0.997162, 'index': 5, 'word': 'UN', 'start': 6, 'end': 8}, {'entity': 'I-ORG', 'score': 0.9929006, 'index': 6, 'word': '##ION', 'start': 8, 'end': 11}, {'entity': 'I-LOC', 'score': 0.9889376, 'index': 8, 'word': 'S', 'start': 14, 'end': 15}, {'entity': 'I-LOC', 'score': 0.80657876, 'index': 9, 'word': '##O', 'start': 15, 'end': 16}, {'entity': 'I-LOC', 'score': 0.5884818, 'index': 10, 'word': '##UT', 'start': 16, 'end': 18}, {'entity': 'I-LOC', 'score': 0.76092035, 'index': 11, 'word': '##H', 'start': 18, 'end': 19}, {'entity': 'I-LOC', 'score': 0.9905246, 'index': 12, 'word': 'A', 'start': 20, 'end': 21}, {'entity': 'I-LOC', 'score': 0.98039573, 'index': 13, 'word': '##F', 'start': 21, 'end': 22}, {'entity': 'I-LOC', 'score': 0.9208726, 'index': 14, 'word': '##RI', 'start': 22, 'end': 24}, {'entity': 'I-LOC', 'score': 0.99527186, 'index': 15, 'word': '##CA', 'start': 24, 'end': 26}, {'entity': 'I-LOC', 'score': 0.53993744, 'index': 19, 'word': 'AL', 'start': 32, 'end': 34}, {'entity': 'I-ORG', 'score': 0.42089206, 'index': 20, 'word': '##L', 'start': 34, 'end': 35}, {'entity': 'I-LOC', 'score': 0.9313995, 'index': 21, 'word': 'B', 'start': 36, 'end': 37}, {'entity': 'I-LOC', 'score': 0.42851076, 'index': 22, 'word': '##LA', 'start': 37, 'end': 39}, {'entity': 'I-LOC', 'score': 0.50713253, 'index': 23, 'word': '##C', 'start': 39, 'end': 40}, {'entity': 'I-LOC', 'score': 0.7602233, 'index': 24, 'word': '##KS', 'start': 40, 'end': 42}, {'entity': 'I-LOC', 'score': 0.9961433, 'index': 33, 'word': 'J', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9902283, 'index': 34, 'word': '##OH', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9939586, 'index': 35, 'word': '##AN', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.99828595, 'index': 36, 'word': '##NE', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.98677284, 'index': 37, 'word': '##SB', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9662696, 'index': 38, 'word': '##UR', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9986059, 'index': 39, 'word': '##G', 'start': 67, 'end': 68}, {'entity': 'I-LOC', 'score': 0.999658, 'index': 49, 'word': 'South', 'start': 85, 'end': 90}, {'entity': 'I-LOC', 'score': 0.99968386, 'index': 50, 'word': 'Africa', 'start': 91, 'end': 97}, {'entity': 'I-LOC', 'score': 0.999569, 'index': 52, 'word': 'New', 'start': 103, 'end': 106}, {'entity': 'I-LOC', 'score': 0.9996866, 'index': 53, 'word': 'Zealand', 'start': 107, 'end': 114}, {'entity': 'I-LOC', 'score': 0.99666226, 'index': 76, 'word': 'Ellis', 'start': 192, 'end': 197}, {'entity': 'I-LOC', 'score': 0.9980648, 'index': 77, 'word': 'Park', 'start': 198, 'end': 202}, {'entity': 'I-LOC', 'score': 0.9973043, 'index': 92, 'word': 'South', 'start': 237, 'end': 242}, {'entity': 'I-LOC', 'score': 0.9964316, 'index': 93, 'word': 'Africa', 'start': 243, 'end': 249}, {'entity': 'I-PER', 'score': 0.99973136, 'index': 98, 'word': 'Jo', 'start': 260, 'end': 262}, {'entity': 'I-PER', 'score': 0.9997404, 'index': 99, 'word': '##ost', 'start': 262, 'end': 265}, {'entity': 'I-PER', 'score': 0.999647, 'index': 100, 'word': 'van', 'start': 266, 'end': 269}, {'entity': 'I-PER', 'score': 0.999071, 'index': 101, 'word': 'der', 'start': 270, 'end': 273}, {'entity': 'I-PER', 'score': 0.9994271, 'index': 102, 'word': 'West', 'start': 274, 'end': 278}, {'entity': 'I-PER', 'score': 0.95569795, 'index': 103, 'word': '##hui', 'start': 278, 'end': 281}, {'entity': 'I-PER', 'score': 0.9892056, 'index': 104, 'word': '##zen', 'start': 281, 'end': 284}, {'entity': 'I-PER', 'score': 0.99975234, 'index': 109, 'word': 'Andre', 'start': 293, 'end': 298}, {'entity': 'I-PER', 'score': 0.99966383, 'index': 110, 'word': 'Jo', 'start': 299, 'end': 301}, {'entity': 'I-PER', 'score': 0.99160904, 'index': 111, 'word': '##ube', 'start': 301, 'end': 304}, {'entity': 'I-PER', 'score': 0.99292576, 'index': 112, 'word': '##rt', 'start': 304, 'end': 306}, {'entity': 'I-PER', 'score': 0.9997315, 'index': 121, 'word': 'Henry', 'start': 327, 'end': 332}, {'entity': 'I-PER', 'score': 0.99942553, 'index': 122, 'word': 'Hon', 'start': 333, 'end': 336}, {'entity': 'I-PER', 'score': 0.99623054, 'index': 123, 'word': '##iba', 'start': 336, 'end': 339}, {'entity': 'I-PER', 'score': 0.98551756, 'index': 124, 'word': '##ll', 'start': 339, 'end': 341}, {'entity': 'I-PER', 'score': 0.99955183, 'index': 134, 'word': 'Hon', 'start': 361, 'end': 364}, {'entity': 'I-PER', 'score': 0.9968406, 'index': 135, 'word': '##iba', 'start': 364, 'end': 367}, {'entity': 'I-PER', 'score': 0.9812676, 'index': 136, 'word': '##ll', 'start': 367, 'end': 369}, {'entity': 'I-PER', 'score': 0.99956053, 'index': 141, 'word': 'Jo', 'start': 378, 'end': 380}, {'entity': 'I-PER', 'score': 0.9944305, 'index': 142, 'word': '##ube', 'start': 380, 'end': 383}, {'entity': 'I-PER', 'score': 0.99175644, 'index': 143, 'word': '##rt', 'start': 383, 'end': 385}, {'entity': 'I-LOC', 'score': 0.9983051, 'index': 152, 'word': 'New', 'start': 399, 'end': 402}, {'entity': 'I-LOC', 'score': 0.9968323, 'index': 153, 'word': 'Zealand', 'start': 403, 'end': 410}, {'entity': 'I-PER', 'score': 0.9997595, 'index': 158, 'word': 'Sean', 'start': 421, 'end': 425}, {'entity': 'I-PER', 'score': 0.99979895, 'index': 159, 'word': 'Fi', 'start': 426, 'end': 428}, {'entity': 'I-PER', 'score': 0.9980938, 'index': 160, 'word': '##tz', 'start': 428, 'end': 430}, {'entity': 'I-PER', 'score': 0.99973625, 'index': 161, 'word': '##patrick', 'start': 430, 'end': 437}, {'entity': 'I-PER', 'score': 0.99972576, 'index': 163, 'word': 'Walter', 'start': 440, 'end': 446}, {'entity': 'I-PER', 'score': 0.9998306, 'index': 164, 'word': 'Little', 'start': 447, 'end': 453}, {'entity': 'I-PER', 'score': 0.99972624, 'index': 166, 'word': 'Justin', 'start': 456, 'end': 462}, {'entity': 'I-PER', 'score': 0.9998276, 'index': 167, 'word': 'Marshall', 'start': 463, 'end': 471}, {'entity': 'I-PER', 'score': 0.9997497, 'index': 177, 'word': 'Andrew', 'start': 493, 'end': 499}, {'entity': 'I-PER', 'score': 0.9998047, 'index': 178, 'word': 'Me', 'start': 500, 'end': 502}, {'entity': 'I-PER', 'score': 0.98569185, 'index': 179, 'word': '##hr', 'start': 502, 'end': 504}, {'entity': 'I-PER', 'score': 0.99257845, 'index': 180, 'word': '##tens', 'start': 504, 'end': 508}, {'entity': 'I-PER', 'score': 0.9997782, 'index': 193, 'word': 'Me', 'start': 534, 'end': 536}, {'entity': 'I-PER', 'score': 0.9899058, 'index': 194, 'word': '##hr', 'start': 536, 'end': 538}, {'entity': 'I-PER', 'score': 0.976374, 'index': 195, 'word': '##tens', 'start': 538, 'end': 542}, {'entity': 'I-LOC', 'score': 0.9992919, 'index': 201, 'word': 'New', 'start': 550, 'end': 553}, {'entity': 'I-LOC', 'score': 0.9995247, 'index': 202, 'word': 'Zealand', 'start': 554, 'end': 561}]
[{'entity': 'I-MISC', 'score': 0.94415927, 'index': 6, 'word': 'MA', 'start': 9, 'end': 11}, {'entity': 'I-LOC', 'score': 0.7214819, 'index': 7, 'word': '##UR', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.55992067, 'index': 8, 'word': '##IT', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.53936017, 'index': 9, 'word': '##AN', 'start': 15, 'end': 17}, {'entity': 'I-LOC', 'score': 0.71352255, 'index': 10, 'word': '##IA', 'start': 17, 'end': 19}, {'entity': 'I-MISC', 'score': 0.64126015, 'index': 17, 'word': 'N', 'start': 30, 'end': 31}, {'entity': 'I-MISC', 'score': 0.9891773, 'index': 27, 'word': 'C', 'start': 50, 'end': 51}, {'entity': 'I-MISC', 'score': 0.9918247, 'index': 28, 'word': '##UP', 'start': 51, 'end': 53}, {'entity': 'I-LOC', 'score': 0.99359894, 'index': 37, 'word': 'NO', 'start': 66, 'end': 68}, {'entity': 'I-LOC', 'score': 0.97891486, 'index': 38, 'word': '##U', 'start': 68, 'end': 69}, {'entity': 'I-LOC', 'score': 0.92456746, 'index': 39, 'word': '##A', 'start': 69, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9941738, 'index': 40, 'word': '##K', 'start': 70, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9164468, 'index': 41, 'word': '##CH', 'start': 71, 'end': 73}, {'entity': 'I-LOC', 'score': 0.9770632, 'index': 42, 'word': '##OT', 'start': 73, 'end': 75}, {'entity': 'I-LOC', 'score': 0.9880604, 'index': 43, 'word': '##T', 'start': 75, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9995621, 'index': 53, 'word': 'Ma', 'start': 93, 'end': 95}, {'entity': 'I-LOC', 'score': 0.99919206, 'index': 54, 'word': '##uri', 'start': 95, 'end': 98}, {'entity': 'I-LOC', 'score': 0.999788, 'index': 55, 'word': '##tania', 'start': 98, 'end': 103}, {'entity': 'I-MISC', 'score': 0.99682486, 'index': 87, 'word': 'African', 'start': 273, 'end': 280}, {'entity': 'I-MISC', 'score': 0.9735059, 'index': 88, 'word': 'Nations', 'start': 281, 'end': 288}, {'entity': 'I-MISC', 'score': 0.98188156, 'index': 89, 'word': "'", 'start': 289, 'end': 290}, {'entity': 'I-MISC', 'score': 0.9988147, 'index': 90, 'word': 'Cup', 'start': 291, 'end': 294}, {'entity': 'I-LOC', 'score': 0.99956316, 'index': 98, 'word': 'Ma', 'start': 310, 'end': 312}, {'entity': 'I-LOC', 'score': 0.9993242, 'index': 99, 'word': '##uri', 'start': 312, 'end': 315}, {'entity': 'I-LOC', 'score': 0.9997435, 'index': 100, 'word': '##tania', 'start': 315, 'end': 320}, {'entity': 'I-PER', 'score': 0.99948704, 'index': 129, 'word': 'Mohamed', 'start': 468, 'end': 475}, {'entity': 'I-PER', 'score': 0.9996525, 'index': 130, 'word': 'Le', 'start': 476, 'end': 478}, {'entity': 'I-PER', 'score': 0.9988563, 'index': 131, 'word': '##mine', 'start': 478, 'end': 482}, {'entity': 'I-PER', 'score': 0.9994337, 'index': 132, 'word': 'Ch', 'start': 483, 'end': 485}, {'entity': 'I-PER', 'score': 0.93620276, 'index': 133, 'word': '##ei', 'start': 485, 'end': 487}, {'entity': 'I-PER', 'score': 0.9746147, 'index': 134, 'word': '##gue', 'start': 487, 'end': 490}, {'entity': 'I-PER', 'score': 0.9756412, 'index': 135, 'word': '##r', 'start': 490, 'end': 491}, {'entity': 'I-MISC', 'score': 0.998108, 'index': 143, 'word': 'North', 'start': 508, 'end': 513}, {'entity': 'I-MISC', 'score': 0.99779224, 'index': 144, 'word': 'Africans', 'start': 514, 'end': 522}, {'entity': 'I-LOC', 'score': 0.9997358, 'index': 153, 'word': 'Benin', 'start': 555, 'end': 560}]
[{'entity': 'I-LOC', 'score': 0.98281497, 'index': 6, 'word': 'MA', 'start': 9, 'end': 11}, {'entity': 'I-LOC', 'score': 0.93346816, 'index': 7, 'word': '##UR', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.9683964, 'index': 8, 'word': '##IT', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.9563653, 'index': 9, 'word': '##AN', 'start': 15, 'end': 17}, {'entity': 'I-LOC', 'score': 0.99131143, 'index': 10, 'word': '##IA', 'start': 17, 'end': 19}, {'entity': 'I-PER', 'score': 0.6163743, 'index': 17, 'word': 'B', 'start': 30, 'end': 31}, {'entity': 'I-ORG', 'score': 0.3504698, 'index': 18, 'word': '##EN', 'start': 31, 'end': 33}, {'entity': 'I-ORG', 'score': 0.4857576, 'index': 19, 'word': '##IN', 'start': 33, 'end': 35}, {'entity': 'I-MISC', 'score': 0.99866486, 'index': 21, 'word': 'A', 'start': 39, 'end': 40}, {'entity': 'I-MISC', 'score': 0.9987675, 'index': 22, 'word': '##F', 'start': 40, 'end': 41}, {'entity': 'I-MISC', 'score': 0.99490166, 'index': 23, 'word': '##RI', 'start': 41, 'end': 43}, {'entity': 'I-MISC', 'score': 0.998209, 'index': 24, 'word': '##CA', 'start': 43, 'end': 45}, {'entity': 'I-MISC', 'score': 0.99816495, 'index': 25, 'word': '##N', 'start': 45, 'end': 46}, {'entity': 'I-MISC', 'score': 0.9832485, 'index': 26, 'word': 'N', 'start': 47, 'end': 48}, {'entity': 'I-MISC', 'score': 0.95824206, 'index': 27, 'word': '##AT', 'start': 48, 'end': 50}, {'entity': 'I-MISC', 'score': 0.9617818, 'index': 28, 'word': '##ION', 'start': 50, 'end': 53}, {'entity': 'I-MISC', 'score': 0.9919173, 'index': 29, 'word': '##S', 'start': 53, 'end': 54}, {'entity': 'I-MISC', 'score': 0.9861952, 'index': 30, 'word': 'C', 'start': 55, 'end': 56}, {'entity': 'I-MISC', 'score': 0.9903296, 'index': 31, 'word': '##UP', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.99465007, 'index': 37, 'word': 'NO', 'start': 66, 'end': 68}, {'entity': 'I-LOC', 'score': 0.9746052, 'index': 38, 'word': '##U', 'start': 68, 'end': 69}, {'entity': 'I-LOC', 'score': 0.94435936, 'index': 39, 'word': '##A', 'start': 69, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9942674, 'index': 40, 'word': '##K', 'start': 70, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9371023, 'index': 41, 'word': '##CH', 'start': 71, 'end': 73}, {'entity': 'I-LOC', 'score': 0.9811721, 'index': 42, 'word': '##OT', 'start': 73, 'end': 75}, {'entity': 'I-LOC', 'score': 0.99187464, 'index': 43, 'word': '##T', 'start': 75, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9994017, 'index': 53, 'word': 'Ma', 'start': 93, 'end': 95}, {'entity': 'I-LOC', 'score': 0.9992865, 'index': 54, 'word': '##uri', 'start': 95, 'end': 98}, {'entity': 'I-LOC', 'score': 0.99971217, 'index': 55, 'word': '##tania', 'start': 98, 'end': 103}, {'entity': 'I-LOC', 'score': 0.9997832, 'index': 61, 'word': 'Benin', 'start': 118, 'end': 123}, {'entity': 'I-MISC', 'score': 0.9981115, 'index': 64, 'word': 'African', 'start': 133, 'end': 140}, {'entity': 'I-MISC', 'score': 0.9731144, 'index': 65, 'word': 'Nations', 'start': 141, 'end': 148}, {'entity': 'I-MISC', 'score': 0.9986212, 'index': 66, 'word': 'Cup', 'start': 149, 'end': 152}, {'entity': 'I-LOC', 'score': 0.99972457, 'index': 81, 'word': 'Benin', 'start': 214, 'end': 219}]
[{'entity': 'I-MISC', 'score': 0.89474934, 'index': 6, 'word': 'Y', 'start': 9, 'end': 10}, {'entity': 'I-ORG', 'score': 0.58700055, 'index': 7, 'word': '##U', 'start': 10, 'end': 11}, {'entity': 'I-ORG', 'score': 0.4422218, 'index': 8, 'word': '##G', 'start': 11, 'end': 12}, {'entity': 'I-ORG', 'score': 0.88412714, 'index': 9, 'word': '##OS', 'start': 12, 'end': 14}, {'entity': 'I-ORG', 'score': 0.81818974, 'index': 10, 'word': '##LA', 'start': 14, 'end': 16}, {'entity': 'I-ORG', 'score': 0.4954636, 'index': 11, 'word': '##V', 'start': 16, 'end': 17}, {'entity': 'I-LOC', 'score': 0.53295726, 'index': 32, 'word': 'B', 'start': 52, 'end': 53}, {'entity': 'I-ORG', 'score': 0.85969543, 'index': 33, 'word': '##EL', 'start': 53, 'end': 55}, {'entity': 'I-ORG', 'score': 0.46705756, 'index': 34, 'word': '##GR', 'start': 55, 'end': 57}, {'entity': 'I-ORG', 'score': 0.33780316, 'index': 35, 'word': '##AD', 'start': 57, 'end': 59}, {'entity': 'I-MISC', 'score': 0.99902356, 'index': 48, 'word': 'Yugoslav', 'start': 88, 'end': 96}, {'entity': 'I-MISC', 'score': 0.49693224, 'index': 52, 'word': 'S', 'start': 106, 'end': 107}, {'entity': 'I-ORG', 'score': 0.99963486, 'index': 70, 'word': 'Ha', 'start': 166, 'end': 168}, {'entity': 'I-ORG', 'score': 0.9989968, 'index': 71, 'word': '##j', 'start': 168, 'end': 169}, {'entity': 'I-ORG', 'score': 0.99891245, 'index': 72, 'word': '##du', 'start': 169, 'end': 171}, {'entity': 'I-ORG', 'score': 0.9993062, 'index': 73, 'word': '##k', 'start': 171, 'end': 172}, {'entity': 'I-ORG', 'score': 0.9995876, 'index': 75, 'word': 'Pro', 'start': 175, 'end': 178}, {'entity': 'I-ORG', 'score': 0.9986436, 'index': 76, 'word': '##let', 'start': 178, 'end': 181}, {'entity': 'I-ORG', 'score': 0.9993754, 'index': 77, 'word': '##er', 'start': 181, 'end': 183}, {'entity': 'I-ORG', 'score': 0.9915565, 'index': 78, 'word': '(', 'start': 184, 'end': 185}, {'entity': 'I-ORG', 'score': 0.9988997, 'index': 79, 'word': 'Z', 'start': 186, 'end': 187}, {'entity': 'I-ORG', 'score': 0.99720985, 'index': 80, 'word': ')', 'start': 188, 'end': 189}, {'entity': 'I-ORG', 'score': 0.9996076, 'index': 86, 'word': 'Z', 'start': 197, 'end': 198}, {'entity': 'I-ORG', 'score': 0.9978861, 'index': 87, 'word': '##em', 'start': 198, 'end': 200}, {'entity': 'I-ORG', 'score': 0.99930406, 'index': 88, 'word': '##un', 'start': 200, 'end': 202}, {'entity': 'I-ORG', 'score': 0.9995436, 'index': 90, 'word': 'Ra', 'start': 205, 'end': 207}, {'entity': 'I-ORG', 'score': 0.9989178, 'index': 91, 'word': '##d', 'start': 207, 'end': 208}, {'entity': 'I-ORG', 'score': 0.9936418, 'index': 92, 'word': '(', 'start': 209, 'end': 210}, {'entity': 'I-ORG', 'score': 0.99934334, 'index': 93, 'word': 'B', 'start': 211, 'end': 212}, {'entity': 'I-ORG', 'score': 0.998645, 'index': 94, 'word': ')', 'start': 213, 'end': 214}, {'entity': 'I-ORG', 'score': 0.9996865, 'index': 100, 'word': 'Bo', 'start': 222, 'end': 224}, {'entity': 'I-ORG', 'score': 0.9996457, 'index': 101, 'word': '##rac', 'start': 224, 'end': 227}, {'entity': 'I-ORG', 'score': 0.9996908, 'index': 103, 'word': 'M', 'start': 230, 'end': 231}, {'entity': 'I-ORG', 'score': 0.9995208, 'index': 104, 'word': '##lad', 'start': 231, 'end': 234}, {'entity': 'I-ORG', 'score': 0.99950564, 'index': 105, 'word': '##ost', 'start': 234, 'end': 237}, {'entity': 'I-ORG', 'score': 0.9960418, 'index': 106, 'word': '(', 'start': 238, 'end': 239}, {'entity': 'I-ORG', 'score': 0.9994367, 'index': 107, 'word': 'L', 'start': 240, 'end': 241}, {'entity': 'I-ORG', 'score': 0.9987527, 'index': 108, 'word': ')', 'start': 242, 'end': 243}, {'entity': 'I-ORG', 'score': 0.99913067, 'index': 114, 'word': 'C', 'start': 251, 'end': 252}, {'entity': 'I-ORG', 'score': 0.9853866, 'index': 115, 'word': '##uka', 'start': 252, 'end': 255}, {'entity': 'I-ORG', 'score': 0.99851435, 'index': 116, 'word': '##rick', 'start': 255, 'end': 259}, {'entity': 'I-ORG', 'score': 0.99879336, 'index': 117, 'word': '##i', 'start': 259, 'end': 260}, {'entity': 'I-ORG', 'score': 0.9993844, 'index': 119, 'word': 'V', 'start': 263, 'end': 264}, {'entity': 'I-ORG', 'score': 0.9979031, 'index': 120, 'word': '##o', 'start': 264, 'end': 265}, {'entity': 'I-ORG', 'score': 0.9982337, 'index': 121, 'word': '##j', 'start': 265, 'end': 266}, {'entity': 'I-ORG', 'score': 0.9987447, 'index': 122, 'word': '##vo', 'start': 266, 'end': 268}, {'entity': 'I-ORG', 'score': 0.9995492, 'index': 123, 'word': '##dina', 'start': 268, 'end': 272}, {'entity': 'I-ORG', 'score': 0.99955493, 'index': 129, 'word': 'Bud', 'start': 280, 'end': 283}, {'entity': 'I-ORG', 'score': 0.9985092, 'index': 130, 'word': '##uc', 'start': 283, 'end': 285}, {'entity': 'I-ORG', 'score': 0.9950112, 'index': 131, 'word': '##nos', 'start': 285, 'end': 288}, {'entity': 'I-ORG', 'score': 0.99887985, 'index': 132, 'word': '##t', 'start': 288, 'end': 289}, {'entity': 'I-ORG', 'score': 0.99957246, 'index': 134, 'word': 'Red', 'start': 292, 'end': 295}, {'entity': 'I-ORG', 'score': 0.99945194, 'index': 135, 'word': 'Star', 'start': 296, 'end': 300}, {'entity': 'I-ORG', 'score': 0.99971503, 'index': 141, 'word': 'Part', 'start': 308, 'end': 312}, {'entity': 'I-ORG', 'score': 0.99947387, 'index': 142, 'word': '##iza', 'start': 312, 'end': 315}, {'entity': 'I-ORG', 'score': 0.99946195, 'index': 143, 'word': '##n', 'start': 315, 'end': 316}, {'entity': 'I-ORG', 'score': 0.99963796, 'index': 145, 'word': 'Be', 'start': 319, 'end': 321}, {'entity': 'I-ORG', 'score': 0.99841356, 'index': 146, 'word': '##ce', 'start': 321, 'end': 323}, {'entity': 'I-ORG', 'score': 0.9992175, 'index': 147, 'word': '##j', 'start': 323, 'end': 324}, {'entity': 'I-ORG', 'score': 0.99959666, 'index': 183, 'word': 'Red', 'start': 429, 'end': 432}, {'entity': 'I-ORG', 'score': 0.9994765, 'index': 184, 'word': 'Star', 'start': 433, 'end': 437}, {'entity': 'I-ORG', 'score': 0.69393086, 'index': 194, 'word': 'S', 'start': 455, 'end': 456}, {'entity': 'I-ORG', 'score': 0.9996817, 'index': 196, 'word': 'Part', 'start': 458, 'end': 462}, {'entity': 'I-ORG', 'score': 0.9995116, 'index': 197, 'word': '##iza', 'start': 462, 'end': 465}, {'entity': 'I-ORG', 'score': 0.99950254, 'index': 198, 'word': '##n', 'start': 465, 'end': 466}, {'entity': 'I-ORG', 'score': 0.9997291, 'index': 210, 'word': 'M', 'start': 488, 'end': 489}, {'entity': 'I-ORG', 'score': 0.999363, 'index': 211, 'word': '##lad', 'start': 489, 'end': 492}, {'entity': 'I-ORG', 'score': 0.99949026, 'index': 212, 'word': '##ost', 'start': 492, 'end': 495}, {'entity': 'I-ORG', 'score': 0.997017, 'index': 213, 'word': '(', 'start': 496, 'end': 497}, {'entity': 'I-ORG', 'score': 0.9994425, 'index': 214, 'word': 'L', 'start': 498, 'end': 499}, {'entity': 'I-ORG', 'score': 0.99861014, 'index': 215, 'word': ')', 'start': 500, 'end': 501}, {'entity': 'I-ORG', 'score': 0.9996326, 'index': 227, 'word': 'V', 'start': 521, 'end': 522}, {'entity': 'I-ORG', 'score': 0.9977616, 'index': 228, 'word': '##o', 'start': 522, 'end': 523}, {'entity': 'I-ORG', 'score': 0.99874073, 'index': 229, 'word': '##j', 'start': 523, 'end': 524}, {'entity': 'I-ORG', 'score': 0.9989919, 'index': 230, 'word': '##vo', 'start': 524, 'end': 526}, {'entity': 'I-ORG', 'score': 0.9995802, 'index': 231, 'word': '##dina', 'start': 526, 'end': 530}, {'entity': 'I-ORG', 'score': 0.48361737, 'index': 241, 'word': 'S', 'start': 547, 'end': 548}, {'entity': 'I-ORG', 'score': 0.9996363, 'index': 243, 'word': 'Be', 'start': 550, 'end': 552}, {'entity': 'I-ORG', 'score': 0.998845, 'index': 244, 'word': '##ce', 'start': 552, 'end': 554}, {'entity': 'I-ORG', 'score': 0.9991738, 'index': 245, 'word': '##j', 'start': 554, 'end': 555}, {'entity': 'I-ORG', 'score': 0.9995653, 'index': 257, 'word': 'Ha', 'start': 575, 'end': 577}, {'entity': 'I-ORG', 'score': 0.9990484, 'index': 258, 'word': '##j', 'start': 577, 'end': 578}, {'entity': 'I-ORG', 'score': 0.9990876, 'index': 259, 'word': '##du', 'start': 578, 'end': 580}, {'entity': 'I-ORG', 'score': 0.9992149, 'index': 260, 'word': '##k', 'start': 580, 'end': 581}, {'entity': 'I-ORG', 'score': 0.9988846, 'index': 272, 'word': 'C', 'start': 601, 'end': 602}, {'entity': 'I-ORG', 'score': 0.9827005, 'index': 273, 'word': '##uka', 'start': 602, 'end': 605}, {'entity': 'I-ORG', 'score': 0.9982212, 'index': 274, 'word': '##rick', 'start': 605, 'end': 609}, {'entity': 'I-ORG', 'score': 0.9984738, 'index': 275, 'word': '##i', 'start': 609, 'end': 610}, {'entity': 'I-ORG', 'score': 0.9993749, 'index': 287, 'word': 'Z', 'start': 630, 'end': 631}, {'entity': 'I-ORG', 'score': 0.99451834, 'index': 288, 'word': '##em', 'start': 631, 'end': 633}, {'entity': 'I-ORG', 'score': 0.9986975, 'index': 289, 'word': '##un', 'start': 633, 'end': 635}, {'entity': 'I-ORG', 'score': 0.9993722, 'index': 301, 'word': 'Ra', 'start': 655, 'end': 657}, {'entity': 'I-ORG', 'score': 0.998628, 'index': 302, 'word': '##d', 'start': 657, 'end': 658}, {'entity': 'I-ORG', 'score': 0.9961086, 'index': 303, 'word': '(', 'start': 659, 'end': 660}, {'entity': 'I-ORG', 'score': 0.9992841, 'index': 304, 'word': 'B', 'start': 661, 'end': 662}, {'entity': 'I-ORG', 'score': 0.99870825, 'index': 305, 'word': ')', 'start': 663, 'end': 664}, {'entity': 'I-ORG', 'score': 0.9992693, 'index': 317, 'word': 'Bud', 'start': 684, 'end': 687}, {'entity': 'I-ORG', 'score': 0.99875224, 'index': 318, 'word': '##uc', 'start': 687, 'end': 689}, {'entity': 'I-ORG', 'score': 0.99688774, 'index': 319, 'word': '##nos', 'start': 689, 'end': 692}, {'entity': 'I-ORG', 'score': 0.99903226, 'index': 320, 'word': '##t', 'start': 692, 'end': 693}, {'entity': 'I-ORG', 'score': 0.99952614, 'index': 332, 'word': 'Pro', 'start': 713, 'end': 716}, {'entity': 'I-ORG', 'score': 0.99748623, 'index': 333, 'word': '##let', 'start': 716, 'end': 719}, {'entity': 'I-ORG', 'score': 0.9992207, 'index': 334, 'word': '##er', 'start': 719, 'end': 721}, {'entity': 'I-ORG', 'score': 0.9941934, 'index': 335, 'word': '(', 'start': 722, 'end': 723}, {'entity': 'I-ORG', 'score': 0.99863106, 'index': 336, 'word': 'Z', 'start': 724, 'end': 725}, {'entity': 'I-ORG', 'score': 0.99852884, 'index': 337, 'word': ')', 'start': 726, 'end': 727}, {'entity': 'I-ORG', 'score': 0.9996395, 'index': 349, 'word': 'Bo', 'start': 747, 'end': 749}, {'entity': 'I-ORG', 'score': 0.9995166, 'index': 350, 'word': '##rac', 'start': 749, 'end': 752}, {'entity': 'I-ORG', 'score': 0.8547176, 'index': 363, 'word': 'B', 'start': 782, 'end': 783}, {'entity': 'I-ORG', 'score': 0.99953234, 'index': 368, 'word': 'S', 'start': 789, 'end': 790}, {'entity': 'I-ORG', 'score': 0.99521434, 'index': 369, 'word': '##lo', 'start': 790, 'end': 792}, {'entity': 'I-ORG', 'score': 0.98135936, 'index': 370, 'word': '##bo', 'start': 792, 'end': 794}, {'entity': 'I-ORG', 'score': 0.9988876, 'index': 371, 'word': '##da', 'start': 794, 'end': 796}, {'entity': 'I-ORG', 'score': 0.9995402, 'index': 373, 'word': 'M', 'start': 799, 'end': 800}, {'entity': 'I-ORG', 'score': 0.9992211, 'index': 374, 'word': '##lad', 'start': 800, 'end': 803}, {'entity': 'I-ORG', 'score': 0.99930966, 'index': 375, 'word': '##ost', 'start': 803, 'end': 806}, {'entity': 'I-ORG', 'score': 0.9909898, 'index': 376, 'word': '(', 'start': 807, 'end': 808}, {'entity': 'I-ORG', 'score': 0.9991979, 'index': 377, 'word': 'B', 'start': 809, 'end': 810}, {'entity': 'I-ORG', 'score': 0.98665214, 'index': 378, 'word': '##J', 'start': 810, 'end': 811}, {'entity': 'I-ORG', 'score': 0.9960592, 'index': 379, 'word': ')', 'start': 812, 'end': 813}, {'entity': 'I-ORG', 'score': 0.99863404, 'index': 385, 'word': 'Bud', 'start': 821, 'end': 824}, {'entity': 'I-ORG', 'score': 0.9944174, 'index': 386, 'word': '##uc', 'start': 824, 'end': 826}, {'entity': 'I-ORG', 'score': 0.9991326, 'index': 387, 'word': '##nos', 'start': 826, 'end': 829}, {'entity': 'I-ORG', 'score': 0.9936253, 'index': 388, 'word': '##t', 'start': 829, 'end': 830}, {'entity': 'I-ORG', 'score': 0.995619, 'index': 390, 'word': 'V', 'start': 833, 'end': 834}, {'entity': 'I-ORG', 'score': 0.997471, 'index': 394, 'word': '##K', 'start': 841, 'end': 842}, {'entity': 'I-ORG', 'score': 0.9977742, 'index': 395, 'word': 'Be', 'start': 843, 'end': 845}, {'entity': 'I-ORG', 'score': 0.99764746, 'index': 396, 'word': '##og', 'start': 845, 'end': 847}, {'entity': 'I-ORG', 'score': 0.9975382, 'index': 397, 'word': '##rad', 'start': 847, 'end': 850}, {'entity': 'I-ORG', 'score': 0.9957842, 'index': 401, 'word': 'S', 'start': 855, 'end': 856}, {'entity': 'I-ORG', 'score': 0.98857796, 'index': 403, 'word': 'R', 'start': 858, 'end': 859}, {'entity': 'I-ORG', 'score': 0.99252146, 'index': 404, 'word': '##uda', 'start': 859, 'end': 862}, {'entity': 'I-ORG', 'score': 0.9968099, 'index': 405, 'word': '##r', 'start': 862, 'end': 863}, {'entity': 'I-ORG', 'score': 0.99814236, 'index': 408, 'word': '##K', 'start': 868, 'end': 869}, {'entity': 'I-ORG', 'score': 0.99700075, 'index': 409, 'word': 'Ki', 'start': 870, 'end': 872}, {'entity': 'I-ORG', 'score': 0.9897404, 'index': 410, 'word': '##kind', 'start': 872, 'end': 876}, {'entity': 'I-ORG', 'score': 0.99675304, 'index': 411, 'word': '##a', 'start': 876, 'end': 877}, {'entity': 'I-ORG', 'score': 0.99125403, 'index': 415, 'word': 'S', 'start': 882, 'end': 883}, {'entity': 'I-ORG', 'score': 0.99606067, 'index': 417, 'word': 'O', 'start': 885, 'end': 886}, {'entity': 'I-ORG', 'score': 0.98994046, 'index': 418, 'word': '##bil', 'start': 886, 'end': 889}, {'entity': 'I-ORG', 'score': 0.9965178, 'index': 419, 'word': '##ic', 'start': 889, 'end': 891}, {'entity': 'I-ORG', 'score': 0.9981687, 'index': 421, 'word': 'Z', 'start': 894, 'end': 895}, {'entity': 'I-ORG', 'score': 0.9888049, 'index': 422, 'word': '##ele', 'start': 895, 'end': 898}, {'entity': 'I-ORG', 'score': 0.99619615, 'index': 423, 'word': '##z', 'start': 898, 'end': 899}, {'entity': 'I-ORG', 'score': 0.9993399, 'index': 424, 'word': '##nik', 'start': 899, 'end': 902}, {'entity': 'I-ORG', 'score': 0.9982919, 'index': 426, 'word': 'B', 'start': 905, 'end': 906}, {'entity': 'I-ORG', 'score': 0.9936447, 'index': 431, 'word': 'S', 'start': 913, 'end': 914}, {'entity': 'I-ORG', 'score': 0.99466103, 'index': 433, 'word': 'Su', 'start': 916, 'end': 918}, {'entity': 'I-ORG', 'score': 0.99530834, 'index': 434, 'word': '##t', 'start': 918, 'end': 919}, {'entity': 'I-ORG', 'score': 0.99699163, 'index': 435, 'word': '##je', 'start': 919, 'end': 921}, {'entity': 'I-ORG', 'score': 0.9983923, 'index': 436, 'word': '##ska', 'start': 921, 'end': 924}, {'entity': 'I-ORG', 'score': 0.9947607, 'index': 438, 'word': 'Lo', 'start': 927, 'end': 929}, {'entity': 'I-ORG', 'score': 0.99668545, 'index': 439, 'word': '##z', 'start': 929, 'end': 930}, {'entity': 'I-ORG', 'score': 0.9993617, 'index': 440, 'word': '##nica', 'start': 930, 'end': 934}, {'entity': 'I-ORG', 'score': 0.9953418, 'index': 444, 'word': 'S', 'start': 939, 'end': 940}, {'entity': 'I-ORG', 'score': 0.9945872, 'index': 446, 'word': 'Ra', 'start': 942, 'end': 944}, {'entity': 'I-ORG', 'score': 0.8724911, 'index': 447, 'word': '##dn', 'start': 944, 'end': 946}, {'entity': 'I-ORG', 'score': 0.99585104, 'index': 448, 'word': '##ick', 'start': 946, 'end': 949}, {'entity': 'I-ORG', 'score': 0.9957818, 'index': 449, 'word': '##i', 'start': 949, 'end': 950}, {'entity': 'I-ORG', 'score': 0.99154526, 'index': 451, 'word': 'N', 'start': 953, 'end': 954}, {'entity': 'I-ORG', 'score': 0.99956554, 'index': 454, 'word': 'Sparta', 'start': 959, 'end': 965}, {'entity': 'I-ORG', 'score': 0.99643683, 'index': 455, 'word': '##k', 'start': 965, 'end': 966}, {'entity': 'I-ORG', 'score': 0.9940964, 'index': 465, 'word': 'S', 'start': 996, 'end': 997}, {'entity': 'I-ORG', 'score': 0.9920657, 'index': 468, 'word': '##s', 'start': 1007, 'end': 1008}, {'entity': 'I-ORG', 'score': 0.99438596, 'index': 472, 'word': 'S', 'start': 1013, 'end': 1014}, {'entity': 'I-ORG', 'score': 0.99536175, 'index': 474, 'word': 'O', 'start': 1016, 'end': 1017}, {'entity': 'I-ORG', 'score': 0.99319965, 'index': 475, 'word': '##bil', 'start': 1017, 'end': 1020}, {'entity': 'I-ORG', 'score': 0.9974269, 'index': 476, 'word': '##ic', 'start': 1020, 'end': 1022}, {'entity': 'I-ORG', 'score': 0.9956488, 'index': 486, 'word': 'S', 'start': 1041, 'end': 1042}, {'entity': 'I-ORG', 'score': 0.9979171, 'index': 489, 'word': '##K', 'start': 1046, 'end': 1047}, {'entity': 'I-ORG', 'score': 0.9980702, 'index': 490, 'word': 'Ki', 'start': 1048, 'end': 1050}, {'entity': 'I-ORG', 'score': 0.9939422, 'index': 491, 'word': '##kind', 'start': 1050, 'end': 1054}, {'entity': 'I-ORG', 'score': 0.99631065, 'index': 492, 'word': '##a', 'start': 1054, 'end': 1055}, {'entity': 'I-ORG', 'score': 0.9896774, 'index': 502, 'word': 'S', 'start': 1072, 'end': 1073}, {'entity': 'I-ORG', 'score': 0.99560815, 'index': 504, 'word': 'Su', 'start': 1075, 'end': 1077}, {'entity': 'I-ORG', 'score': 0.9952195, 'index': 505, 'word': '##t', 'start': 1077, 'end': 1078}, {'entity': 'I-ORG', 'score': 0.9962373, 'index': 506, 'word': '##je', 'start': 1078, 'end': 1080}, {'entity': 'I-ORG', 'score': 0.99847275, 'index': 507, 'word': '##ska', 'start': 1080, 'end': 1083}]
[{'entity': 'I-PER', 'score': 0.559874, 'index': 6, 'word': 'IN', 'start': 9, 'end': 11}, {'entity': 'I-PER', 'score': 0.625377, 'index': 15, 'word': 'GA', 'start': 25, 'end': 27}, {'entity': 'I-PER', 'score': 0.43987563, 'index': 16, 'word': '##SC', 'start': 27, 'end': 29}, {'entity': 'I-ORG', 'score': 0.5447316, 'index': 17, 'word': '##O', 'start': 29, 'end': 30}, {'entity': 'I-ORG', 'score': 0.40768665, 'index': 18, 'word': '##IG', 'start': 30, 'end': 32}, {'entity': 'I-ORG', 'score': 0.5926629, 'index': 19, 'word': '##NE', 'start': 32, 'end': 34}, {'entity': 'I-LOC', 'score': 0.9982749, 'index': 33, 'word': 'CH', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9858753, 'index': 34, 'word': '##IS', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9936047, 'index': 35, 'word': '##IN', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9628215, 'index': 36, 'word': '##A', 'start': 64, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9968792, 'index': 37, 'word': '##U', 'start': 65, 'end': 66}, {'entity': 'I-LOC', 'score': 0.99981767, 'index': 39, 'word': 'Moldova', 'start': 69, 'end': 76}, {'entity': 'I-LOC', 'score': 0.99953926, 'index': 49, 'word': 'England', 'start': 93, 'end': 100}, {'entity': 'I-PER', 'score': 0.9996722, 'index': 57, 'word': 'Paul', 'start': 129, 'end': 133}, {'entity': 'I-PER', 'score': 0.99964595, 'index': 58, 'word': 'Gas', 'start': 134, 'end': 137}, {'entity': 'I-PER', 'score': 0.97307545, 'index': 59, 'word': '##co', 'start': 137, 'end': 139}, {'entity': 'I-PER', 'score': 0.99217165, 'index': 60, 'word': '##ign', 'start': 139, 'end': 142}, {'entity': 'I-PER', 'score': 0.9990466, 'index': 61, 'word': '##e', 'start': 142, 'end': 143}, {'entity': 'I-PER', 'score': 0.99964225, 'index': 76, 'word': 'Paul', 'start': 210, 'end': 214}, {'entity': 'I-PER', 'score': 0.99959224, 'index': 77, 'word': 'Inc', 'start': 215, 'end': 218}, {'entity': 'I-PER', 'score': 0.99729925, 'index': 78, 'word': '##e', 'start': 218, 'end': 219}, {'entity': 'I-LOC', 'score': 0.99984896, 'index': 89, 'word': 'Moldova', 'start': 267, 'end': 274}, {'entity': 'I-PER', 'score': 0.99941266, 'index': 95, 'word': 'Inc', 'start': 282, 'end': 285}, {'entity': 'I-PER', 'score': 0.9755567, 'index': 96, 'word': '##e', 'start': 285, 'end': 286}, {'entity': 'I-MISC', 'score': 0.8735286, 'index': 106, 'word': 'Republican', 'start': 321, 'end': 331}, {'entity': 'I-LOC', 'score': 0.99928266, 'index': 109, 'word': 'Chi', 'start': 343, 'end': 346}, {'entity': 'I-LOC', 'score': 0.98221636, 'index': 110, 'word': '##sin', 'start': 346, 'end': 349}, {'entity': 'I-LOC', 'score': 0.99923813, 'index': 111, 'word': '##au', 'start': 349, 'end': 351}, {'entity': 'I-PER', 'score': 0.9994611, 'index': 113, 'word': 'Glenn', 'start': 355, 'end': 360}, {'entity': 'I-PER', 'score': 0.9991254, 'index': 114, 'word': 'Ho', 'start': 361, 'end': 363}, {'entity': 'I-PER', 'score': 0.99624074, 'index': 115, 'word': '##ddle', 'start': 363, 'end': 367}, {'entity': 'I-LOC', 'score': 0.99890196, 'index': 118, 'word': 'England', 'start': 371, 'end': 378}, {'entity': 'I-PER', 'score': 0.99965155, 'index': 136, 'word': 'Gas', 'start': 446, 'end': 449}, {'entity': 'I-PER', 'score': 0.9843946, 'index': 137, 'word': '##co', 'start': 449, 'end': 451}, {'entity': 'I-PER', 'score': 0.98758715, 'index': 138, 'word': '##ign', 'start': 451, 'end': 454}, {'entity': 'I-PER', 'score': 0.99601376, 'index': 139, 'word': '##e', 'start': 454, 'end': 455}, {'entity': 'I-ORG', 'score': 0.99930954, 'index': 159, 'word': 'Inter', 'start': 548, 'end': 553}, {'entity': 'I-ORG', 'score': 0.9991202, 'index': 160, 'word': 'Milan', 'start': 554, 'end': 559}, {'entity': 'I-PER', 'score': 0.99928814, 'index': 178, 'word': 'Ho', 'start': 629, 'end': 631}, {'entity': 'I-PER', 'score': 0.9979703, 'index': 179, 'word': '##ddle', 'start': 631, 'end': 635}, {'entity': 'I-LOC', 'score': 0.9997217, 'index': 200, 'word': 'England', 'start': 720, 'end': 727}, {'entity': 'I-LOC', 'score': 0.99977595, 'index': 202, 'word': 'Moldova', 'start': 733, 'end': 740}, {'entity': 'I-MISC', 'score': 0.99481165, 'index': 205, 'word': 'World', 'start': 746, 'end': 751}, {'entity': 'I-MISC', 'score': 0.9987081, 'index': 206, 'word': 'Cup', 'start': 752, 'end': 755}]
[{'entity': 'I-PER', 'score': 0.529361, 'index': 8, 'word': 'T', 'start': 13, 'end': 14}, {'entity': 'I-ORG', 'score': 0.28202453, 'index': 9, 'word': '##RO', 'start': 14, 'end': 16}, {'entity': 'I-ORG', 'score': 0.85937786, 'index': 10, 'word': '##F', 'start': 16, 'end': 17}, {'entity': 'I-ORG', 'score': 0.8498141, 'index': 11, 'word': '##E', 'start': 17, 'end': 18}, {'entity': 'I-ORG', 'score': 0.65970427, 'index': 12, 'word': '##J', 'start': 18, 'end': 19}, {'entity': 'I-LOC', 'score': 0.9981269, 'index': 33, 'word': 'B', 'start': 54, 'end': 55}, {'entity': 'I-LOC', 'score': 0.9763482, 'index': 34, 'word': '##EL', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.97687596, 'index': 35, 'word': '##GR', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.96028656, 'index': 36, 'word': '##AD', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9957222, 'index': 37, 'word': '##E', 'start': 61, 'end': 62}, {'entity': 'I-MISC', 'score': 0.9877049, 'index': 50, 'word': 'T', 'start': 94, 'end': 95}, {'entity': 'I-MISC', 'score': 0.49826518, 'index': 51, 'word': '##ro', 'start': 95, 'end': 97}, {'entity': 'I-MISC', 'score': 0.9126361, 'index': 52, 'word': '##fe', 'start': 97, 'end': 99}, {'entity': 'I-MISC', 'score': 0.99010086, 'index': 53, 'word': '##j', 'start': 99, 'end': 100}, {'entity': 'I-MISC', 'score': 0.9631061, 'index': 54, 'word': 'Be', 'start': 101, 'end': 103}, {'entity': 'I-MISC', 'score': 0.77824306, 'index': 55, 'word': '##og', 'start': 103, 'end': 105}, {'entity': 'I-MISC', 'score': 0.9083006, 'index': 56, 'word': '##rad', 'start': 105, 'end': 108}, {'entity': 'I-MISC', 'score': 0.9804685, 'index': 57, 'word': '96', 'start': 109, 'end': 111}, {'entity': 'I-ORG', 'score': 0.99942833, 'index': 79, 'word': 'Ben', 'start': 191, 'end': 194}, {'entity': 'I-ORG', 'score': 0.9983329, 'index': 80, 'word': '##etto', 'start': 194, 'end': 198}, {'entity': 'I-ORG', 'score': 0.99923825, 'index': 81, 'word': '##n', 'start': 198, 'end': 199}, {'entity': 'I-LOC', 'score': 0.9997423, 'index': 83, 'word': 'Italy', 'start': 202, 'end': 207}, {'entity': 'I-ORG', 'score': 0.99958855, 'index': 86, 'word': 'Dinamo', 'start': 213, 'end': 219}, {'entity': 'I-LOC', 'score': 0.9997564, 'index': 88, 'word': 'Russia', 'start': 222, 'end': 228}, {'entity': 'I-ORG', 'score': 0.9994717, 'index': 108, 'word': 'Alba', 'start': 277, 'end': 281}, {'entity': 'I-LOC', 'score': 0.9996513, 'index': 110, 'word': 'Germany', 'start': 284, 'end': 291}, {'entity': 'I-ORG', 'score': 0.9994325, 'index': 113, 'word': 'Red', 'start': 297, 'end': 300}, {'entity': 'I-ORG', 'score': 0.99928975, 'index': 114, 'word': 'Star', 'start': 301, 'end': 305}, {'entity': 'I-LOC', 'score': 0.99980396, 'index': 116, 'word': 'Yugoslavia', 'start': 308, 'end': 318}]
[{'entity': 'I-PER', 'score': 0.50627905, 'index': 11, 'word': 'T', 'start': 19, 'end': 20}, {'entity': 'I-ORG', 'score': 0.79306906, 'index': 13, 'word': '##F', 'start': 22, 'end': 23}, {'entity': 'I-ORG', 'score': 0.83424085, 'index': 14, 'word': '##E', 'start': 23, 'end': 24}, {'entity': 'I-ORG', 'score': 0.646841, 'index': 15, 'word': '##J', 'start': 24, 'end': 25}, {'entity': 'I-LOC', 'score': 0.99782676, 'index': 36, 'word': 'B', 'start': 60, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9830041, 'index': 37, 'word': '##EL', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.977989, 'index': 38, 'word': '##GR', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9618386, 'index': 39, 'word': '##AD', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.99706095, 'index': 40, 'word': '##E', 'start': 67, 'end': 68}, {'entity': 'I-MISC', 'score': 0.98546034, 'index': 53, 'word': 'T', 'start': 100, 'end': 101}, {'entity': 'I-MISC', 'score': 0.56331754, 'index': 54, 'word': '##ro', 'start': 101, 'end': 103}, {'entity': 'I-MISC', 'score': 0.8996762, 'index': 55, 'word': '##fe', 'start': 103, 'end': 105}, {'entity': 'I-MISC', 'score': 0.98445314, 'index': 56, 'word': '##j', 'start': 105, 'end': 106}, {'entity': 'I-MISC', 'score': 0.8839723, 'index': 57, 'word': 'Be', 'start': 107, 'end': 109}, {'entity': 'I-MISC', 'score': 0.6884067, 'index': 58, 'word': '##og', 'start': 109, 'end': 111}, {'entity': 'I-MISC', 'score': 0.7521782, 'index': 59, 'word': '##rad', 'start': 111, 'end': 114}, {'entity': 'I-MISC', 'score': 0.96941245, 'index': 60, 'word': '96', 'start': 115, 'end': 117}, {'entity': 'I-ORG', 'score': 0.99933904, 'index': 82, 'word': 'Ben', 'start': 197, 'end': 200}, {'entity': 'I-ORG', 'score': 0.9983398, 'index': 83, 'word': '##etto', 'start': 200, 'end': 204}, {'entity': 'I-ORG', 'score': 0.99923456, 'index': 84, 'word': '##n', 'start': 204, 'end': 205}, {'entity': 'I-LOC', 'score': 0.9997173, 'index': 86, 'word': 'Italy', 'start': 208, 'end': 213}, {'entity': 'I-ORG', 'score': 0.9996, 'index': 89, 'word': 'Dinamo', 'start': 219, 'end': 225}, {'entity': 'I-LOC', 'score': 0.9997402, 'index': 91, 'word': 'Russia', 'start': 228, 'end': 234}, {'entity': 'I-ORG', 'score': 0.9994886, 'index': 111, 'word': 'Alba', 'start': 283, 'end': 287}, {'entity': 'I-LOC', 'score': 0.99969125, 'index': 113, 'word': 'Germany', 'start': 290, 'end': 297}, {'entity': 'I-ORG', 'score': 0.9994203, 'index': 116, 'word': 'Red', 'start': 303, 'end': 306}, {'entity': 'I-ORG', 'score': 0.999329, 'index': 117, 'word': 'Star', 'start': 307, 'end': 311}, {'entity': 'I-LOC', 'score': 0.99980634, 'index': 119, 'word': 'Yugoslavia', 'start': 314, 'end': 324}]
[{'entity': 'I-LOC', 'score': 0.99122065, 'index': 6, 'word': 'ROM', 'start': 9, 'end': 12}, {'entity': 'I-LOC', 'score': 0.98010767, 'index': 7, 'word': '##AN', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.9970772, 'index': 8, 'word': '##IA', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.9968616, 'index': 12, 'word': 'L', 'start': 22, 'end': 23}, {'entity': 'I-LOC', 'score': 0.99011445, 'index': 13, 'word': '##IT', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.97885555, 'index': 14, 'word': '##H', 'start': 25, 'end': 26}, {'entity': 'I-LOC', 'score': 0.98554593, 'index': 15, 'word': '##U', 'start': 26, 'end': 27}, {'entity': 'I-LOC', 'score': 0.9537082, 'index': 16, 'word': '##AN', 'start': 27, 'end': 29}, {'entity': 'I-LOC', 'score': 0.99351114, 'index': 17, 'word': '##IA', 'start': 29, 'end': 31}, {'entity': 'I-MISC', 'score': 0.9937331, 'index': 19, 'word': 'W', 'start': 35, 'end': 36}, {'entity': 'I-MISC', 'score': 0.9800869, 'index': 20, 'word': '##OR', 'start': 36, 'end': 38}, {'entity': 'I-MISC', 'score': 0.99802953, 'index': 21, 'word': '##LD', 'start': 38, 'end': 40}, {'entity': 'I-MISC', 'score': 0.98849654, 'index': 22, 'word': 'C', 'start': 41, 'end': 42}, {'entity': 'I-MISC', 'score': 0.9947495, 'index': 23, 'word': '##UP', 'start': 42, 'end': 44}, {'entity': 'I-LOC', 'score': 0.9982895, 'index': 35, 'word': 'B', 'start': 62, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9501558, 'index': 36, 'word': '##UC', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.98795754, 'index': 37, 'word': '##HA', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9784226, 'index': 38, 'word': '##RE', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.9976036, 'index': 39, 'word': '##ST', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9998118, 'index': 49, 'word': 'Romania', 'start': 88, 'end': 95}, {'entity': 'I-LOC', 'score': 0.99981993, 'index': 51, 'word': 'Lithuania', 'start': 101, 'end': 110}, {'entity': 'I-MISC', 'score': 0.9966182, 'index': 63, 'word': 'World', 'start': 137, 'end': 142}, {'entity': 'I-MISC', 'score': 0.9991849, 'index': 64, 'word': 'Cup', 'start': 143, 'end': 146}, {'entity': 'I-MISC', 'score': 0.9963905, 'index': 66, 'word': 'European', 'start': 154, 'end': 162}, {'entity': 'I-LOC', 'score': 0.99932575, 'index': 84, 'word': 'Romania', 'start': 215, 'end': 222}, {'entity': 'I-PER', 'score': 0.9996172, 'index': 86, 'word': 'V', 'start': 225, 'end': 226}, {'entity': 'I-PER', 'score': 0.9992423, 'index': 87, 'word': '##ior', 'start': 226, 'end': 229}, {'entity': 'I-PER', 'score': 0.9992494, 'index': 88, 'word': '##el', 'start': 229, 'end': 231}, {'entity': 'I-PER', 'score': 0.9987839, 'index': 89, 'word': 'Moldova', 'start': 232, 'end': 239}, {'entity': 'I-PER', 'score': 0.99091303, 'index': 90, 'word': '##n', 'start': 239, 'end': 240}, {'entity': 'I-PER', 'score': 0.9995314, 'index': 96, 'word': 'Dan', 'start': 259, 'end': 262}, {'entity': 'I-PER', 'score': 0.99963117, 'index': 97, 'word': 'Pet', 'start': 263, 'end': 266}, {'entity': 'I-PER', 'score': 0.99433655, 'index': 98, 'word': '##res', 'start': 266, 'end': 269}, {'entity': 'I-PER', 'score': 0.9970047, 'index': 99, 'word': '##cu', 'start': 269, 'end': 271}, {'entity': 'I-PER', 'score': 0.9996636, 'index': 105, 'word': 'Con', 'start': 283, 'end': 286}, {'entity': 'I-PER', 'score': 0.9994282, 'index': 106, 'word': '##stant', 'start': 286, 'end': 291}, {'entity': 'I-PER', 'score': 0.99914694, 'index': 107, 'word': '##in', 'start': 291, 'end': 293}, {'entity': 'I-PER', 'score': 0.99954224, 'index': 108, 'word': 'G', 'start': 294, 'end': 295}, {'entity': 'I-PER', 'score': 0.9800889, 'index': 109, 'word': '##al', 'start': 295, 'end': 297}, {'entity': 'I-PER', 'score': 0.9841537, 'index': 110, 'word': '##ca', 'start': 297, 'end': 299}]
[{'entity': 'I-LOC', 'score': 0.7442686, 'index': 6, 'word': 'AR', 'start': 9, 'end': 11}, {'entity': 'I-LOC', 'score': 0.9192051, 'index': 7, 'word': '##ME', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.6201358, 'index': 8, 'word': '##NI', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.49084994, 'index': 9, 'word': '##A', 'start': 15, 'end': 16}, {'entity': 'I-ORG', 'score': 0.5814941, 'index': 11, 'word': 'P', 'start': 21, 'end': 22}, {'entity': 'I-LOC', 'score': 0.3791847, 'index': 12, 'word': '##OR', 'start': 22, 'end': 24}, {'entity': 'I-LOC', 'score': 0.29016832, 'index': 13, 'word': '##TU', 'start': 24, 'end': 26}, {'entity': 'I-LOC', 'score': 0.40126476, 'index': 14, 'word': '##GA', 'start': 26, 'end': 28}, {'entity': 'I-ORG', 'score': 0.8477501, 'index': 15, 'word': '##L', 'start': 28, 'end': 29}, {'entity': 'I-MISC', 'score': 0.99319834, 'index': 23, 'word': 'W', 'start': 42, 'end': 43}, {'entity': 'I-MISC', 'score': 0.98146045, 'index': 24, 'word': '##OR', 'start': 43, 'end': 45}, {'entity': 'I-MISC', 'score': 0.99766254, 'index': 25, 'word': '##LD', 'start': 45, 'end': 47}, {'entity': 'I-MISC', 'score': 0.98805565, 'index': 26, 'word': 'C', 'start': 48, 'end': 49}, {'entity': 'I-MISC', 'score': 0.99518013, 'index': 27, 'word': '##UP', 'start': 49, 'end': 51}, {'entity': 'I-LOC', 'score': 0.99835014, 'index': 39, 'word': 'Y', 'start': 69, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9820629, 'index': 40, 'word': '##ER', 'start': 70, 'end': 72}, {'entity': 'I-LOC', 'score': 0.96898335, 'index': 41, 'word': '##E', 'start': 72, 'end': 73}, {'entity': 'I-LOC', 'score': 0.9159692, 'index': 42, 'word': '##VA', 'start': 73, 'end': 75}, {'entity': 'I-LOC', 'score': 0.9947944, 'index': 43, 'word': '##N', 'start': 75, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9997148, 'index': 53, 'word': 'Armenia', 'start': 93, 'end': 100}, {'entity': 'I-LOC', 'score': 0.99980503, 'index': 55, 'word': 'Portugal', 'start': 105, 'end': 113}, {'entity': 'I-MISC', 'score': 0.99384683, 'index': 62, 'word': 'World', 'start': 128, 'end': 133}, {'entity': 'I-MISC', 'score': 0.9990576, 'index': 63, 'word': 'Cup', 'start': 134, 'end': 137}, {'entity': 'I-MISC', 'score': 0.9957628, 'index': 65, 'word': 'European', 'start': 145, 'end': 153}]
[{'entity': 'I-LOC', 'score': 0.901053, 'index': 6, 'word': 'A', 'start': 9, 'end': 10}, {'entity': 'I-LOC', 'score': 0.73964345, 'index': 7, 'word': '##Z', 'start': 10, 'end': 11}, {'entity': 'I-LOC', 'score': 0.843283, 'index': 8, 'word': '##ER', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.7113696, 'index': 9, 'word': '##BA', 'start': 13, 'end': 15}, {'entity': 'I-MISC', 'score': 0.9450317, 'index': 10, 'word': '##I', 'start': 15, 'end': 16}, {'entity': 'I-MISC', 'score': 0.9534754, 'index': 11, 'word': '##J', 'start': 16, 'end': 17}, {'entity': 'I-MISC', 'score': 0.9742735, 'index': 12, 'word': '##AN', 'start': 17, 'end': 19}, {'entity': 'I-LOC', 'score': 0.99870765, 'index': 16, 'word': 'S', 'start': 25, 'end': 26}, {'entity': 'I-LOC', 'score': 0.9965508, 'index': 17, 'word': '##WI', 'start': 26, 'end': 28}, {'entity': 'I-LOC', 'score': 0.9885139, 'index': 18, 'word': '##T', 'start': 28, 'end': 29}, {'entity': 'I-LOC', 'score': 0.9967644, 'index': 19, 'word': '##Z', 'start': 29, 'end': 30}, {'entity': 'I-LOC', 'score': 0.9942094, 'index': 20, 'word': '##ER', 'start': 30, 'end': 32}, {'entity': 'I-LOC', 'score': 0.9954857, 'index': 21, 'word': '##LA', 'start': 32, 'end': 34}, {'entity': 'I-LOC', 'score': 0.9984648, 'index': 22, 'word': '##ND', 'start': 34, 'end': 36}, {'entity': 'I-MISC', 'score': 0.9937543, 'index': 24, 'word': 'W', 'start': 40, 'end': 41}, {'entity': 'I-MISC', 'score': 0.9743022, 'index': 25, 'word': '##OR', 'start': 41, 'end': 43}, {'entity': 'I-MISC', 'score': 0.9978393, 'index': 26, 'word': '##LD', 'start': 43, 'end': 45}, {'entity': 'I-MISC', 'score': 0.98677546, 'index': 27, 'word': 'C', 'start': 46, 'end': 47}, {'entity': 'I-MISC', 'score': 0.9953466, 'index': 28, 'word': '##UP', 'start': 47, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9940707, 'index': 40, 'word': 'BA', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.9724282, 'index': 41, 'word': '##K', 'start': 69, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9973316, 'index': 42, 'word': '##U', 'start': 70, 'end': 71}, {'entity': 'I-LOC', 'score': 0.99978167, 'index': 52, 'word': 'Azerbaijan', 'start': 88, 'end': 98}, {'entity': 'I-LOC', 'score': 0.9998047, 'index': 54, 'word': 'Switzerland', 'start': 104, 'end': 115}, {'entity': 'I-MISC', 'score': 0.99572134, 'index': 66, 'word': 'World', 'start': 146, 'end': 151}, {'entity': 'I-MISC', 'score': 0.9989575, 'index': 67, 'word': 'Cup', 'start': 152, 'end': 155}, {'entity': 'I-MISC', 'score': 0.98450273, 'index': 69, 'word': 'European', 'start': 163, 'end': 171}, {'entity': 'I-PER', 'score': 0.9993637, 'index': 88, 'word': 'V', 'start': 234, 'end': 235}, {'entity': 'I-PER', 'score': 0.9979625, 'index': 89, 'word': '##ida', 'start': 235, 'end': 238}, {'entity': 'I-PER', 'score': 0.99880123, 'index': 90, 'word': '##di', 'start': 238, 'end': 240}, {'entity': 'I-PER', 'score': 0.99937266, 'index': 91, 'word': 'R', 'start': 241, 'end': 242}, {'entity': 'I-PER', 'score': 0.9821177, 'index': 92, 'word': '##za', 'start': 242, 'end': 244}, {'entity': 'I-PER', 'score': 0.99741, 'index': 93, 'word': '##yev', 'start': 244, 'end': 247}]
[{'entity': 'I-LOC', 'score': 0.9568683, 'index': 8, 'word': 'B', 'start': 13, 'end': 14}, {'entity': 'I-LOC', 'score': 0.71274763, 'index': 9, 'word': '##EN', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.83362275, 'index': 10, 'word': '##ET', 'start': 16, 'end': 18}, {'entity': 'I-LOC', 'score': 0.821392, 'index': 11, 'word': '##TO', 'start': 18, 'end': 20}, {'entity': 'I-LOC', 'score': 0.7710526, 'index': 12, 'word': '##N', 'start': 20, 'end': 21}, {'entity': 'I-LOC', 'score': 0.52777874, 'index': 16, 'word': 'D', 'start': 27, 'end': 28}, {'entity': 'I-ORG', 'score': 0.5956225, 'index': 17, 'word': '##IN', 'start': 28, 'end': 30}, {'entity': 'I-ORG', 'score': 0.44966835, 'index': 18, 'word': '##AM', 'start': 30, 'end': 32}, {'entity': 'I-ORG', 'score': 0.6445743, 'index': 19, 'word': '##O', 'start': 32, 'end': 33}, {'entity': 'I-LOC', 'score': 0.9982279, 'index': 28, 'word': 'B', 'start': 47, 'end': 48}, {'entity': 'I-LOC', 'score': 0.9826031, 'index': 29, 'word': '##EL', 'start': 48, 'end': 50}, {'entity': 'I-LOC', 'score': 0.98482496, 'index': 30, 'word': '##GR', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.9771597, 'index': 31, 'word': '##AD', 'start': 52, 'end': 54}, {'entity': 'I-LOC', 'score': 0.99620205, 'index': 32, 'word': '##E', 'start': 54, 'end': 55}, {'entity': 'I-ORG', 'score': 0.9995103, 'index': 42, 'word': 'Ben', 'start': 72, 'end': 75}, {'entity': 'I-ORG', 'score': 0.9973695, 'index': 43, 'word': '##etto', 'start': 75, 'end': 79}, {'entity': 'I-ORG', 'score': 0.9988356, 'index': 44, 'word': '##n', 'start': 79, 'end': 80}, {'entity': 'I-LOC', 'score': 0.99970883, 'index': 46, 'word': 'Italy', 'start': 84, 'end': 89}, {'entity': 'I-ORG', 'score': 0.9985378, 'index': 48, 'word': 'Dinamo', 'start': 95, 'end': 101}, {'entity': 'I-LOC', 'score': 0.99977237, 'index': 50, 'word': 'Russia', 'start': 105, 'end': 111}, {'entity': 'I-MISC', 'score': 0.9929121, 'index': 69, 'word': 'T', 'start': 170, 'end': 171}, {'entity': 'I-MISC', 'score': 0.814558, 'index': 70, 'word': '##ro', 'start': 171, 'end': 173}, {'entity': 'I-MISC', 'score': 0.96925294, 'index': 71, 'word': '##fe', 'start': 173, 'end': 175}, {'entity': 'I-MISC', 'score': 0.9940399, 'index': 72, 'word': '##j', 'start': 175, 'end': 176}, {'entity': 'I-MISC', 'score': 0.99676055, 'index': 73, 'word': 'Be', 'start': 177, 'end': 179}, {'entity': 'I-MISC', 'score': 0.9718668, 'index': 74, 'word': '##og', 'start': 179, 'end': 181}, {'entity': 'I-MISC', 'score': 0.9797349, 'index': 75, 'word': '##rad', 'start': 181, 'end': 184}, {'entity': 'I-MISC', 'score': 0.99189705, 'index': 76, 'word': '96', 'start': 185, 'end': 187}]
[{'entity': 'I-LOC', 'score': 0.67149186, 'index': 6, 'word': 'S', 'start': 9, 'end': 10}, {'entity': 'I-LOC', 'score': 0.75860673, 'index': 7, 'word': '##W', 'start': 10, 'end': 11}, {'entity': 'I-LOC', 'score': 0.756938, 'index': 8, 'word': '##ED', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.683014, 'index': 9, 'word': '##EN', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.99437404, 'index': 13, 'word': 'LA', 'start': 21, 'end': 23}, {'entity': 'I-LOC', 'score': 0.8888365, 'index': 14, 'word': '##TV', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.9615625, 'index': 15, 'word': '##IA', 'start': 25, 'end': 27}, {'entity': 'I-MISC', 'score': 0.99915457, 'index': 17, 'word': 'EU', 'start': 31, 'end': 33}, {'entity': 'I-MISC', 'score': 0.99026835, 'index': 18, 'word': '##RO', 'start': 33, 'end': 35}, {'entity': 'I-MISC', 'score': 0.8755468, 'index': 19, 'word': '##P', 'start': 35, 'end': 36}, {'entity': 'I-MISC', 'score': 0.5782388, 'index': 20, 'word': '##EA', 'start': 36, 'end': 38}, {'entity': 'I-MISC', 'score': 0.78147393, 'index': 21, 'word': '##N', 'start': 38, 'end': 39}, {'entity': 'I-MISC', 'score': 0.7366638, 'index': 23, 'word': '##DE', 'start': 42, 'end': 44}, {'entity': 'I-LOC', 'score': 0.9974572, 'index': 38, 'word': 'R', 'start': 66, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9746201, 'index': 39, 'word': '##IG', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.9976744, 'index': 40, 'word': '##A', 'start': 69, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9998276, 'index': 50, 'word': 'Sweden', 'start': 87, 'end': 93}, {'entity': 'I-LOC', 'score': 0.99983084, 'index': 52, 'word': 'Latvia', 'start': 99, 'end': 105}, {'entity': 'I-MISC', 'score': 0.99910635, 'index': 64, 'word': 'European', 'start': 132, 'end': 140}, {'entity': 'I-PER', 'score': 0.9996037, 'index': 81, 'word': 'Jo', 'start': 209, 'end': 211}, {'entity': 'I-PER', 'score': 0.99658245, 'index': 82, 'word': '##aki', 'start': 211, 'end': 214}, {'entity': 'I-PER', 'score': 0.9993754, 'index': 83, 'word': '##m', 'start': 214, 'end': 215}, {'entity': 'I-PER', 'score': 0.9996692, 'index': 84, 'word': 'Per', 'start': 216, 'end': 219}, {'entity': 'I-PER', 'score': 0.99838233, 'index': 85, 'word': '##sson', 'start': 219, 'end': 223}, {'entity': 'I-PER', 'score': 0.99951255, 'index': 90, 'word': 'Daniel', 'start': 238, 'end': 244}, {'entity': 'I-PER', 'score': 0.99960476, 'index': 91, 'word': 'Anders', 'start': 245, 'end': 251}, {'entity': 'I-PER', 'score': 0.99802494, 'index': 92, 'word': '##son', 'start': 251, 'end': 254}]
[{'entity': 'I-LOC', 'score': 0.8239008, 'index': 6, 'word': 'B', 'start': 9, 'end': 10}, {'entity': 'I-LOC', 'score': 0.8068002, 'index': 7, 'word': '##EL', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.7105413, 'index': 8, 'word': '##AR', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.857966, 'index': 9, 'word': '##US', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.9976387, 'index': 13, 'word': 'E', 'start': 22, 'end': 23}, {'entity': 'I-LOC', 'score': 0.9676331, 'index': 14, 'word': '##ST', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.8721878, 'index': 15, 'word': '##ON', 'start': 25, 'end': 27}, {'entity': 'I-LOC', 'score': 0.994266, 'index': 16, 'word': '##IA', 'start': 27, 'end': 29}, {'entity': 'I-MISC', 'score': 0.9932207, 'index': 18, 'word': 'W', 'start': 33, 'end': 34}, {'entity': 'I-MISC', 'score': 0.9837828, 'index': 19, 'word': '##OR', 'start': 34, 'end': 36}, {'entity': 'I-MISC', 'score': 0.9978009, 'index': 20, 'word': '##LD', 'start': 36, 'end': 38}, {'entity': 'I-MISC', 'score': 0.98866767, 'index': 21, 'word': 'C', 'start': 39, 'end': 40}, {'entity': 'I-MISC', 'score': 0.99534094, 'index': 22, 'word': '##UP', 'start': 40, 'end': 42}, {'entity': 'I-LOC', 'score': 0.9986407, 'index': 34, 'word': 'MI', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9740777, 'index': 35, 'word': '##NS', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.9983828, 'index': 36, 'word': '##K', 'start': 64, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9997856, 'index': 46, 'word': 'Belarus', 'start': 82, 'end': 89}, {'entity': 'I-LOC', 'score': 0.99974304, 'index': 48, 'word': 'Estonia', 'start': 95, 'end': 102}, {'entity': 'I-MISC', 'score': 0.99578, 'index': 60, 'word': 'World', 'start': 129, 'end': 134}, {'entity': 'I-MISC', 'score': 0.999148, 'index': 61, 'word': 'Cup', 'start': 135, 'end': 138}, {'entity': 'I-MISC', 'score': 0.99684757, 'index': 63, 'word': 'European', 'start': 146, 'end': 154}, {'entity': 'I-PER', 'score': 0.9987344, 'index': 77, 'word': 'Vladimir', 'start': 201, 'end': 209}, {'entity': 'I-PER', 'score': 0.99911255, 'index': 78, 'word': 'Ma', 'start': 210, 'end': 212}, {'entity': 'I-PER', 'score': 0.96121675, 'index': 79, 'word': '##kov', 'start': 212, 'end': 215}, {'entity': 'I-PER', 'score': 0.99613225, 'index': 80, 'word': '##sky', 'start': 215, 'end': 218}]
[{'entity': 'I-LOC', 'score': 0.9990183, 'index': 6, 'word': 'E', 'start': 9, 'end': 10}, {'entity': 'I-LOC', 'score': 0.9946255, 'index': 7, 'word': '##NG', 'start': 10, 'end': 12}, {'entity': 'I-LOC', 'score': 0.9947359, 'index': 8, 'word': '##LA', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.99872154, 'index': 9, 'word': '##ND', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.90858066, 'index': 13, 'word': 'M', 'start': 22, 'end': 23}, {'entity': 'I-LOC', 'score': 0.9225038, 'index': 14, 'word': '##OL', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.82738805, 'index': 15, 'word': '##D', 'start': 25, 'end': 26}, {'entity': 'I-LOC', 'score': 0.7583123, 'index': 16, 'word': '##O', 'start': 26, 'end': 27}, {'entity': 'I-LOC', 'score': 0.8226784, 'index': 17, 'word': '##VA', 'start': 27, 'end': 29}, {'entity': 'I-LOC', 'score': 0.99917597, 'index': 35, 'word': 'CH', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.99028593, 'index': 36, 'word': '##IS', 'start': 61, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9964952, 'index': 37, 'word': '##IN', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9858527, 'index': 38, 'word': '##A', 'start': 65, 'end': 66}, {'entity': 'I-LOC', 'score': 0.99862385, 'index': 39, 'word': '##U', 'start': 66, 'end': 67}, {'entity': 'I-LOC', 'score': 0.99974734, 'index': 49, 'word': 'England', 'start': 84, 'end': 91}, {'entity': 'I-LOC', 'score': 0.9998424, 'index': 51, 'word': 'Moldova', 'start': 97, 'end': 104}, {'entity': 'I-MISC', 'score': 0.99881005, 'index': 63, 'word': 'European', 'start': 131, 'end': 139}, {'entity': 'I-MISC', 'score': 0.95474803, 'index': 64, 'word': 'Under', 'start': 140, 'end': 145}, {'entity': 'I-MISC', 'score': 0.8803575, 'index': 65, 'word': '-', 'start': 145, 'end': 146}, {'entity': 'I-MISC', 'score': 0.91706777, 'index': 66, 'word': '21', 'start': 146, 'end': 148}, {'entity': 'I-PER', 'score': 0.9997198, 'index': 82, 'word': 'Bruce', 'start': 216, 'end': 221}, {'entity': 'I-PER', 'score': 0.99981076, 'index': 83, 'word': 'Dyer', 'start': 222, 'end': 226}, {'entity': 'I-PER', 'score': 0.9997943, 'index': 89, 'word': 'Darren', 'start': 245, 'end': 251}, {'entity': 'I-PER', 'score': 0.9993278, 'index': 90, 'word': 'E', 'start': 252, 'end': 253}, {'entity': 'I-PER', 'score': 0.99620026, 'index': 91, 'word': '##adi', 'start': 253, 'end': 256}, {'entity': 'I-PER', 'score': 0.9984676, 'index': 92, 'word': '##e', 'start': 256, 'end': 257}]
[{'entity': 'I-PER', 'score': 0.9687158, 'index': 7, 'word': 'H', 'start': 9, 'end': 10}, {'entity': 'I-PER', 'score': 0.57980245, 'index': 8, 'word': '##IL', 'start': 10, 'end': 12}, {'entity': 'I-PER', 'score': 0.64418477, 'index': 9, 'word': '##L', 'start': 12, 'end': 13}, {'entity': 'I-PER', 'score': 0.69207376, 'index': 20, 'word': 'J', 'start': 36, 'end': 37}, {'entity': 'I-PER', 'score': 0.44144964, 'index': 23, 'word': '##H', 'start': 40, 'end': 41}, {'entity': 'I-LOC', 'score': 0.9984003, 'index': 34, 'word': 'H', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.99268097, 'index': 35, 'word': '##ON', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.99729794, 'index': 36, 'word': '##G', 'start': 62, 'end': 63}, {'entity': 'I-LOC', 'score': 0.9993243, 'index': 37, 'word': 'K', 'start': 64, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9840657, 'index': 38, 'word': '##ON', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9981488, 'index': 39, 'word': '##G', 'start': 67, 'end': 68}, {'entity': 'I-MISC', 'score': 0.9990387, 'index': 53, 'word': 'Australian', 'start': 99, 'end': 109}, {'entity': 'I-PER', 'score': 0.99955374, 'index': 54, 'word': 'Anthony', 'start': 110, 'end': 117}, {'entity': 'I-PER', 'score': 0.99972457, 'index': 55, 'word': 'Hill', 'start': 118, 'end': 122}, {'entity': 'I-PER', 'score': 0.9996668, 'index': 57, 'word': 'Jan', 'start': 130, 'end': 133}, {'entity': 'I-PER', 'score': 0.9994785, 'index': 58, 'word': '##sher', 'start': 133, 'end': 137}, {'entity': 'I-PER', 'score': 0.999676, 'index': 59, 'word': 'Khan', 'start': 138, 'end': 142}, {'entity': 'I-MISC', 'score': 0.9968477, 'index': 77, 'word': 'Hong', 'start': 212, 'end': 216}, {'entity': 'I-MISC', 'score': 0.99677986, 'index': 78, 'word': 'Kong', 'start': 217, 'end': 221}, {'entity': 'I-MISC', 'score': 0.9975739, 'index': 79, 'word': 'Open', 'start': 222, 'end': 226}, {'entity': 'I-PER', 'score': 0.9996612, 'index': 93, 'word': 'Hill', 'start': 284, 'end': 288}, {'entity': 'I-PER', 'score': 0.99965227, 'index': 121, 'word': 'Jan', 'start': 403, 'end': 406}, {'entity': 'I-PER', 'score': 0.9990107, 'index': 122, 'word': '##sher', 'start': 406, 'end': 410}, {'entity': 'I-PER', 'score': 0.9993795, 'index': 136, 'word': 'Hill', 'start': 472, 'end': 476}, {'entity': 'I-MISC', 'score': 0.9976623, 'index': 140, 'word': 'Pakistani', 'start': 493, 'end': 502}, {'entity': 'I-PER', 'score': 0.99972445, 'index': 172, 'word': 'Hill', 'start': 616, 'end': 620}, {'entity': 'I-PER', 'score': 0.99952364, 'index': 216, 'word': 'Hill', 'start': 798, 'end': 802}, {'entity': 'I-PER', 'score': 0.9994579, 'index': 228, 'word': 'Jan', 'start': 854, 'end': 857}, {'entity': 'I-PER', 'score': 0.9979913, 'index': 229, 'word': '##sher', 'start': 857, 'end': 861}, {'entity': 'I-MISC', 'score': 0.99911755, 'index': 249, 'word': 'Australian', 'start': 941, 'end': 951}, {'entity': 'I-PER', 'score': 0.9994646, 'index': 252, 'word': 'Jan', 'start': 962, 'end': 965}, {'entity': 'I-PER', 'score': 0.9982393, 'index': 253, 'word': '##sher', 'start': 965, 'end': 969}, {'entity': 'I-PER', 'score': 0.9994406, 'index': 361, 'word': 'Jan', 'start': 1343, 'end': 1346}, {'entity': 'I-PER', 'score': 0.9983183, 'index': 362, 'word': '##sher', 'start': 1346, 'end': 1350}, {'entity': 'I-PER', 'score': 0.9996113, 'index': 369, 'word': 'Jan', 'start': 1360, 'end': 1363}, {'entity': 'I-PER', 'score': 0.9984609, 'index': 370, 'word': '##sher', 'start': 1363, 'end': 1367}, {'entity': 'I-ORG', 'score': 0.94501704, 'index': 440, 'word': 'Association', 'start': 1640, 'end': 1651}, {'entity': 'I-ORG', 'score': 0.66256285, 'index': 476, 'word': 'S', 'start': 1792, 'end': 1793}, {'entity': 'I-PER', 'score': 0.99635077, 'index': 478, 'word': 'Jan', 'start': 1795, 'end': 1798}, {'entity': 'I-LOC', 'score': 0.8713982, 'index': 485, 'word': 'Hong', 'start': 1827, 'end': 1831}, {'entity': 'I-LOC', 'score': 0.9191021, 'index': 486, 'word': 'Kong', 'start': 1832, 'end': 1836}, {'entity': 'I-MISC', 'score': 0.98260844, 'index': 487, 'word': 'Open', 'start': 1837, 'end': 1841}, {'entity': 'I-MISC', 'score': 0.9990387, 'index': 494, 'word': 'Australian', 'start': 1870, 'end': 1880}, {'entity': 'I-PER', 'score': 0.99618906, 'index': 495, 'word': 'Rodney', 'start': 1881, 'end': 1887}, {'entity': 'I-ORG', 'score': 0.65653586, 'index': 496, 'word': 'E', 'start': 1888, 'end': 1889}, {'entity': 'I-ORG', 'score': 0.767038, 'index': 507, 'word': 'E', 'start': 1914, 'end': 1915}]
[{'entity': 'I-MISC', 'score': 0.9932475, 'index': 7, 'word': 'H', 'start': 9, 'end': 10}, {'entity': 'I-MISC', 'score': 0.9378324, 'index': 8, 'word': '##ON', 'start': 10, 'end': 12}, {'entity': 'I-MISC', 'score': 0.9964281, 'index': 9, 'word': '##G', 'start': 12, 'end': 13}, {'entity': 'I-MISC', 'score': 0.99603635, 'index': 10, 'word': 'K', 'start': 14, 'end': 15}, {'entity': 'I-MISC', 'score': 0.9536137, 'index': 11, 'word': '##ON', 'start': 15, 'end': 17}, {'entity': 'I-MISC', 'score': 0.9961612, 'index': 12, 'word': '##G', 'start': 17, 'end': 18}, {'entity': 'I-MISC', 'score': 0.9968548, 'index': 13, 'word': 'O', 'start': 19, 'end': 20}, {'entity': 'I-MISC', 'score': 0.97667843, 'index': 14, 'word': '##P', 'start': 20, 'end': 21}, {'entity': 'I-MISC', 'score': 0.8622497, 'index': 15, 'word': '##EN', 'start': 21, 'end': 23}, {'entity': 'I-LOC', 'score': 0.99886453, 'index': 31, 'word': 'H', 'start': 49, 'end': 50}, {'entity': 'I-LOC', 'score': 0.9818833, 'index': 32, 'word': '##ON', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.99723476, 'index': 33, 'word': '##G', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9993445, 'index': 34, 'word': 'K', 'start': 54, 'end': 55}, {'entity': 'I-LOC', 'score': 0.9827215, 'index': 35, 'word': '##ON', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9988059, 'index': 36, 'word': '##G', 'start': 57, 'end': 58}, {'entity': 'I-MISC', 'score': 0.99741733, 'index': 51, 'word': 'Hong', 'start': 100, 'end': 104}, {'entity': 'I-MISC', 'score': 0.9979482, 'index': 52, 'word': 'Kong', 'start': 105, 'end': 109}, {'entity': 'I-MISC', 'score': 0.99724436, 'index': 53, 'word': 'Open', 'start': 110, 'end': 114}, {'entity': 'I-PER', 'score': 0.9997836, 'index': 66, 'word': 'Jan', 'start': 167, 'end': 170}, {'entity': 'I-PER', 'score': 0.9997186, 'index': 67, 'word': '##sher', 'start': 170, 'end': 174}, {'entity': 'I-PER', 'score': 0.9998425, 'index': 68, 'word': 'Khan', 'start': 175, 'end': 179}, {'entity': 'I-LOC', 'score': 0.99988747, 'index': 70, 'word': 'Pakistan', 'start': 182, 'end': 190}, {'entity': 'I-PER', 'score': 0.99979776, 'index': 73, 'word': 'Anthony', 'start': 198, 'end': 205}, {'entity': 'I-PER', 'score': 0.9998301, 'index': 74, 'word': 'Hill', 'start': 206, 'end': 210}, {'entity': 'I-LOC', 'score': 0.9998524, 'index': 76, 'word': 'Australia', 'start': 213, 'end': 222}, {'entity': 'I-PER', 'score': 0.99977666, 'index': 92, 'word': 'Rodney', 'start': 251, 'end': 257}, {'entity': 'I-PER', 'score': 0.99970454, 'index': 93, 'word': 'E', 'start': 258, 'end': 259}, {'entity': 'I-PER', 'score': 0.99846727, 'index': 94, 'word': '##yle', 'start': 259, 'end': 262}, {'entity': 'I-PER', 'score': 0.99942636, 'index': 95, 'word': '##s', 'start': 262, 'end': 263}, {'entity': 'I-LOC', 'score': 0.9998435, 'index': 97, 'word': 'Australia', 'start': 266, 'end': 275}, {'entity': 'I-PER', 'score': 0.9998049, 'index': 102, 'word': 'Peter', 'start': 287, 'end': 292}, {'entity': 'I-PER', 'score': 0.99981314, 'index': 103, 'word': 'Nico', 'start': 293, 'end': 297}, {'entity': 'I-PER', 'score': 0.99966884, 'index': 104, 'word': '##l', 'start': 297, 'end': 298}, {'entity': 'I-LOC', 'score': 0.999856, 'index': 106, 'word': 'Scotland', 'start': 301, 'end': 309}]
[{'entity': 'I-PER', 'score': 0.88631123, 'index': 4, 'word': 'PA', 'start': 7, 'end': 9}, {'entity': 'I-PER', 'score': 0.5857053, 'index': 5, 'word': '##R', 'start': 9, 'end': 10}, {'entity': 'I-PER', 'score': 0.76943034, 'index': 6, 'word': '##NE', 'start': 10, 'end': 12}, {'entity': 'I-PER', 'score': 0.5813096, 'index': 7, 'word': '##VI', 'start': 12, 'end': 14}, {'entity': 'I-PER', 'score': 0.9741581, 'index': 8, 'word': '##K', 'start': 14, 'end': 15}, {'entity': 'I-MISC', 'score': 0.73331296, 'index': 10, 'word': '##A', 'start': 17, 'end': 18}, {'entity': 'I-MISC', 'score': 0.98965293, 'index': 21, 'word': 'G', 'start': 39, 'end': 40}, {'entity': 'I-MISC', 'score': 0.43858814, 'index': 24, 'word': '##ER', 'start': 44, 'end': 46}, {'entity': 'I-MISC', 'score': 0.88405865, 'index': 25, 'word': 'MI', 'start': 47, 'end': 49}, {'entity': 'I-LOC', 'score': 0.7156707, 'index': 26, 'word': '##L', 'start': 49, 'end': 50}, {'entity': 'I-MISC', 'score': 0.55479556, 'index': 27, 'word': '##WA', 'start': 50, 'end': 52}, {'entity': 'I-MISC', 'score': 0.5414, 'index': 28, 'word': '##U', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.5213435, 'index': 29, 'word': '##KE', 'start': 53, 'end': 55}, {'entity': 'I-MISC', 'score': 0.9774359, 'index': 30, 'word': '##E', 'start': 55, 'end': 56}, {'entity': 'I-MISC', 'score': 0.9970054, 'index': 31, 'word': 'O', 'start': 57, 'end': 58}, {'entity': 'I-MISC', 'score': 0.97796655, 'index': 32, 'word': '##P', 'start': 58, 'end': 59}, {'entity': 'I-MISC', 'score': 0.91766953, 'index': 33, 'word': '##EN', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9951448, 'index': 39, 'word': 'MI', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9890421, 'index': 40, 'word': '##L', 'start': 71, 'end': 72}, {'entity': 'I-LOC', 'score': 0.96751976, 'index': 41, 'word': '##WA', 'start': 72, 'end': 74}, {'entity': 'I-LOC', 'score': 0.9697983, 'index': 42, 'word': '##U', 'start': 74, 'end': 75}, {'entity': 'I-LOC', 'score': 0.9855114, 'index': 43, 'word': '##KE', 'start': 75, 'end': 77}, {'entity': 'I-LOC', 'score': 0.99541193, 'index': 44, 'word': '##E', 'start': 77, 'end': 78}, {'entity': 'I-LOC', 'score': 0.9993771, 'index': 46, 'word': 'Wisconsin', 'start': 81, 'end': 90}, {'entity': 'I-PER', 'score': 0.99968755, 'index': 56, 'word': 'Je', 'start': 107, 'end': 109}, {'entity': 'I-PER', 'score': 0.99957174, 'index': 57, 'word': '##sper', 'start': 109, 'end': 113}, {'entity': 'I-PER', 'score': 0.9998192, 'index': 58, 'word': 'Pa', 'start': 114, 'end': 116}, {'entity': 'I-PER', 'score': 0.9974427, 'index': 59, 'word': '##rne', 'start': 116, 'end': 119}, {'entity': 'I-PER', 'score': 0.99931204, 'index': 60, 'word': '##vik', 'start': 119, 'end': 122}, {'entity': 'I-LOC', 'score': 0.9998449, 'index': 62, 'word': 'Sweden', 'start': 126, 'end': 132}, {'entity': 'I-MISC', 'score': 0.99671847, 'index': 94, 'word': 'Greater', 'start': 255, 'end': 262}, {'entity': 'I-MISC', 'score': 0.9853579, 'index': 95, 'word': 'Milwaukee', 'start': 263, 'end': 272}, {'entity': 'I-MISC', 'score': 0.9961552, 'index': 96, 'word': 'Open', 'start': 273, 'end': 277}, {'entity': 'I-PER', 'score': 0.99980825, 'index': 102, 'word': 'Pa', 'start': 285, 'end': 287}, {'entity': 'I-PER', 'score': 0.9987319, 'index': 103, 'word': '##rne', 'start': 287, 'end': 290}, {'entity': 'I-PER', 'score': 0.9978855, 'index': 104, 'word': '##vik', 'start': 290, 'end': 293}, {'entity': 'I-MISC', 'score': 0.9948949, 'index': 111, 'word': 'PGA', 'start': 321, 'end': 324}, {'entity': 'I-MISC', 'score': 0.99868315, 'index': 112, 'word': 'Tour', 'start': 325, 'end': 329}, {'entity': 'I-PER', 'score': 0.9998012, 'index': 129, 'word': 'Pa', 'start': 388, 'end': 390}, {'entity': 'I-PER', 'score': 0.99877864, 'index': 130, 'word': '##rne', 'start': 390, 'end': 393}, {'entity': 'I-PER', 'score': 0.9958974, 'index': 131, 'word': '##vik', 'start': 393, 'end': 396}, {'entity': 'I-PER', 'score': 0.99967873, 'index': 140, 'word': 'Lo', 'start': 428, 'end': 430}, {'entity': 'I-PER', 'score': 0.99954444, 'index': 141, 'word': '##ren', 'start': 430, 'end': 433}, {'entity': 'I-PER', 'score': 0.9997608, 'index': 142, 'word': 'Roberts', 'start': 434, 'end': 441}, {'entity': 'I-LOC', 'score': 0.9915692, 'index': 147, 'word': 'Brown', 'start': 457, 'end': 462}, {'entity': 'I-LOC', 'score': 0.994582, 'index': 148, 'word': 'Deer', 'start': 463, 'end': 467}, {'entity': 'I-LOC', 'score': 0.9969536, 'index': 149, 'word': 'Park', 'start': 468, 'end': 472}, {'entity': 'I-LOC', 'score': 0.9543535, 'index': 150, 'word': 'Golf', 'start': 473, 'end': 477}, {'entity': 'I-LOC', 'score': 0.9744573, 'index': 151, 'word': 'Course', 'start': 478, 'end': 484}, {'entity': 'I-PER', 'score': 0.9997043, 'index': 158, 'word': 'Greg', 'start': 515, 'end': 519}, {'entity': 'I-PER', 'score': 0.9997731, 'index': 159, 'word': 'K', 'start': 520, 'end': 521}, {'entity': 'I-PER', 'score': 0.9992843, 'index': 160, 'word': '##raft', 'start': 521, 'end': 525}, {'entity': 'I-PER', 'score': 0.99973255, 'index': 166, 'word': 'Nolan', 'start': 533, 'end': 538}, {'entity': 'I-PER', 'score': 0.9997328, 'index': 167, 'word': 'He', 'start': 539, 'end': 541}, {'entity': 'I-PER', 'score': 0.99851197, 'index': 168, 'word': '##nk', 'start': 541, 'end': 543}, {'entity': 'I-PER', 'score': 0.9949868, 'index': 169, 'word': '##e', 'start': 543, 'end': 544}, {'entity': 'I-MISC', 'score': 0.9946622, 'index': 212, 'word': 'PGA', 'start': 704, 'end': 707}, {'entity': 'I-MISC', 'score': 0.9982849, 'index': 213, 'word': 'Tour', 'start': 708, 'end': 712}, {'entity': 'I-MISC', 'score': 0.99662375, 'index': 220, 'word': 'Bell', 'start': 746, 'end': 750}, {'entity': 'I-MISC', 'score': 0.9971852, 'index': 221, 'word': '##S', 'start': 750, 'end': 751}, {'entity': 'I-MISC', 'score': 0.99494606, 'index': 222, 'word': '##outh', 'start': 751, 'end': 755}, {'entity': 'I-MISC', 'score': 0.99776316, 'index': 223, 'word': 'Classic', 'start': 756, 'end': 763}, {'entity': 'I-PER', 'score': 0.99962497, 'index': 229, 'word': 'Tiger', 'start': 771, 'end': 776}, {'entity': 'I-PER', 'score': 0.99982435, 'index': 230, 'word': 'Woods', 'start': 777, 'end': 782}, {'entity': 'I-PER', 'score': 0.99983704, 'index': 270, 'word': 'Woods', 'start': 930, 'end': 935}, {'entity': 'I-MISC', 'score': 0.99550325, 'index': 282, 'word': 'U', 'start': 1018, 'end': 1019}, {'entity': 'I-MISC', 'score': 0.9974354, 'index': 284, 'word': 'S', 'start': 1020, 'end': 1021}, {'entity': 'I-MISC', 'score': 0.9639727, 'index': 285, 'word': '.', 'start': 1021, 'end': 1022}, {'entity': 'I-MISC', 'score': 0.9917429, 'index': 286, 'word': 'Amateur', 'start': 1023, 'end': 1030}, {'entity': 'I-MISC', 'score': 0.99577457, 'index': 287, 'word': 'Championship', 'start': 1031, 'end': 1043}, {'entity': 'I-PER', 'score': 0.9997608, 'index': 360, 'word': 'Pa', 'start': 1290, 'end': 1292}, {'entity': 'I-PER', 'score': 0.99694806, 'index': 361, 'word': '##rne', 'start': 1292, 'end': 1295}, {'entity': 'I-PER', 'score': 0.9972927, 'index': 362, 'word': '##vik', 'start': 1295, 'end': 1298}, {'entity': 'I-MISC', 'score': 0.9974234, 'index': 382, 'word': 'S', 'start': 1377, 'end': 1378}, {'entity': 'I-MISC', 'score': 0.98881066, 'index': 383, 'word': '##wed', 'start': 1378, 'end': 1381}, {'entity': 'I-PER', 'score': 0.9871464, 'index': 398, 'word': 'Pa', 'start': 1426, 'end': 1428}, {'entity': 'I-PER', 'score': 0.99302703, 'index': 452, 'word': 'Pa', 'start': 1637, 'end': 1639}]
[{'entity': 'I-LOC', 'score': 0.99860966, 'index': 10, 'word': 'U', 'start': 17, 'end': 18}, {'entity': 'I-LOC', 'score': 0.99799144, 'index': 12, 'word': 'S', 'start': 19, 'end': 20}, {'entity': 'I-MISC', 'score': 0.9922545, 'index': 17, 'word': 'O', 'start': 28, 'end': 29}, {'entity': 'I-MISC', 'score': 0.77952874, 'index': 18, 'word': '##P', 'start': 29, 'end': 30}, {'entity': 'I-MISC', 'score': 0.9259671, 'index': 26, 'word': '1997', 'start': 45, 'end': 49}, {'entity': 'I-MISC', 'score': 0.8968976, 'index': 27, 'word': 'F', 'start': 50, 'end': 51}, {'entity': 'I-MISC', 'score': 0.9841734, 'index': 28, 'word': '##ED', 'start': 51, 'end': 53}, {'entity': 'I-MISC', 'score': 0.9866415, 'index': 29, 'word': 'C', 'start': 54, 'end': 55}, {'entity': 'I-MISC', 'score': 0.9176386, 'index': 30, 'word': '##UP', 'start': 55, 'end': 57}, {'entity': 'I-PER', 'score': 0.9988506, 'index': 36, 'word': 'Richard', 'start': 65, 'end': 72}, {'entity': 'I-PER', 'score': 0.9979367, 'index': 37, 'word': 'Finn', 'start': 73, 'end': 77}, {'entity': 'I-LOC', 'score': 0.998752, 'index': 42, 'word': 'NE', 'start': 83, 'end': 85}, {'entity': 'I-LOC', 'score': 0.929847, 'index': 43, 'word': '##W', 'start': 85, 'end': 86}, {'entity': 'I-LOC', 'score': 0.9982584, 'index': 44, 'word': 'Y', 'start': 87, 'end': 88}, {'entity': 'I-LOC', 'score': 0.84597015, 'index': 45, 'word': '##OR', 'start': 88, 'end': 90}, {'entity': 'I-LOC', 'score': 0.9988906, 'index': 46, 'word': '##K', 'start': 90, 'end': 91}, {'entity': 'I-MISC', 'score': 0.9836495, 'index': 60, 'word': 'Fed', 'start': 121, 'end': 124}, {'entity': 'I-MISC', 'score': 0.99832076, 'index': 61, 'word': 'Cup', 'start': 125, 'end': 128}, {'entity': 'I-LOC', 'score': 0.9998093, 'index': 67, 'word': 'Spain', 'start': 161, 'end': 166}, {'entity': 'I-LOC', 'score': 0.9997012, 'index': 70, 'word': 'United', 'start': 175, 'end': 181}, {'entity': 'I-LOC', 'score': 0.9996966, 'index': 71, 'word': 'States', 'start': 182, 'end': 188}, {'entity': 'I-MISC', 'score': 0.98541266, 'index': 97, 'word': 'U', 'start': 313, 'end': 314}, {'entity': 'I-MISC', 'score': 0.99670213, 'index': 99, 'word': 'S', 'start': 315, 'end': 316}, {'entity': 'I-MISC', 'score': 0.97109604, 'index': 100, 'word': '.', 'start': 316, 'end': 317}, {'entity': 'I-MISC', 'score': 0.99761224, 'index': 101, 'word': 'Open', 'start': 318, 'end': 322}, {'entity': 'I-LOC', 'score': 0.99981433, 'index': 107, 'word': 'Spain', 'start': 330, 'end': 335}, {'entity': 'I-LOC', 'score': 0.9998461, 'index': 110, 'word': 'Belgium', 'start': 347, 'end': 354}, {'entity': 'I-LOC', 'score': 0.99948066, 'index': 114, 'word': 'U', 'start': 367, 'end': 368}, {'entity': 'I-LOC', 'score': 0.99915195, 'index': 116, 'word': 'S', 'start': 369, 'end': 370}, {'entity': 'I-LOC', 'score': 0.99989736, 'index': 122, 'word': 'Netherlands', 'start': 390, 'end': 401}, {'entity': 'I-LOC', 'score': 0.9998048, 'index': 147, 'word': 'Germany', 'start': 489, 'end': 496}, {'entity': 'I-LOC', 'score': 0.99977225, 'index': 150, 'word': 'Czech', 'start': 509, 'end': 514}, {'entity': 'I-LOC', 'score': 0.999775, 'index': 151, 'word': 'Republic', 'start': 515, 'end': 523}, {'entity': 'I-LOC', 'score': 0.9997807, 'index': 154, 'word': 'France', 'start': 537, 'end': 543}, {'entity': 'I-LOC', 'score': 0.99980074, 'index': 156, 'word': 'Japan', 'start': 552, 'end': 557}, {'entity': 'I-MISC', 'score': 0.99879396, 'index': 192, 'word': 'Americans', 'start': 679, 'end': 688}, {'entity': 'I-LOC', 'score': 0.9998023, 'index': 213, 'word': 'Spain', 'start': 769, 'end': 774}, {'entity': 'I-LOC', 'score': 0.99935585, 'index': 220, 'word': 'Atlantic', 'start': 797, 'end': 805}, {'entity': 'I-LOC', 'score': 0.9996599, 'index': 221, 'word': 'City', 'start': 806, 'end': 810}, {'entity': 'I-MISC', 'score': 0.9989041, 'index': 255, 'word': 'Cup', 'start': 946, 'end': 949}, {'entity': 'I-LOC', 'score': 0.99912673, 'index': 258, 'word': 'U', 'start': 954, 'end': 955}, {'entity': 'I-LOC', 'score': 0.9979997, 'index': 260, 'word': 'S', 'start': 956, 'end': 957}, {'entity': 'I-PER', 'score': 0.9996087, 'index': 263, 'word': 'Billie', 'start': 967, 'end': 973}, {'entity': 'I-PER', 'score': 0.9995983, 'index': 264, 'word': 'Jean', 'start': 974, 'end': 978}, {'entity': 'I-PER', 'score': 0.9997662, 'index': 265, 'word': 'King', 'start': 979, 'end': 983}, {'entity': 'I-LOC', 'score': 0.9995338, 'index': 288, 'word': 'United', 'start': 1045, 'end': 1051}, {'entity': 'I-LOC', 'score': 0.9995858, 'index': 289, 'word': 'States', 'start': 1052, 'end': 1058}, {'entity': 'I-LOC', 'score': 0.99973625, 'index': 291, 'word': 'Austria', 'start': 1065, 'end': 1072}, {'entity': 'I-LOC', 'score': 0.9986532, 'index': 293, 'word': 'Salzburg', 'start': 1076, 'end': 1084}, {'entity': 'I-LOC', 'score': 0.9997887, 'index': 308, 'word': 'Japan', 'start': 1138, 'end': 1143}, {'entity': 'I-LOC', 'score': 0.99941933, 'index': 313, 'word': 'Nagoya', 'start': 1151, 'end': 1157}, {'entity': 'I-LOC', 'score': 0.99983215, 'index': 327, 'word': 'Japan', 'start': 1214, 'end': 1219}, {'entity': 'I-MISC', 'score': 0.9852127, 'index': 330, 'word': 'Fed', 'start': 1231, 'end': 1234}, {'entity': 'I-MISC', 'score': 0.99835217, 'index': 331, 'word': 'Cup', 'start': 1235, 'end': 1238}, {'entity': 'I-PER', 'score': 0.9993771, 'index': 334, 'word': 'Monica', 'start': 1248, 'end': 1254}, {'entity': 'I-PER', 'score': 0.9996306, 'index': 335, 'word': 'Se', 'start': 1255, 'end': 1257}, {'entity': 'I-PER', 'score': 0.9966156, 'index': 336, 'word': '##les', 'start': 1257, 'end': 1260}, {'entity': 'I-LOC', 'score': 0.99869907, 'index': 343, 'word': 'U', 'start': 1288, 'end': 1289}, {'entity': 'I-LOC', 'score': 0.95776653, 'index': 345, 'word': 'S', 'start': 1290, 'end': 1291}, {'entity': 'I-PER', 'score': 0.9994197, 'index': 355, 'word': 'Se', 'start': 1316, 'end': 1318}, {'entity': 'I-PER', 'score': 0.9954659, 'index': 356, 'word': '##les', 'start': 1318, 'end': 1321}, {'entity': 'I-PER', 'score': 0.99961495, 'index': 364, 'word': 'King', 'start': 1362, 'end': 1366}, {'entity': 'I-PER', 'score': 0.99964523, 'index': 387, 'word': 'Monica', 'start': 1445, 'end': 1451}, {'entity': 'I-PER', 'score': 0.99836725, 'index': 398, 'word': 'King', 'start': 1486, 'end': 1490}, {'entity': 'I-MISC', 'score': 0.4594397, 'index': 403, 'word': 'S', 'start': 1500, 'end': 1501}, {'entity': 'I-PER', 'score': 0.99857295, 'index': 405, 'word': 'Se', 'start': 1503, 'end': 1505}, {'entity': 'I-PER', 'score': 0.99282914, 'index': 406, 'word': '##les', 'start': 1505, 'end': 1508}, {'entity': 'I-MISC', 'score': 0.83847696, 'index': 417, 'word': 'Fed', 'start': 1553, 'end': 1556}, {'entity': 'I-MISC', 'score': 0.9979912, 'index': 418, 'word': 'Cup', 'start': 1557, 'end': 1560}, {'entity': 'I-PER', 'score': 0.9993807, 'index': 420, 'word': 'Mary', 'start': 1569, 'end': 1573}, {'entity': 'I-PER', 'score': 0.9994585, 'index': 421, 'word': 'Joe', 'start': 1574, 'end': 1577}, {'entity': 'I-PER', 'score': 0.9994654, 'index': 422, 'word': 'Fernandez', 'start': 1578, 'end': 1587}, {'entity': 'I-PER', 'score': 0.99808323, 'index': 425, 'word': 'King', 'start': 1600, 'end': 1604}, {'entity': 'I-MISC', 'score': 0.60717016, 'index': 447, 'word': 'S', 'start': 1688, 'end': 1689}, {'entity': 'I-PER', 'score': 0.9992448, 'index': 449, 'word': 'Fernandez', 'start': 1691, 'end': 1700}, {'entity': 'I-LOC', 'score': 0.9387421, 'index': 456, 'word': 'U', 'start': 1733, 'end': 1734}, {'entity': 'I-MISC', 'score': 0.5513548, 'index': 458, 'word': 'S', 'start': 1735, 'end': 1736}, {'entity': 'I-MISC', 'score': 0.9936367, 'index': 460, 'word': 'Open', 'start': 1738, 'end': 1742}, {'entity': 'I-MISC', 'score': 0.57598877, 'index': 464, 'word': 'S', 'start': 1747, 'end': 1748}, {'entity': 'I-PER', 'score': 0.99852604, 'index': 485, 'word': 'King', 'start': 1842, 'end': 1846}, {'entity': 'I-MISC', 'score': 0.7077414, 'index': 490, 'word': 'S', 'start': 1853, 'end': 1854}, {'entity': 'I-PER', 'score': 0.99860483, 'index': 497, 'word': 'Se', 'start': 1878, 'end': 1880}, {'entity': 'I-PER', 'score': 0.9995104, 'index': 498, 'word': '##les', 'start': 1880, 'end': 1883}, {'entity': 'I-MISC', 'score': 0.9988397, 'index': 501, 'word': 'Olympic', 'start': 1888, 'end': 1895}, {'entity': 'I-PER', 'score': 0.9988636, 'index': 503, 'word': 'Lindsay', 'start': 1905, 'end': 1912}, {'entity': 'I-PER', 'score': 0.9995782, 'index': 505, 'word': 'Davenport', 'start': 1915, 'end': 1924}, {'entity': 'I-PER', 'score': 0.9995209, 'index': 507, 'word': 'Mary', 'start': 1929, 'end': 1933}, {'entity': 'I-PER', 'score': 0.99932647, 'index': 508, 'word': 'Joe', 'start': 1934, 'end': 1937}, {'entity': 'I-PER', 'score': 0.99968135, 'index': 509, 'word': 'Fernandez', 'start': 1938, 'end': 1947}]
[{'entity': 'I-MISC', 'score': 0.48391753, 'index': 6, 'word': 'SAT', 'start': 9, 'end': 12}, {'entity': 'I-MISC', 'score': 0.42222372, 'index': 7, 'word': '##UR', 'start': 12, 'end': 14}, {'entity': 'I-MISC', 'score': 0.99907863, 'index': 21, 'word': 'U', 'start': 38, 'end': 39}, {'entity': 'I-MISC', 'score': 0.9990687, 'index': 23, 'word': 'S', 'start': 40, 'end': 41}, {'entity': 'I-MISC', 'score': 0.9946871, 'index': 24, 'word': '.', 'start': 41, 'end': 42}, {'entity': 'I-MISC', 'score': 0.9977907, 'index': 25, 'word': 'O', 'start': 43, 'end': 44}, {'entity': 'I-MISC', 'score': 0.9890745, 'index': 26, 'word': '##P', 'start': 44, 'end': 45}, {'entity': 'I-MISC', 'score': 0.99688053, 'index': 27, 'word': '##EN', 'start': 45, 'end': 47}, {'entity': 'I-LOC', 'score': 0.9995442, 'index': 33, 'word': 'NE', 'start': 55, 'end': 57}, {'entity': 'I-LOC', 'score': 0.99819535, 'index': 34, 'word': '##W', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9995616, 'index': 35, 'word': 'Y', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.97676677, 'index': 36, 'word': '##OR', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9995401, 'index': 37, 'word': '##K', 'start': 62, 'end': 63}, {'entity': 'I-MISC', 'score': 0.99731064, 'index': 50, 'word': 'U', 'start': 97, 'end': 98}, {'entity': 'I-MISC', 'score': 0.9974529, 'index': 52, 'word': 'S', 'start': 99, 'end': 100}, {'entity': 'I-MISC', 'score': 0.9884388, 'index': 53, 'word': '.', 'start': 100, 'end': 101}, {'entity': 'I-MISC', 'score': 0.9924529, 'index': 54, 'word': 'Open', 'start': 102, 'end': 106}, {'entity': 'I-MISC', 'score': 0.9843359, 'index': 55, 'word': 'Tennis', 'start': 107, 'end': 113}, {'entity': 'I-MISC', 'score': 0.9973551, 'index': 56, 'word': 'Championships', 'start': 114, 'end': 127}, {'entity': 'I-LOC', 'score': 0.9979577, 'index': 59, 'word': 'National', 'start': 135, 'end': 143}, {'entity': 'I-LOC', 'score': 0.99833304, 'index': 60, 'word': 'Tennis', 'start': 144, 'end': 150}, {'entity': 'I-LOC', 'score': 0.9984054, 'index': 61, 'word': 'Centre', 'start': 151, 'end': 157}, {'entity': 'I-PER', 'score': 0.9997261, 'index': 85, 'word': 'St', 'start': 246, 'end': 248}, {'entity': 'I-PER', 'score': 0.99896026, 'index': 86, 'word': '##ef', 'start': 248, 'end': 250}, {'entity': 'I-PER', 'score': 0.99961853, 'index': 87, 'word': '##fi', 'start': 250, 'end': 252}, {'entity': 'I-PER', 'score': 0.9998221, 'index': 88, 'word': 'Graf', 'start': 253, 'end': 257}, {'entity': 'I-LOC', 'score': 0.999871, 'index': 90, 'word': 'Germany', 'start': 260, 'end': 267}, {'entity': 'I-PER', 'score': 0.9995883, 'index': 93, 'word': 'Natasha', 'start': 275, 'end': 282}, {'entity': 'I-PER', 'score': 0.999498, 'index': 94, 'word': 'Z', 'start': 283, 'end': 284}, {'entity': 'I-PER', 'score': 0.99078476, 'index': 95, 'word': '##vere', 'start': 284, 'end': 288}, {'entity': 'I-PER', 'score': 0.999303, 'index': 96, 'word': '##va', 'start': 288, 'end': 290}, {'entity': 'I-LOC', 'score': 0.9998055, 'index': 98, 'word': 'Belarus', 'start': 293, 'end': 300}, {'entity': 'I-PER', 'score': 0.999686, 'index': 108, 'word': 'Martina', 'start': 316, 'end': 323}, {'entity': 'I-PER', 'score': 0.99968874, 'index': 109, 'word': 'Hi', 'start': 324, 'end': 326}, {'entity': 'I-PER', 'score': 0.9919973, 'index': 110, 'word': '##ng', 'start': 326, 'end': 328}, {'entity': 'I-PER', 'score': 0.99894065, 'index': 111, 'word': '##is', 'start': 328, 'end': 330}, {'entity': 'I-LOC', 'score': 0.99984336, 'index': 113, 'word': 'Switzerland', 'start': 333, 'end': 344}, {'entity': 'I-PER', 'score': 0.9996482, 'index': 116, 'word': 'Na', 'start': 352, 'end': 354}, {'entity': 'I-PER', 'score': 0.9995883, 'index': 117, 'word': '##oko', 'start': 354, 'end': 357}, {'entity': 'I-PER', 'score': 0.999411, 'index': 118, 'word': 'Ki', 'start': 358, 'end': 360}, {'entity': 'I-PER', 'score': 0.9959116, 'index': 119, 'word': '##ji', 'start': 360, 'end': 362}, {'entity': 'I-PER', 'score': 0.9983157, 'index': 120, 'word': '##mu', 'start': 362, 'end': 364}, {'entity': 'I-PER', 'score': 0.98976326, 'index': 121, 'word': '##ta', 'start': 364, 'end': 366}, {'entity': 'I-LOC', 'score': 0.9998348, 'index': 123, 'word': 'Japan', 'start': 369, 'end': 374}, {'entity': 'I-PER', 'score': 0.99969816, 'index': 131, 'word': 'Judith', 'start': 385, 'end': 391}, {'entity': 'I-PER', 'score': 0.99982125, 'index': 132, 'word': 'W', 'start': 392, 'end': 393}, {'entity': 'I-PER', 'score': 0.9980945, 'index': 133, 'word': '##ies', 'start': 393, 'end': 396}, {'entity': 'I-PER', 'score': 0.99957055, 'index': 134, 'word': '##ner', 'start': 396, 'end': 399}, {'entity': 'I-LOC', 'score': 0.99987185, 'index': 136, 'word': 'Austria', 'start': 402, 'end': 409}, {'entity': 'I-PER', 'score': 0.9995846, 'index': 139, 'word': 'Petra', 'start': 417, 'end': 422}, {'entity': 'I-PER', 'score': 0.9995024, 'index': 140, 'word': 'Lang', 'start': 423, 'end': 427}, {'entity': 'I-PER', 'score': 0.9969813, 'index': 141, 'word': '##rov', 'start': 427, 'end': 430}, {'entity': 'I-PER', 'score': 0.99532217, 'index': 142, 'word': '##a', 'start': 430, 'end': 431}, {'entity': 'I-LOC', 'score': 0.99980146, 'index': 144, 'word': 'Czech', 'start': 434, 'end': 439}, {'entity': 'I-LOC', 'score': 0.9998561, 'index': 145, 'word': 'Republic', 'start': 440, 'end': 448}, {'entity': 'I-PER', 'score': 0.9997229, 'index': 166, 'word': 'Thomas', 'start': 500, 'end': 506}, {'entity': 'I-PER', 'score': 0.9994722, 'index': 167, 'word': 'En', 'start': 507, 'end': 509}, {'entity': 'I-PER', 'score': 0.97218394, 'index': 168, 'word': '##q', 'start': 509, 'end': 510}, {'entity': 'I-PER', 'score': 0.99943346, 'index': 169, 'word': '##vist', 'start': 510, 'end': 514}, {'entity': 'I-LOC', 'score': 0.99988997, 'index': 171, 'word': 'Sweden', 'start': 517, 'end': 523}, {'entity': 'I-PER', 'score': 0.99971086, 'index': 174, 'word': 'Pablo', 'start': 531, 'end': 536}, {'entity': 'I-PER', 'score': 0.99965453, 'index': 175, 'word': 'Camp', 'start': 537, 'end': 541}, {'entity': 'I-PER', 'score': 0.9993267, 'index': 176, 'word': '##ana', 'start': 541, 'end': 544}, {'entity': 'I-LOC', 'score': 0.99982065, 'index': 178, 'word': 'Ecuador', 'start': 547, 'end': 554}]
[{'entity': 'I-MISC', 'score': 0.92667276, 'index': 11, 'word': '1997', 'start': 18, 'end': 22}, {'entity': 'I-MISC', 'score': 0.97972494, 'index': 12, 'word': 'F', 'start': 23, 'end': 24}, {'entity': 'I-MISC', 'score': 0.9791272, 'index': 13, 'word': '##ED', 'start': 24, 'end': 26}, {'entity': 'I-MISC', 'score': 0.9903756, 'index': 14, 'word': 'C', 'start': 27, 'end': 28}, {'entity': 'I-MISC', 'score': 0.97618765, 'index': 15, 'word': '##UP', 'start': 28, 'end': 30}, {'entity': 'I-LOC', 'score': 0.99945956, 'index': 34, 'word': 'NE', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9984427, 'index': 35, 'word': '##W', 'start': 65, 'end': 66}, {'entity': 'I-LOC', 'score': 0.99952173, 'index': 36, 'word': 'Y', 'start': 67, 'end': 68}, {'entity': 'I-LOC', 'score': 0.9844095, 'index': 37, 'word': '##OR', 'start': 68, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9995115, 'index': 38, 'word': '##K', 'start': 70, 'end': 71}, {'entity': 'I-MISC', 'score': 0.988356, 'index': 55, 'word': 'Fed', 'start': 115, 'end': 118}, {'entity': 'I-MISC', 'score': 0.99842286, 'index': 56, 'word': 'Cup', 'start': 119, 'end': 122}, {'entity': 'I-MISC', 'score': 0.9907266, 'index': 65, 'word': 'U', 'start': 171, 'end': 172}, {'entity': 'I-MISC', 'score': 0.9960616, 'index': 67, 'word': 'S', 'start': 173, 'end': 174}, {'entity': 'I-MISC', 'score': 0.9848645, 'index': 68, 'word': '.', 'start': 174, 'end': 175}, {'entity': 'I-MISC', 'score': 0.99579346, 'index': 69, 'word': 'Open', 'start': 176, 'end': 180}, {'entity': 'I-MISC', 'score': 0.9753779, 'index': 77, 'word': 'World', 'start': 200, 'end': 205}, {'entity': 'I-MISC', 'score': 0.9827725, 'index': 78, 'word': 'Group', 'start': 206, 'end': 211}, {'entity': 'I-MISC', 'score': 0.79194635, 'index': 79, 'word': 'I', 'start': 212, 'end': 213}, {'entity': 'I-LOC', 'score': 0.9992855, 'index': 93, 'word': 'United', 'start': 247, 'end': 253}, {'entity': 'I-LOC', 'score': 0.9992409, 'index': 94, 'word': 'States', 'start': 254, 'end': 260}, {'entity': 'I-LOC', 'score': 0.9998416, 'index': 96, 'word': 'Netherlands', 'start': 264, 'end': 275}, {'entity': 'I-LOC', 'score': 0.99902844, 'index': 101, 'word': 'Czech', 'start': 281, 'end': 286}, {'entity': 'I-LOC', 'score': 0.9991478, 'index': 102, 'word': 'Republic', 'start': 287, 'end': 295}, {'entity': 'I-LOC', 'score': 0.99982834, 'index': 104, 'word': 'Germany', 'start': 299, 'end': 306}, {'entity': 'I-LOC', 'score': 0.99962866, 'index': 109, 'word': 'France', 'start': 312, 'end': 318}, {'entity': 'I-LOC', 'score': 0.99979824, 'index': 111, 'word': 'Japan', 'start': 322, 'end': 327}, {'entity': 'I-LOC', 'score': 0.99970645, 'index': 116, 'word': 'Spain', 'start': 333, 'end': 338}, {'entity': 'I-LOC', 'score': 0.99982125, 'index': 118, 'word': 'Belgium', 'start': 342, 'end': 349}, {'entity': 'I-MISC', 'score': 0.98246896, 'index': 141, 'word': 'World', 'start': 415, 'end': 420}, {'entity': 'I-MISC', 'score': 0.9875602, 'index': 142, 'word': 'Group', 'start': 421, 'end': 426}, {'entity': 'I-MISC', 'score': 0.70972526, 'index': 143, 'word': 'II', 'start': 427, 'end': 429}, {'entity': 'I-LOC', 'score': 0.9993968, 'index': 157, 'word': 'Austria', 'start': 463, 'end': 470}, {'entity': 'I-LOC', 'score': 0.9998035, 'index': 159, 'word': 'Croatia', 'start': 474, 'end': 481}, {'entity': 'I-LOC', 'score': 0.9994295, 'index': 164, 'word': 'Switzerland', 'start': 487, 'end': 498}, {'entity': 'I-LOC', 'score': 0.99956614, 'index': 166, 'word': 'Slovak', 'start': 502, 'end': 508}, {'entity': 'I-LOC', 'score': 0.9995623, 'index': 167, 'word': 'Republic', 'start': 509, 'end': 517}, {'entity': 'I-LOC', 'score': 0.99933964, 'index': 172, 'word': 'Argentina', 'start': 523, 'end': 532}, {'entity': 'I-LOC', 'score': 0.99973065, 'index': 174, 'word': 'South', 'start': 536, 'end': 541}, {'entity': 'I-LOC', 'score': 0.99981743, 'index': 175, 'word': 'Korea', 'start': 542, 'end': 547}, {'entity': 'I-LOC', 'score': 0.9994836, 'index': 180, 'word': 'Australia', 'start': 553, 'end': 562}, {'entity': 'I-LOC', 'score': 0.99969125, 'index': 182, 'word': 'South', 'start': 566, 'end': 571}, {'entity': 'I-LOC', 'score': 0.99981755, 'index': 183, 'word': 'Africa', 'start': 572, 'end': 578}]
[{'entity': 'I-LOC', 'score': 0.99925786, 'index': 6, 'word': 'U', 'start': 9, 'end': 10}, {'entity': 'I-LOC', 'score': 0.99900204, 'index': 8, 'word': 'S', 'start': 11, 'end': 12}, {'entity': 'I-LOC', 'score': 0.8474395, 'index': 13, 'word': 'E', 'start': 19, 'end': 20}, {'entity': 'I-ORG', 'score': 0.51709217, 'index': 14, 'word': '##L', 'start': 20, 'end': 21}, {'entity': 'I-LOC', 'score': 0.7599322, 'index': 15, 'word': 'SA', 'start': 22, 'end': 24}, {'entity': 'I-LOC', 'score': 0.6539488, 'index': 16, 'word': '##L', 'start': 24, 'end': 25}, {'entity': 'I-LOC', 'score': 0.8395078, 'index': 17, 'word': '##VA', 'start': 25, 'end': 27}, {'entity': 'I-ORG', 'score': 0.80636966, 'index': 18, 'word': '##D', 'start': 27, 'end': 28}, {'entity': 'I-ORG', 'score': 0.59291375, 'index': 19, 'word': '##OR', 'start': 28, 'end': 30}, {'entity': 'I-LOC', 'score': 0.99496704, 'index': 28, 'word': 'L', 'start': 42, 'end': 43}, {'entity': 'I-ORG', 'score': 0.7730266, 'index': 29, 'word': '##OS', 'start': 43, 'end': 45}, {'entity': 'I-LOC', 'score': 0.840992, 'index': 30, 'word': 'AN', 'start': 46, 'end': 48}, {'entity': 'I-LOC', 'score': 0.5369632, 'index': 31, 'word': '##GE', 'start': 48, 'end': 50}, {'entity': 'I-LOC', 'score': 0.58814996, 'index': 32, 'word': '##LE', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.7573031, 'index': 33, 'word': '##S', 'start': 52, 'end': 53}, {'entity': 'I-LOC', 'score': 0.99960035, 'index': 44, 'word': 'United', 'start': 74, 'end': 80}, {'entity': 'I-LOC', 'score': 0.9995852, 'index': 45, 'word': 'States', 'start': 81, 'end': 87}, {'entity': 'I-LOC', 'score': 0.9990018, 'index': 47, 'word': 'El', 'start': 93, 'end': 95}, {'entity': 'I-LOC', 'score': 0.9996413, 'index': 48, 'word': 'Salvador', 'start': 96, 'end': 104}, {'entity': 'I-LOC', 'score': 0.99906856, 'index': 77, 'word': 'U', 'start': 194, 'end': 195}, {'entity': 'I-LOC', 'score': 0.99610114, 'index': 79, 'word': 'S', 'start': 196, 'end': 197}, {'entity': 'I-PER', 'score': 0.99929523, 'index': 82, 'word': 'Joe', 'start': 201, 'end': 204}, {'entity': 'I-PER', 'score': 0.9997019, 'index': 84, 'word': 'Max', 'start': 205, 'end': 208}, {'entity': 'I-PER', 'score': 0.9998511, 'index': 85, 'word': 'Moore', 'start': 209, 'end': 214}, {'entity': 'I-PER', 'score': 0.9997423, 'index': 97, 'word': 'Eric', 'start': 255, 'end': 259}, {'entity': 'I-PER', 'score': 0.9995352, 'index': 98, 'word': 'W', 'start': 260, 'end': 261}, {'entity': 'I-PER', 'score': 0.9985158, 'index': 99, 'word': '##yna', 'start': 261, 'end': 264}, {'entity': 'I-PER', 'score': 0.99810046, 'index': 100, 'word': '##lda', 'start': 264, 'end': 267}, {'entity': 'I-LOC', 'score': 0.9937093, 'index': 109, 'word': 'El', 'start': 282, 'end': 284}, {'entity': 'I-LOC', 'score': 0.99785894, 'index': 110, 'word': 'Salvador', 'start': 285, 'end': 293}, {'entity': 'I-PER', 'score': 0.99946946, 'index': 112, 'word': 'Luis', 'start': 296, 'end': 300}, {'entity': 'I-PER', 'score': 0.9988085, 'index': 113, 'word': 'La', 'start': 301, 'end': 303}, {'entity': 'I-PER', 'score': 0.998489, 'index': 114, 'word': '##zo', 'start': 303, 'end': 305}]
[{'entity': 'I-MISC', 'score': 0.9965469, 'index': 6, 'word': 'MA', 'start': 11, 'end': 13}, {'entity': 'I-MISC', 'score': 0.8121376, 'index': 7, 'word': '##J', 'start': 13, 'end': 14}, {'entity': 'I-MISC', 'score': 0.9673401, 'index': 8, 'word': '##OR', 'start': 14, 'end': 16}, {'entity': 'I-MISC', 'score': 0.99731356, 'index': 9, 'word': 'L', 'start': 17, 'end': 18}, {'entity': 'I-MISC', 'score': 0.67371047, 'index': 10, 'word': '##EA', 'start': 18, 'end': 20}, {'entity': 'I-MISC', 'score': 0.83982784, 'index': 11, 'word': '##G', 'start': 20, 'end': 21}, {'entity': 'I-LOC', 'score': 0.871445, 'index': 35, 'word': 'NE', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9261341, 'index': 36, 'word': '##W', 'start': 65, 'end': 66}, {'entity': 'I-LOC', 'score': 0.90567994, 'index': 37, 'word': 'Y', 'start': 67, 'end': 68}, {'entity': 'I-LOC', 'score': 0.8404734, 'index': 38, 'word': '##OR', 'start': 68, 'end': 70}, {'entity': 'I-LOC', 'score': 0.9746824, 'index': 39, 'word': '##K', 'start': 70, 'end': 71}, {'entity': 'I-ORG', 'score': 0.9492032, 'index': 49, 'word': 'Major', 'start': 88, 'end': 93}, {'entity': 'I-ORG', 'score': 0.61850464, 'index': 50, 'word': 'League', 'start': 94, 'end': 100}, {'entity': 'I-ORG', 'score': 0.9767894, 'index': 51, 'word': 'Baseball', 'start': 101, 'end': 109}, {'entity': 'I-MISC', 'score': 0.57822967, 'index': 54, 'word': 'S', 'start': 112, 'end': 113}, {'entity': 'I-MISC', 'score': 0.9983601, 'index': 86, 'word': 'AM', 'start': 234, 'end': 236}, {'entity': 'I-MISC', 'score': 0.9361568, 'index': 87, 'word': '##ER', 'start': 236, 'end': 238}, {'entity': 'I-MISC', 'score': 0.9967918, 'index': 88, 'word': '##IC', 'start': 238, 'end': 240}, {'entity': 'I-MISC', 'score': 0.9974043, 'index': 89, 'word': '##AN', 'start': 240, 'end': 242}, {'entity': 'I-MISC', 'score': 0.5481215, 'index': 90, 'word': 'L', 'start': 243, 'end': 244}, {'entity': 'I-MISC', 'score': 0.5281018, 'index': 92, 'word': '##G', 'start': 246, 'end': 247}, {'entity': 'I-MISC', 'score': 0.9878535, 'index': 98, 'word': 'EA', 'start': 255, 'end': 257}, {'entity': 'I-MISC', 'score': 0.6165907, 'index': 101, 'word': '##N', 'start': 261, 'end': 262}, {'entity': 'I-ORG', 'score': 0.9993155, 'index': 120, 'word': 'NE', 'start': 293, 'end': 295}, {'entity': 'I-ORG', 'score': 0.9932006, 'index': 121, 'word': '##W', 'start': 295, 'end': 296}, {'entity': 'I-ORG', 'score': 0.99928194, 'index': 122, 'word': 'Y', 'start': 297, 'end': 298}, {'entity': 'I-ORG', 'score': 0.9756173, 'index': 123, 'word': '##OR', 'start': 298, 'end': 300}, {'entity': 'I-ORG', 'score': 0.9986588, 'index': 124, 'word': '##K', 'start': 300, 'end': 301}, {'entity': 'I-ORG', 'score': 0.9946827, 'index': 134, 'word': 'BA', 'start': 320, 'end': 322}, {'entity': 'I-ORG', 'score': 0.9934902, 'index': 135, 'word': '##LT', 'start': 322, 'end': 324}, {'entity': 'I-ORG', 'score': 0.9972395, 'index': 136, 'word': '##IM', 'start': 324, 'end': 326}, {'entity': 'I-ORG', 'score': 0.9885817, 'index': 137, 'word': '##OR', 'start': 326, 'end': 328}, {'entity': 'I-ORG', 'score': 0.996736, 'index': 138, 'word': '##E', 'start': 328, 'end': 329}, {'entity': 'I-ORG', 'score': 0.99928206, 'index': 148, 'word': 'B', 'start': 348, 'end': 349}, {'entity': 'I-ORG', 'score': 0.99083346, 'index': 149, 'word': '##OS', 'start': 349, 'end': 351}, {'entity': 'I-ORG', 'score': 0.9972881, 'index': 150, 'word': '##TO', 'start': 351, 'end': 353}, {'entity': 'I-ORG', 'score': 0.99810994, 'index': 151, 'word': '##N', 'start': 353, 'end': 354}, {'entity': 'I-ORG', 'score': 0.9949303, 'index': 165, 'word': 'TO', 'start': 377, 'end': 379}, {'entity': 'I-ORG', 'score': 0.9941842, 'index': 166, 'word': '##RO', 'start': 379, 'end': 381}, {'entity': 'I-ORG', 'score': 0.99628675, 'index': 167, 'word': '##NT', 'start': 381, 'end': 383}, {'entity': 'I-ORG', 'score': 0.9979765, 'index': 168, 'word': '##O', 'start': 383, 'end': 384}, {'entity': 'I-ORG', 'score': 0.99680674, 'index': 182, 'word': 'DE', 'start': 408, 'end': 410}, {'entity': 'I-ORG', 'score': 0.9971777, 'index': 183, 'word': '##TR', 'start': 410, 'end': 412}, {'entity': 'I-ORG', 'score': 0.99720603, 'index': 184, 'word': '##O', 'start': 412, 'end': 413}, {'entity': 'I-ORG', 'score': 0.99670476, 'index': 185, 'word': '##IT', 'start': 413, 'end': 415}, {'entity': 'I-ORG', 'score': 0.9982862, 'index': 212, 'word': 'C', 'start': 461, 'end': 462}, {'entity': 'I-ORG', 'score': 0.97386235, 'index': 213, 'word': '##LE', 'start': 462, 'end': 464}, {'entity': 'I-ORG', 'score': 0.99479276, 'index': 214, 'word': '##VE', 'start': 464, 'end': 466}, {'entity': 'I-ORG', 'score': 0.99419504, 'index': 215, 'word': '##LA', 'start': 466, 'end': 468}, {'entity': 'I-ORG', 'score': 0.99439245, 'index': 216, 'word': '##ND', 'start': 468, 'end': 470}, {'entity': 'I-ORG', 'score': 0.9991929, 'index': 227, 'word': 'CH', 'start': 489, 'end': 491}, {'entity': 'I-ORG', 'score': 0.99714273, 'index': 228, 'word': '##IC', 'start': 491, 'end': 493}, {'entity': 'I-ORG', 'score': 0.9976593, 'index': 229, 'word': '##AG', 'start': 493, 'end': 495}, {'entity': 'I-ORG', 'score': 0.99909365, 'index': 230, 'word': '##O', 'start': 495, 'end': 496}, {'entity': 'I-ORG', 'score': 0.99883944, 'index': 241, 'word': 'MI', 'start': 515, 'end': 517}, {'entity': 'I-ORG', 'score': 0.99891293, 'index': 242, 'word': '##N', 'start': 517, 'end': 518}, {'entity': 'I-ORG', 'score': 0.9985695, 'index': 243, 'word': '##NE', 'start': 518, 'end': 520}, {'entity': 'I-ORG', 'score': 0.99878985, 'index': 244, 'word': '##SO', 'start': 520, 'end': 522}, {'entity': 'I-ORG', 'score': 0.9990553, 'index': 245, 'word': '##TA', 'start': 522, 'end': 524}, {'entity': 'I-ORG', 'score': 0.99728715, 'index': 259, 'word': 'MI', 'start': 548, 'end': 550}, {'entity': 'I-ORG', 'score': 0.99885535, 'index': 260, 'word': '##L', 'start': 550, 'end': 551}, {'entity': 'I-ORG', 'score': 0.9975752, 'index': 261, 'word': '##WA', 'start': 551, 'end': 553}, {'entity': 'I-ORG', 'score': 0.9981926, 'index': 262, 'word': '##U', 'start': 553, 'end': 554}, {'entity': 'I-ORG', 'score': 0.99787545, 'index': 263, 'word': '##KE', 'start': 554, 'end': 556}, {'entity': 'I-ORG', 'score': 0.9977697, 'index': 264, 'word': '##E', 'start': 556, 'end': 557}, {'entity': 'I-ORG', 'score': 0.99756867, 'index': 275, 'word': 'K', 'start': 577, 'end': 578}, {'entity': 'I-ORG', 'score': 0.9947745, 'index': 276, 'word': '##AN', 'start': 578, 'end': 580}, {'entity': 'I-ORG', 'score': 0.99658114, 'index': 277, 'word': '##SA', 'start': 580, 'end': 582}, {'entity': 'I-ORG', 'score': 0.99814785, 'index': 278, 'word': '##S', 'start': 582, 'end': 583}, {'entity': 'I-ORG', 'score': 0.99898213, 'index': 279, 'word': 'C', 'start': 584, 'end': 585}, {'entity': 'I-ORG', 'score': 0.99500114, 'index': 280, 'word': '##IT', 'start': 585, 'end': 587}, {'entity': 'I-ORG', 'score': 0.99554175, 'index': 281, 'word': '##Y', 'start': 587, 'end': 588}, {'entity': 'I-ORG', 'score': 0.99911934, 'index': 306, 'word': 'T', 'start': 630, 'end': 631}, {'entity': 'I-ORG', 'score': 0.99727076, 'index': 307, 'word': '##EX', 'start': 631, 'end': 633}, {'entity': 'I-ORG', 'score': 0.99862707, 'index': 308, 'word': '##AS', 'start': 633, 'end': 635}, {'entity': 'I-ORG', 'score': 0.99770796, 'index': 319, 'word': 'SE', 'start': 654, 'end': 656}, {'entity': 'I-ORG', 'score': 0.984071, 'index': 320, 'word': '##AT', 'start': 656, 'end': 658}, {'entity': 'I-ORG', 'score': 0.9934871, 'index': 321, 'word': '##TL', 'start': 658, 'end': 660}, {'entity': 'I-ORG', 'score': 0.99520147, 'index': 322, 'word': '##E', 'start': 660, 'end': 661}, {'entity': 'I-ORG', 'score': 0.99868065, 'index': 333, 'word': 'O', 'start': 680, 'end': 681}, {'entity': 'I-ORG', 'score': 0.994678, 'index': 334, 'word': '##A', 'start': 681, 'end': 682}, {'entity': 'I-ORG', 'score': 0.9899771, 'index': 335, 'word': '##K', 'start': 682, 'end': 683}, {'entity': 'I-ORG', 'score': 0.9557986, 'index': 336, 'word': '##LA', 'start': 683, 'end': 685}, {'entity': 'I-ORG', 'score': 0.98893917, 'index': 337, 'word': '##ND', 'start': 685, 'end': 687}, {'entity': 'I-ORG', 'score': 0.9991912, 'index': 351, 'word': 'CA', 'start': 711, 'end': 713}, {'entity': 'I-ORG', 'score': 0.9965404, 'index': 352, 'word': '##L', 'start': 713, 'end': 714}, {'entity': 'I-ORG', 'score': 0.9988464, 'index': 353, 'word': '##IF', 'start': 714, 'end': 716}, {'entity': 'I-ORG', 'score': 0.99349904, 'index': 354, 'word': '##OR', 'start': 716, 'end': 718}, {'entity': 'I-ORG', 'score': 0.9971666, 'index': 355, 'word': '##NI', 'start': 718, 'end': 720}, {'entity': 'I-ORG', 'score': 0.9990339, 'index': 356, 'word': '##A', 'start': 720, 'end': 721}, {'entity': 'I-ORG', 'score': 0.9074072, 'index': 390, 'word': '##AN', 'start': 781, 'end': 783}, {'entity': 'I-ORG', 'score': 0.70961714, 'index': 393, 'word': 'C', 'start': 787, 'end': 788}, {'entity': 'I-ORG', 'score': 0.95659226, 'index': 394, 'word': '##IT', 'start': 788, 'end': 790}, {'entity': 'I-ORG', 'score': 0.9527079, 'index': 398, 'word': '##TR', 'start': 797, 'end': 799}, {'entity': 'I-ORG', 'score': 0.95738024, 'index': 399, 'word': '##O', 'start': 799, 'end': 800}, {'entity': 'I-ORG', 'score': 0.9647111, 'index': 400, 'word': '##IT', 'start': 800, 'end': 802}, {'entity': 'I-ORG', 'score': 0.91394603, 'index': 407, 'word': '##IM', 'start': 812, 'end': 814}, {'entity': 'I-ORG', 'score': 0.88817906, 'index': 412, 'word': '##AT', 'start': 823, 'end': 825}, {'entity': 'I-ORG', 'score': 0.9311795, 'index': 413, 'word': '##TL', 'start': 825, 'end': 827}, {'entity': 'I-ORG', 'score': 0.50978667, 'index': 414, 'word': '##E', 'start': 827, 'end': 828}, {'entity': 'I-ORG', 'score': 0.9876232, 'index': 420, 'word': '##IC', 'start': 836, 'end': 838}, {'entity': 'I-ORG', 'score': 0.96955824, 'index': 421, 'word': '##AG', 'start': 838, 'end': 840}, {'entity': 'I-ORG', 'score': 0.98074496, 'index': 422, 'word': '##O', 'start': 840, 'end': 841}, {'entity': 'I-ORG', 'score': 0.6073254, 'index': 425, 'word': '##RO', 'start': 847, 'end': 849}, {'entity': 'I-ORG', 'score': 0.8663377, 'index': 426, 'word': '##NT', 'start': 849, 'end': 851}, {'entity': 'I-ORG', 'score': 0.9729508, 'index': 427, 'word': '##O', 'start': 851, 'end': 852}, {'entity': 'I-ORG', 'score': 0.90806085, 'index': 436, 'word': '##TA', 'start': 865, 'end': 867}, {'entity': 'I-ORG', 'score': 0.52255905, 'index': 437, 'word': 'AT', 'start': 868, 'end': 870}, {'entity': 'I-ORG', 'score': 0.93168753, 'index': 442, 'word': '##KE', 'start': 877, 'end': 879}, {'entity': 'I-ORG', 'score': 0.9496691, 'index': 450, 'word': '##VE', 'start': 889, 'end': 891}, {'entity': 'I-ORG', 'score': 0.93309087, 'index': 452, 'word': '##ND', 'start': 893, 'end': 895}, {'entity': 'I-ORG', 'score': 0.914378, 'index': 461, 'word': 'B', 'start': 910, 'end': 911}, {'entity': 'I-ORG', 'score': 0.7990409, 'index': 462, 'word': '##OS', 'start': 911, 'end': 913}, {'entity': 'I-ORG', 'score': 0.9534715, 'index': 463, 'word': '##TO', 'start': 913, 'end': 915}, {'entity': 'I-ORG', 'score': 0.5921897, 'index': 464, 'word': '##N', 'start': 915, 'end': 916}, {'entity': 'I-ORG', 'score': 0.72691554, 'index': 466, 'word': 'O', 'start': 920, 'end': 921}, {'entity': 'I-ORG', 'score': 0.989174, 'index': 467, 'word': '##A', 'start': 921, 'end': 922}, {'entity': 'I-ORG', 'score': 0.80662984, 'index': 468, 'word': '##K', 'start': 922, 'end': 923}, {'entity': 'I-ORG', 'score': 0.86545223, 'index': 470, 'word': '##ND', 'start': 925, 'end': 927}, {'entity': 'I-ORG', 'score': 0.4813779, 'index': 479, 'word': '##K', 'start': 940, 'end': 941}, {'entity': 'I-ORG', 'score': 0.57742596, 'index': 483, 'word': '##IF', 'start': 948, 'end': 950}, {'entity': 'I-ORG', 'score': 0.96138203, 'index': 485, 'word': '##NI', 'start': 952, 'end': 954}, {'entity': 'I-ORG', 'score': 0.976485, 'index': 486, 'word': '##A', 'start': 954, 'end': 955}, {'entity': 'I-ORG', 'score': 0.8378892, 'index': 492, 'word': '##AT', 'start': 962, 'end': 964}, {'entity': 'I-ORG', 'score': 0.8501644, 'index': 493, 'word': '##ION', 'start': 964, 'end': 967}, {'entity': 'I-ORG', 'score': 0.7156307, 'index': 495, 'word': 'L', 'start': 970, 'end': 971}, {'entity': 'I-ORG', 'score': 0.8831075, 'index': 497, 'word': '##G', 'start': 973, 'end': 974}, {'entity': 'I-ORG', 'score': 0.8106182, 'index': 503, 'word': 'EA', 'start': 982, 'end': 984}, {'entity': 'I-ORG', 'score': 0.6916049, 'index': 509, 'word': '##VI', 'start': 992, 'end': 994}, {'entity': 'I-ORG', 'score': 0.9091645, 'index': 510, 'word': '##SI', 'start': 994, 'end': 996}]
[{'entity': 'I-MISC', 'score': 0.99681026, 'index': 6, 'word': 'MA', 'start': 11, 'end': 13}, {'entity': 'I-MISC', 'score': 0.7238695, 'index': 7, 'word': '##J', 'start': 13, 'end': 14}, {'entity': 'I-MISC', 'score': 0.989795, 'index': 8, 'word': '##OR', 'start': 14, 'end': 16}, {'entity': 'I-MISC', 'score': 0.9984445, 'index': 9, 'word': 'L', 'start': 17, 'end': 18}, {'entity': 'I-MISC', 'score': 0.78211844, 'index': 10, 'word': '##EA', 'start': 18, 'end': 20}, {'entity': 'I-MISC', 'score': 0.8976126, 'index': 11, 'word': '##G', 'start': 20, 'end': 21}, {'entity': 'I-MISC', 'score': 0.5449722, 'index': 12, 'word': '##UE', 'start': 21, 'end': 23}, {'entity': 'I-LOC', 'score': 0.9647502, 'index': 27, 'word': 'NE', 'start': 46, 'end': 48}, {'entity': 'I-LOC', 'score': 0.9635213, 'index': 28, 'word': '##W', 'start': 48, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9864435, 'index': 29, 'word': 'Y', 'start': 50, 'end': 51}, {'entity': 'I-LOC', 'score': 0.79799485, 'index': 30, 'word': '##OR', 'start': 51, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9682567, 'index': 31, 'word': '##K', 'start': 53, 'end': 54}, {'entity': 'I-MISC', 'score': 0.9983183, 'index': 43, 'word': 'Major', 'start': 82, 'end': 87}, {'entity': 'I-MISC', 'score': 0.99878114, 'index': 44, 'word': 'League', 'start': 88, 'end': 94}, {'entity': 'I-MISC', 'score': 0.5633295, 'index': 45, 'word': '<', 'start': 95, 'end': 96}, {'entity': 'I-MISC', 'score': 0.8610084, 'index': 47, 'word': 'S', 'start': 97, 'end': 98}, {'entity': 'I-ORG', 'score': 0.73955435, 'index': 66, 'word': 'American', 'start': 161, 'end': 169}, {'entity': 'I-ORG', 'score': 0.85663295, 'index': 67, 'word': 'League', 'start': 170, 'end': 176}, {'entity': 'I-ORG', 'score': 0.99942017, 'index': 72, 'word': 'DE', 'start': 182, 'end': 184}, {'entity': 'I-ORG', 'score': 0.99906355, 'index': 73, 'word': '##TR', 'start': 184, 'end': 186}, {'entity': 'I-ORG', 'score': 0.99851316, 'index': 74, 'word': '##O', 'start': 186, 'end': 187}, {'entity': 'I-ORG', 'score': 0.99897015, 'index': 75, 'word': '##IT', 'start': 187, 'end': 189}, {'entity': 'I-ORG', 'score': 0.9995363, 'index': 77, 'word': 'Kansas', 'start': 192, 'end': 198}, {'entity': 'I-ORG', 'score': 0.99964726, 'index': 78, 'word': 'City', 'start': 199, 'end': 203}, {'entity': 'I-ORG', 'score': 0.9997589, 'index': 84, 'word': 'Chicago', 'start': 211, 'end': 218}, {'entity': 'I-ORG', 'score': 0.9995677, 'index': 86, 'word': 'TO', 'start': 222, 'end': 224}, {'entity': 'I-ORG', 'score': 0.9986551, 'index': 87, 'word': '##RO', 'start': 224, 'end': 226}, {'entity': 'I-ORG', 'score': 0.9991209, 'index': 88, 'word': '##NT', 'start': 226, 'end': 228}, {'entity': 'I-ORG', 'score': 0.9989213, 'index': 89, 'word': '##O', 'start': 228, 'end': 229}, {'entity': 'I-ORG', 'score': 0.9993887, 'index': 95, 'word': 'MI', 'start': 237, 'end': 239}, {'entity': 'I-ORG', 'score': 0.9978667, 'index': 96, 'word': '##L', 'start': 239, 'end': 240}, {'entity': 'I-ORG', 'score': 0.9983919, 'index': 97, 'word': '##WA', 'start': 240, 'end': 242}, {'entity': 'I-ORG', 'score': 0.9974025, 'index': 98, 'word': '##U', 'start': 242, 'end': 243}, {'entity': 'I-ORG', 'score': 0.9974813, 'index': 99, 'word': '##KE', 'start': 243, 'end': 245}, {'entity': 'I-ORG', 'score': 0.9984712, 'index': 100, 'word': '##E', 'start': 245, 'end': 246}, {'entity': 'I-ORG', 'score': 0.99972624, 'index': 102, 'word': 'Minnesota', 'start': 249, 'end': 258}, {'entity': 'I-ORG', 'score': 0.99952734, 'index': 112, 'word': 'T', 'start': 276, 'end': 277}, {'entity': 'I-ORG', 'score': 0.99630594, 'index': 113, 'word': '##EX', 'start': 277, 'end': 279}, {'entity': 'I-ORG', 'score': 0.9991185, 'index': 114, 'word': '##AS', 'start': 279, 'end': 281}, {'entity': 'I-ORG', 'score': 0.9997297, 'index': 116, 'word': 'Cleveland', 'start': 284, 'end': 293}, {'entity': 'I-ORG', 'score': 0.99970585, 'index': 122, 'word': 'New', 'start': 301, 'end': 304}, {'entity': 'I-ORG', 'score': 0.99972564, 'index': 123, 'word': 'York', 'start': 305, 'end': 309}, {'entity': 'I-ORG', 'score': 0.99948335, 'index': 125, 'word': 'CA', 'start': 312, 'end': 314}, {'entity': 'I-ORG', 'score': 0.9984799, 'index': 126, 'word': '##L', 'start': 314, 'end': 315}, {'entity': 'I-ORG', 'score': 0.9994796, 'index': 127, 'word': '##IF', 'start': 315, 'end': 317}, {'entity': 'I-ORG', 'score': 0.997928, 'index': 128, 'word': '##OR', 'start': 317, 'end': 319}, {'entity': 'I-ORG', 'score': 0.9991148, 'index': 129, 'word': '##NI', 'start': 319, 'end': 321}, {'entity': 'I-ORG', 'score': 0.9993862, 'index': 130, 'word': '##A', 'start': 321, 'end': 322}, {'entity': 'I-ORG', 'score': 0.99900985, 'index': 136, 'word': 'O', 'start': 330, 'end': 331}, {'entity': 'I-ORG', 'score': 0.9915986, 'index': 137, 'word': '##A', 'start': 331, 'end': 332}, {'entity': 'I-ORG', 'score': 0.99397415, 'index': 138, 'word': '##K', 'start': 332, 'end': 333}, {'entity': 'I-ORG', 'score': 0.9793209, 'index': 139, 'word': '##LA', 'start': 333, 'end': 335}, {'entity': 'I-ORG', 'score': 0.997274, 'index': 140, 'word': '##ND', 'start': 335, 'end': 337}, {'entity': 'I-ORG', 'score': 0.9997658, 'index': 142, 'word': 'Boston', 'start': 340, 'end': 346}, {'entity': 'I-ORG', 'score': 0.99974984, 'index': 148, 'word': 'Baltimore', 'start': 354, 'end': 363}, {'entity': 'I-ORG', 'score': 0.997426, 'index': 150, 'word': 'SE', 'start': 366, 'end': 368}, {'entity': 'I-ORG', 'score': 0.8715492, 'index': 151, 'word': '##AT', 'start': 368, 'end': 370}, {'entity': 'I-ORG', 'score': 0.9794422, 'index': 152, 'word': '##TL', 'start': 370, 'end': 372}, {'entity': 'I-ORG', 'score': 0.9957676, 'index': 153, 'word': '##E', 'start': 372, 'end': 373}, {'entity': 'I-ORG', 'score': 0.9590706, 'index': 159, 'word': 'National', 'start': 381, 'end': 389}, {'entity': 'I-ORG', 'score': 0.6742266, 'index': 160, 'word': 'League', 'start': 390, 'end': 396}, {'entity': 'I-ORG', 'score': 0.999561, 'index': 165, 'word': 'CH', 'start': 402, 'end': 404}, {'entity': 'I-ORG', 'score': 0.9986431, 'index': 166, 'word': '##IC', 'start': 404, 'end': 406}, {'entity': 'I-ORG', 'score': 0.99774134, 'index': 167, 'word': '##AG', 'start': 406, 'end': 408}, {'entity': 'I-ORG', 'score': 0.9991598, 'index': 168, 'word': '##O', 'start': 408, 'end': 409}, {'entity': 'I-ORG', 'score': 0.99955577, 'index': 170, 'word': 'Atlanta', 'start': 412, 'end': 419}, {'entity': 'I-ORG', 'score': 0.9995679, 'index': 180, 'word': 'Atlanta', 'start': 440, 'end': 447}, {'entity': 'I-ORG', 'score': 0.999453, 'index': 182, 'word': 'CH', 'start': 450, 'end': 452}, {'entity': 'I-ORG', 'score': 0.9989159, 'index': 183, 'word': '##IC', 'start': 452, 'end': 454}, {'entity': 'I-ORG', 'score': 0.99857414, 'index': 184, 'word': '##AG', 'start': 454, 'end': 456}, {'entity': 'I-ORG', 'score': 0.9990336, 'index': 185, 'word': '##O', 'start': 456, 'end': 457}, {'entity': 'I-ORG', 'score': 0.99962294, 'index': 195, 'word': 'Florida', 'start': 478, 'end': 485}, {'entity': 'I-ORG', 'score': 0.9992623, 'index': 197, 'word': 'C', 'start': 488, 'end': 489}, {'entity': 'I-ORG', 'score': 0.9972101, 'index': 198, 'word': '##IN', 'start': 489, 'end': 491}, {'entity': 'I-ORG', 'score': 0.999092, 'index': 199, 'word': '##CI', 'start': 491, 'end': 493}, {'entity': 'I-ORG', 'score': 0.9981968, 'index': 200, 'word': '##N', 'start': 493, 'end': 494}, {'entity': 'I-ORG', 'score': 0.99328196, 'index': 201, 'word': '##NA', 'start': 494, 'end': 496}, {'entity': 'I-ORG', 'score': 0.9986314, 'index': 202, 'word': '##TI', 'start': 496, 'end': 498}, {'entity': 'I-ORG', 'score': 0.9997003, 'index': 208, 'word': 'San', 'start': 506, 'end': 509}, {'entity': 'I-ORG', 'score': 0.9996486, 'index': 209, 'word': 'Diego', 'start': 510, 'end': 515}, {'entity': 'I-ORG', 'score': 0.9963542, 'index': 211, 'word': 'M', 'start': 518, 'end': 519}, {'entity': 'I-ORG', 'score': 0.9897283, 'index': 212, 'word': '##ON', 'start': 519, 'end': 521}, {'entity': 'I-ORG', 'score': 0.99293995, 'index': 213, 'word': '##TR', 'start': 521, 'end': 523}, {'entity': 'I-ORG', 'score': 0.96022266, 'index': 214, 'word': '##EA', 'start': 523, 'end': 525}, {'entity': 'I-ORG', 'score': 0.9987244, 'index': 215, 'word': '##L', 'start': 525, 'end': 526}, {'entity': 'I-ORG', 'score': 0.9997358, 'index': 221, 'word': 'Los', 'start': 534, 'end': 537}, {'entity': 'I-ORG', 'score': 0.99967813, 'index': 222, 'word': 'Angeles', 'start': 538, 'end': 545}, {'entity': 'I-ORG', 'score': 0.99935824, 'index': 224, 'word': 'P', 'start': 548, 'end': 549}, {'entity': 'I-ORG', 'score': 0.99686193, 'index': 225, 'word': '##H', 'start': 549, 'end': 550}, {'entity': 'I-ORG', 'score': 0.9982318, 'index': 226, 'word': '##IL', 'start': 550, 'end': 552}, {'entity': 'I-ORG', 'score': 0.9987752, 'index': 227, 'word': '##AD', 'start': 552, 'end': 554}, {'entity': 'I-ORG', 'score': 0.9979948, 'index': 228, 'word': '##EL', 'start': 554, 'end': 556}, {'entity': 'I-ORG', 'score': 0.997459, 'index': 229, 'word': '##P', 'start': 556, 'end': 557}, {'entity': 'I-ORG', 'score': 0.99351877, 'index': 230, 'word': '##H', 'start': 557, 'end': 558}, {'entity': 'I-ORG', 'score': 0.9989924, 'index': 231, 'word': '##IA', 'start': 558, 'end': 560}, {'entity': 'I-ORG', 'score': 0.99960595, 'index': 241, 'word': 'Houston', 'start': 578, 'end': 585}, {'entity': 'I-ORG', 'score': 0.9993228, 'index': 243, 'word': 'P', 'start': 589, 'end': 590}, {'entity': 'I-ORG', 'score': 0.98864114, 'index': 244, 'word': '##IT', 'start': 590, 'end': 592}, {'entity': 'I-ORG', 'score': 0.99892503, 'index': 245, 'word': '##TS', 'start': 592, 'end': 594}, {'entity': 'I-ORG', 'score': 0.9957208, 'index': 246, 'word': '##B', 'start': 594, 'end': 595}, {'entity': 'I-ORG', 'score': 0.6260848, 'index': 247, 'word': '##UR', 'start': 595, 'end': 597}, {'entity': 'I-ORG', 'score': 0.88604414, 'index': 248, 'word': '##G', 'start': 597, 'end': 598}, {'entity': 'I-ORG', 'score': 0.99857986, 'index': 249, 'word': '##H', 'start': 598, 'end': 599}, {'entity': 'I-ORG', 'score': 0.9995486, 'index': 255, 'word': 'San', 'start': 607, 'end': 610}, {'entity': 'I-ORG', 'score': 0.9995902, 'index': 256, 'word': 'Francisco', 'start': 611, 'end': 620}, {'entity': 'I-ORG', 'score': 0.9994429, 'index': 258, 'word': 'NE', 'start': 623, 'end': 625}, {'entity': 'I-ORG', 'score': 0.9976494, 'index': 259, 'word': '##W', 'start': 625, 'end': 626}, {'entity': 'I-ORG', 'score': 0.9994973, 'index': 260, 'word': 'Y', 'start': 627, 'end': 628}, {'entity': 'I-ORG', 'score': 0.9876686, 'index': 261, 'word': '##OR', 'start': 628, 'end': 630}, {'entity': 'I-ORG', 'score': 0.99905246, 'index': 262, 'word': '##K', 'start': 630, 'end': 631}, {'entity': 'I-ORG', 'score': 0.99837035, 'index': 268, 'word': 'ST', 'start': 639, 'end': 641}, {'entity': 'I-ORG', 'score': 0.9964264, 'index': 269, 'word': 'L', 'start': 642, 'end': 643}, {'entity': 'I-ORG', 'score': 0.992969, 'index': 270, 'word': '##O', 'start': 643, 'end': 644}, {'entity': 'I-ORG', 'score': 0.99547595, 'index': 271, 'word': '##UI', 'start': 644, 'end': 646}, {'entity': 'I-ORG', 'score': 0.9975883, 'index': 272, 'word': '##S', 'start': 646, 'end': 647}, {'entity': 'I-ORG', 'score': 0.99940467, 'index': 274, 'word': 'Colorado', 'start': 650, 'end': 658}]
[{'entity': 'I-PER', 'score': 0.4949394, 'index': 6, 'word': 'K', 'start': 11, 'end': 12}, {'entity': 'I-MISC', 'score': 0.6678441, 'index': 7, 'word': '##E', 'start': 12, 'end': 13}, {'entity': 'I-ORG', 'score': 0.46621084, 'index': 8, 'word': '##VI', 'start': 13, 'end': 15}, {'entity': 'I-PER', 'score': 0.50506324, 'index': 19, 'word': 'MA', 'start': 37, 'end': 39}, {'entity': 'I-PER', 'score': 0.39421883, 'index': 26, 'word': 'R', 'start': 50, 'end': 51}, {'entity': 'I-LOC', 'score': 0.56797993, 'index': 34, 'word': 'C', 'start': 62, 'end': 63}, {'entity': 'I-ORG', 'score': 0.7852281, 'index': 35, 'word': '##IN', 'start': 63, 'end': 65}, {'entity': 'I-ORG', 'score': 0.9412353, 'index': 36, 'word': '##CI', 'start': 65, 'end': 67}, {'entity': 'I-ORG', 'score': 0.88811034, 'index': 37, 'word': '##N', 'start': 67, 'end': 68}, {'entity': 'I-ORG', 'score': 0.77367496, 'index': 38, 'word': '##NA', 'start': 68, 'end': 70}, {'entity': 'I-ORG', 'score': 0.81300914, 'index': 39, 'word': '##TI', 'start': 70, 'end': 72}, {'entity': 'I-MISC', 'score': 0.9334045, 'index': 51, 'word': 'ERA', 'start': 102, 'end': 105}, {'entity': 'I-PER', 'score': 0.9995833, 'index': 53, 'word': 'Kevin', 'start': 113, 'end': 118}, {'entity': 'I-PER', 'score': 0.9997008, 'index': 54, 'word': 'Brown', 'start': 119, 'end': 124}, {'entity': 'I-PER', 'score': 0.99965906, 'index': 61, 'word': 'Devon', 'start': 151, 'end': 156}, {'entity': 'I-PER', 'score': 0.99968266, 'index': 62, 'word': 'White', 'start': 157, 'end': 162}, {'entity': 'I-MISC', 'score': 0.9977679, 'index': 65, 'word': 'RBI', 'start': 166, 'end': 169}, {'entity': 'I-ORG', 'score': 0.9995314, 'index': 75, 'word': 'Florida', 'start': 211, 'end': 218}, {'entity': 'I-ORG', 'score': 0.9995952, 'index': 76, 'word': 'Mar', 'start': 219, 'end': 222}, {'entity': 'I-ORG', 'score': 0.99947387, 'index': 77, 'word': '##lins', 'start': 222, 'end': 226}, {'entity': 'I-ORG', 'score': 0.9994998, 'index': 80, 'word': 'Cincinnati', 'start': 236, 'end': 246}, {'entity': 'I-ORG', 'score': 0.99940026, 'index': 81, 'word': 'Reds', 'start': 247, 'end': 251}, {'entity': 'I-PER', 'score': 0.99976784, 'index': 96, 'word': 'Brown', 'start': 301, 'end': 306}, {'entity': 'I-PER', 'score': 0.9997552, 'index': 103, 'word': 'Todd', 'start': 322, 'end': 326}, {'entity': 'I-PER', 'score': 0.9997787, 'index': 104, 'word': 'St', 'start': 327, 'end': 329}, {'entity': 'I-PER', 'score': 0.99687564, 'index': 105, 'word': '##ott', 'start': 329, 'end': 332}, {'entity': 'I-PER', 'score': 0.6769512, 'index': 106, 'word': '##lem', 'start': 332, 'end': 335}, {'entity': 'I-PER', 'score': 0.9864145, 'index': 107, 'word': '##yre', 'start': 335, 'end': 338}, {'entity': 'I-ORG', 'score': 0.9983144, 'index': 110, 'word': 'Cardinals', 'start': 346, 'end': 355}, {'entity': 'I-MISC', 'score': 0.99775547, 'index': 113, 'word': 'National', 'start': 364, 'end': 372}, {'entity': 'I-MISC', 'score': 0.9979437, 'index': 114, 'word': 'League', 'start': 373, 'end': 379}, {'entity': 'I-PER', 'score': 0.9996704, 'index': 159, 'word': 'Brown', 'start': 548, 'end': 553}, {'entity': 'I-ORG', 'score': 0.99831235, 'index': 175, 'word': 'Reds', 'start': 629, 'end': 633}, {'entity': 'I-PER', 'score': 0.9940519, 'index': 184, 'word': 'Bo', 'start': 655, 'end': 657}, {'entity': 'I-ORG', 'score': 0.9926887, 'index': 188, 'word': 'Florida', 'start': 664, 'end': 671}, {'entity': 'I-PER', 'score': 0.9994966, 'index': 190, 'word': 'John', 'start': 680, 'end': 684}, {'entity': 'I-PER', 'score': 0.9997423, 'index': 191, 'word': 'Bo', 'start': 685, 'end': 687}, {'entity': 'I-PER', 'score': 0.99730957, 'index': 192, 'word': '##les', 'start': 687, 'end': 690}, {'entity': 'I-PER', 'score': 0.999496, 'index': 208, 'word': 'Brown', 'start': 750, 'end': 755}, {'entity': 'I-ORG', 'score': 0.99899477, 'index': 313, 'word': 'Reds', 'start': 1144, 'end': 1148}, {'entity': 'I-PER', 'score': 0.999491, 'index': 315, 'word': 'Ray', 'start': 1157, 'end': 1160}, {'entity': 'I-PER', 'score': 0.9997402, 'index': 316, 'word': 'Knight', 'start': 1161, 'end': 1167}, {'entity': 'I-PER', 'score': 0.9996685, 'index': 341, 'word': 'Nolan', 'start': 1250, 'end': 1255}, {'entity': 'I-PER', 'score': 0.9997255, 'index': 342, 'word': 'Ryan', 'start': 1256, 'end': 1260}, {'entity': 'I-PER', 'score': 0.99964, 'index': 367, 'word': 'Tom', 'start': 1361, 'end': 1364}, {'entity': 'I-PER', 'score': 0.9873985, 'index': 368, 'word': ')', 'start': 1365, 'end': 1366}, {'entity': 'I-PER', 'score': 0.99804604, 'index': 369, 'word': 'Sea', 'start': 1367, 'end': 1370}, {'entity': 'I-PER', 'score': 0.99252397, 'index': 370, 'word': '##ver', 'start': 1370, 'end': 1373}, {'entity': 'I-PER', 'score': 0.9996643, 'index': 373, 'word': 'Jerry', 'start': 1380, 'end': 1385}, {'entity': 'I-PER', 'score': 0.9838653, 'index': 374, 'word': ')', 'start': 1386, 'end': 1387}, {'entity': 'I-PER', 'score': 0.99970514, 'index': 375, 'word': 'Ko', 'start': 1388, 'end': 1390}, {'entity': 'I-PER', 'score': 0.93052566, 'index': 376, 'word': '##os', 'start': 1390, 'end': 1392}, {'entity': 'I-PER', 'score': 0.99897516, 'index': 377, 'word': '##man', 'start': 1392, 'end': 1395}, {'entity': 'I-PER', 'score': 0.70545524, 'index': 386, 'word': 'S', 'start': 1426, 'end': 1427}, {'entity': 'I-ORG', 'score': 0.98815805, 'index': 389, 'word': 'Philadelphia', 'start': 1432, 'end': 1444}, {'entity': 'I-PER', 'score': 0.90108657, 'index': 391, 'word': 'Del', 'start': 1447, 'end': 1450}, {'entity': 'I-PER', 'score': 0.98789304, 'index': 392, 'word': '##ino', 'start': 1450, 'end': 1453}, {'entity': 'I-PER', 'score': 0.97867453, 'index': 393, 'word': 'De', 'start': 1454, 'end': 1456}, {'entity': 'I-ORG', 'score': 0.62042445, 'index': 394, 'word': '##S', 'start': 1456, 'end': 1457}, {'entity': 'I-ORG', 'score': 0.37515968, 'index': 396, 'word': '##eld', 'start': 1459, 'end': 1462}, {'entity': 'I-PER', 'score': 0.999223, 'index': 408, 'word': 'Jeff', 'start': 1501, 'end': 1505}, {'entity': 'I-PER', 'score': 0.9851658, 'index': 409, 'word': 'Pa', 'start': 1506, 'end': 1508}, {'entity': 'I-ORG', 'score': 0.3814985, 'index': 410, 'word': '##rre', 'start': 1508, 'end': 1511}, {'entity': 'I-PER', 'score': 0.99903405, 'index': 418, 'word': 'Chad', 'start': 1529, 'end': 1533}, {'entity': 'I-PER', 'score': 0.99648905, 'index': 419, 'word': 'Curtis', 'start': 1534, 'end': 1540}, {'entity': 'I-ORG', 'score': 0.9803088, 'index': 423, 'word': 'Los', 'start': 1556, 'end': 1559}, {'entity': 'I-LOC', 'score': 0.95991236, 'index': 424, 'word': 'Angeles', 'start': 1560, 'end': 1567}, {'entity': 'I-ORG', 'score': 0.99608254, 'index': 425, 'word': 'Dodgers', 'start': 1568, 'end': 1575}, {'entity': 'I-ORG', 'score': 0.9979955, 'index': 434, 'word': 'Phillies', 'start': 1602, 'end': 1610}, {'entity': 'I-PER', 'score': 0.8607713, 'index': 438, 'word': 'S', 'start': 1615, 'end': 1616}, {'entity': 'I-ORG', 'score': 0.9710311, 'index': 440, 'word': 'Los', 'start': 1618, 'end': 1621}, {'entity': 'I-LOC', 'score': 0.77567697, 'index': 441, 'word': 'Angeles', 'start': 1622, 'end': 1629}, {'entity': 'I-PER', 'score': 0.6663335, 'index': 453, 'word': 'S', 'start': 1674, 'end': 1675}, {'entity': 'I-PER', 'score': 0.9986885, 'index': 455, 'word': 'Darren', 'start': 1677, 'end': 1683}, {'entity': 'I-PER', 'score': 0.70068604, 'index': 457, 'word': '##ei', 'start': 1686, 'end': 1688}, {'entity': 'I-PER', 'score': 0.97889197, 'index': 458, 'word': '##fort', 'start': 1688, 'end': 1692}, {'entity': 'I-PER', 'score': 0.998976, 'index': 488, 'word': 'Todd', 'start': 1787, 'end': 1791}, {'entity': 'I-PER', 'score': 0.8543743, 'index': 490, 'word': '##or', 'start': 1793, 'end': 1795}, {'entity': 'I-ORG', 'score': 0.6637588, 'index': 491, 'word': '##rell', 'start': 1795, 'end': 1799}, {'entity': 'I-PER', 'score': 0.751736, 'index': 506, 'word': 'S', 'start': 1857, 'end': 1858}, {'entity': 'I-ORG', 'score': 0.9973252, 'index': 509, 'word': 'Phillies', 'start': 1864, 'end': 1872}]
[{'entity': 'I-PER', 'score': 0.9595945, 'index': 6, 'word': 'E', 'start': 9, 'end': 10}, {'entity': 'I-PER', 'score': 0.8640398, 'index': 7, 'word': '##D', 'start': 10, 'end': 11}, {'entity': 'I-PER', 'score': 0.96104485, 'index': 8, 'word': '##BE', 'start': 11, 'end': 13}, {'entity': 'I-PER', 'score': 0.5449536, 'index': 9, 'word': '##R', 'start': 13, 'end': 14}, {'entity': 'I-PER', 'score': 0.89008504, 'index': 10, 'word': '##G', 'start': 14, 'end': 15}, {'entity': 'I-PER', 'score': 0.99953365, 'index': 28, 'word': 'Richard', 'start': 45, 'end': 52}, {'entity': 'I-PER', 'score': 0.99864846, 'index': 29, 'word': 'Finn', 'start': 53, 'end': 57}, {'entity': 'I-LOC', 'score': 0.999561, 'index': 34, 'word': 'NE', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.9948144, 'index': 35, 'word': '##W', 'start': 65, 'end': 66}, {'entity': 'I-LOC', 'score': 0.99956876, 'index': 36, 'word': 'Y', 'start': 67, 'end': 68}, {'entity': 'I-LOC', 'score': 0.95462066, 'index': 37, 'word': '##OR', 'start': 68, 'end': 70}, {'entity': 'I-LOC', 'score': 0.99939716, 'index': 38, 'word': '##K', 'start': 70, 'end': 71}, {'entity': 'I-PER', 'score': 0.9996561, 'index': 58, 'word': 'Stefan', 'start': 126, 'end': 132}, {'entity': 'I-PER', 'score': 0.9996325, 'index': 59, 'word': 'Ed', 'start': 133, 'end': 135}, {'entity': 'I-PER', 'score': 0.9994541, 'index': 60, 'word': '##berg', 'start': 135, 'end': 139}, {'entity': 'I-MISC', 'score': 0.9962838, 'index': 69, 'word': 'U', 'start': 179, 'end': 180}, {'entity': 'I-MISC', 'score': 0.99678516, 'index': 71, 'word': 'S', 'start': 181, 'end': 182}, {'entity': 'I-MISC', 'score': 0.981873, 'index': 72, 'word': '.', 'start': 182, 'end': 183}, {'entity': 'I-MISC', 'score': 0.997672, 'index': 73, 'word': 'Open', 'start': 184, 'end': 188}, {'entity': 'I-PER', 'score': 0.9997037, 'index': 75, 'word': 'Bern', 'start': 194, 'end': 198}, {'entity': 'I-PER', 'score': 0.9997402, 'index': 76, 'word': '##d', 'start': 198, 'end': 199}, {'entity': 'I-PER', 'score': 0.9998134, 'index': 77, 'word': 'Ka', 'start': 200, 'end': 202}, {'entity': 'I-PER', 'score': 0.9864926, 'index': 78, 'word': '##rb', 'start': 202, 'end': 204}, {'entity': 'I-PER', 'score': 0.99915755, 'index': 79, 'word': '##acher', 'start': 204, 'end': 209}, {'entity': 'I-PER', 'score': 0.99970824, 'index': 108, 'word': 'Ed', 'start': 316, 'end': 318}, {'entity': 'I-PER', 'score': 0.99947995, 'index': 109, 'word': '##berg', 'start': 318, 'end': 322}, {'entity': 'I-MISC', 'score': 0.99814343, 'index': 116, 'word': 'Open', 'start': 343, 'end': 347}, {'entity': 'I-PER', 'score': 0.99975055, 'index': 127, 'word': 'Ka', 'start': 403, 'end': 405}, {'entity': 'I-PER', 'score': 0.9828279, 'index': 128, 'word': '##rb', 'start': 405, 'end': 407}, {'entity': 'I-PER', 'score': 0.99734205, 'index': 129, 'word': '##acher', 'start': 407, 'end': 412}, {'entity': 'I-MISC', 'score': 0.9990663, 'index': 132, 'word': 'German', 'start': 422, 'end': 428}, {'entity': 'I-LOC', 'score': 0.9957698, 'index': 156, 'word': 'National', 'start': 531, 'end': 539}, {'entity': 'I-LOC', 'score': 0.996163, 'index': 157, 'word': 'Tennis', 'start': 540, 'end': 546}, {'entity': 'I-LOC', 'score': 0.9967424, 'index': 158, 'word': 'Centre', 'start': 547, 'end': 553}, {'entity': 'I-PER', 'score': 0.9996946, 'index': 182, 'word': 'Ed', 'start': 603, 'end': 605}, {'entity': 'I-PER', 'score': 0.99924135, 'index': 183, 'word': '##berg', 'start': 605, 'end': 609}, {'entity': 'I-MISC', 'score': 0.9932783, 'index': 194, 'word': 'Grand', 'start': 657, 'end': 662}, {'entity': 'I-MISC', 'score': 0.99851507, 'index': 195, 'word': 'Slam', 'start': 663, 'end': 667}, {'entity': 'I-PER', 'score': 0.9997904, 'index': 222, 'word': 'Ka', 'start': 732, 'end': 734}, {'entity': 'I-PER', 'score': 0.9918395, 'index': 223, 'word': '##rb', 'start': 734, 'end': 736}, {'entity': 'I-PER', 'score': 0.99802077, 'index': 224, 'word': '##acher', 'start': 736, 'end': 741}, {'entity': 'I-PER', 'score': 0.9996934, 'index': 229, 'word': 'Ivan', 'start': 762, 'end': 766}, {'entity': 'I-PER', 'score': 0.999321, 'index': 230, 'word': 'Len', 'start': 767, 'end': 770}, {'entity': 'I-PER', 'score': 0.99856144, 'index': 231, 'word': '##dl', 'start': 770, 'end': 772}, {'entity': 'I-MISC', 'score': 0.9936885, 'index': 234, 'word': 'Grand', 'start': 776, 'end': 781}, {'entity': 'I-MISC', 'score': 0.9983157, 'index': 235, 'word': 'Slam', 'start': 782, 'end': 786}, {'entity': 'I-PER', 'score': 0.9994892, 'index': 271, 'word': 'Ed', 'start': 945, 'end': 947}, {'entity': 'I-PER', 'score': 0.9938816, 'index': 272, 'word': '##berg', 'start': 947, 'end': 951}, {'entity': 'I-PER', 'score': 0.9996747, 'index': 277, 'word': 'Ka', 'start': 973, 'end': 975}, {'entity': 'I-PER', 'score': 0.94975185, 'index': 278, 'word': '##rb', 'start': 975, 'end': 977}, {'entity': 'I-PER', 'score': 0.9905336, 'index': 279, 'word': '##acher', 'start': 977, 'end': 982}, {'entity': 'I-PER', 'score': 0.9995571, 'index': 302, 'word': 'Ed', 'start': 1059, 'end': 1061}, {'entity': 'I-PER', 'score': 0.9929073, 'index': 303, 'word': '##berg', 'start': 1061, 'end': 1065}, {'entity': 'I-PER', 'score': 0.99958545, 'index': 324, 'word': 'Ed', 'start': 1116, 'end': 1118}, {'entity': 'I-PER', 'score': 0.99826294, 'index': 325, 'word': '##berg', 'start': 1118, 'end': 1122}, {'entity': 'I-MISC', 'score': 0.99773526, 'index': 336, 'word': 'S', 'start': 1170, 'end': 1171}, {'entity': 'I-MISC', 'score': 0.9963666, 'index': 337, 'word': '##wed', 'start': 1171, 'end': 1174}, {'entity': 'I-MISC', 'score': 0.8957057, 'index': 338, 'word': '##e', 'start': 1174, 'end': 1175}, {'entity': 'I-PER', 'score': 0.9996631, 'index': 352, 'word': 'Ka', 'start': 1239, 'end': 1241}, {'entity': 'I-PER', 'score': 0.9677833, 'index': 353, 'word': '##rb', 'start': 1241, 'end': 1243}, {'entity': 'I-PER', 'score': 0.9910779, 'index': 354, 'word': '##acher', 'start': 1243, 'end': 1248}, {'entity': 'I-PER', 'score': 0.9994265, 'index': 399, 'word': 'Ed', 'start': 1429, 'end': 1431}, {'entity': 'I-PER', 'score': 0.97051346, 'index': 400, 'word': '##berg', 'start': 1431, 'end': 1435}, {'entity': 'I-MISC', 'score': 0.9982822, 'index': 404, 'word': 'Wimbledon', 'start': 1448, 'end': 1457}, {'entity': 'I-PER', 'score': 0.9995402, 'index': 410, 'word': 'Richard', 'start': 1484, 'end': 1491}, {'entity': 'I-PER', 'score': 0.97546446, 'index': 422, 'word': 'S', 'start': 1524, 'end': 1525}, {'entity': 'I-PER', 'score': 0.96534014, 'index': 445, 'word': 'S', 'start': 1602, 'end': 1603}, {'entity': 'I-PER', 'score': 0.994557, 'index': 456, 'word': 'S', 'start': 1631, 'end': 1632}, {'entity': 'I-PER', 'score': 0.9994222, 'index': 458, 'word': 'Ed', 'start': 1634, 'end': 1636}, {'entity': 'I-PER', 'score': 0.9816528, 'index': 459, 'word': '##berg', 'start': 1636, 'end': 1640}, {'entity': 'I-PER', 'score': 0.99359846, 'index': 473, 'word': 'S', 'start': 1684, 'end': 1685}, {'entity': 'I-PER', 'score': 0.99938977, 'index': 475, 'word': 'Ed', 'start': 1687, 'end': 1689}, {'entity': 'I-PER', 'score': 0.98326343, 'index': 476, 'word': '##berg', 'start': 1689, 'end': 1693}, {'entity': 'I-PER', 'score': 0.9883885, 'index': 503, 'word': 'S', 'start': 1798, 'end': 1799}]
[{'entity': 'I-ORG', 'score': 0.75155, 'index': 16, 'word': 'W', 'start': 31, 'end': 32}, {'entity': 'I-ORG', 'score': 0.76675045, 'index': 17, 'word': '##BO', 'start': 32, 'end': 34}, {'entity': 'I-LOC', 'score': 0.9986172, 'index': 34, 'word': 'D', 'start': 62, 'end': 63}, {'entity': 'I-LOC', 'score': 0.99680185, 'index': 35, 'word': '##U', 'start': 63, 'end': 64}, {'entity': 'I-LOC', 'score': 0.98934513, 'index': 36, 'word': '##BL', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.99867874, 'index': 37, 'word': '##IN', 'start': 66, 'end': 68}, {'entity': 'I-LOC', 'score': 0.9997272, 'index': 47, 'word': 'Britain', 'start': 85, 'end': 92}, {'entity': 'I-PER', 'score': 0.99979097, 'index': 50, 'word': 'Na', 'start': 96, 'end': 98}, {'entity': 'I-PER', 'score': 0.999305, 'index': 51, 'word': '##see', 'start': 98, 'end': 101}, {'entity': 'I-PER', 'score': 0.99962926, 'index': 52, 'word': '##m', 'start': 101, 'end': 102}, {'entity': 'I-PER', 'score': 0.9997328, 'index': 53, 'word': 'Ham', 'start': 103, 'end': 106}, {'entity': 'I-PER', 'score': 0.9996476, 'index': 54, 'word': '##ed', 'start': 106, 'end': 108}, {'entity': 'I-ORG', 'score': 0.7862444, 'index': 57, 'word': 'W', 'start': 122, 'end': 123}, {'entity': 'I-ORG', 'score': 0.90353423, 'index': 58, 'word': '##BO', 'start': 123, 'end': 125}, {'entity': 'I-LOC', 'score': 0.9997907, 'index': 65, 'word': 'Mexico', 'start': 163, 'end': 169}, {'entity': 'I-PER', 'score': 0.99950767, 'index': 68, 'word': 'Manuel', 'start': 173, 'end': 179}, {'entity': 'I-PER', 'score': 0.9997124, 'index': 69, 'word': 'Medina', 'start': 180, 'end': 186}]
[{'entity': 'I-LOC', 'score': 0.9887918, 'index': 6, 'word': 'AU', 'start': 9, 'end': 11}, {'entity': 'I-LOC', 'score': 0.9133951, 'index': 7, 'word': '##ST', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.96884716, 'index': 8, 'word': '##RI', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.9506227, 'index': 9, 'word': '##A', 'start': 15, 'end': 16}, {'entity': 'I-LOC', 'score': 0.9349877, 'index': 16, 'word': '##OT', 'start': 28, 'end': 30}, {'entity': 'I-LOC', 'score': 0.92319685, 'index': 17, 'word': '##LA', 'start': 30, 'end': 32}, {'entity': 'I-LOC', 'score': 0.9840406, 'index': 18, 'word': '##ND', 'start': 32, 'end': 34}, {'entity': 'I-MISC', 'score': 0.99455184, 'index': 20, 'word': 'W', 'start': 38, 'end': 39}, {'entity': 'I-MISC', 'score': 0.9493711, 'index': 21, 'word': '##OR', 'start': 39, 'end': 41}, {'entity': 'I-MISC', 'score': 0.99814546, 'index': 22, 'word': '##LD', 'start': 41, 'end': 43}, {'entity': 'I-MISC', 'score': 0.9831202, 'index': 23, 'word': 'C', 'start': 44, 'end': 45}, {'entity': 'I-MISC', 'score': 0.9945498, 'index': 24, 'word': '##UP', 'start': 45, 'end': 47}, {'entity': 'I-PER', 'score': 0.9995383, 'index': 36, 'word': 'Steve', 'start': 65, 'end': 70}, {'entity': 'I-PER', 'score': 0.99915576, 'index': 37, 'word': 'Pa', 'start': 71, 'end': 73}, {'entity': 'I-PER', 'score': 0.9546222, 'index': 38, 'word': '##gan', 'start': 73, 'end': 76}, {'entity': 'I-PER', 'score': 0.99100655, 'index': 39, 'word': '##i', 'start': 76, 'end': 77}, {'entity': 'I-LOC', 'score': 0.9983742, 'index': 44, 'word': 'VI', 'start': 83, 'end': 85}, {'entity': 'I-LOC', 'score': 0.9343251, 'index': 45, 'word': '##EN', 'start': 85, 'end': 87}, {'entity': 'I-LOC', 'score': 0.9964773, 'index': 46, 'word': '##NA', 'start': 87, 'end': 89}, {'entity': 'I-LOC', 'score': 0.9996718, 'index': 56, 'word': 'Austria', 'start': 106, 'end': 113}, {'entity': 'I-MISC', 'score': 0.9918616, 'index': 59, 'word': 'World', 'start': 130, 'end': 135}, {'entity': 'I-MISC', 'score': 0.99895823, 'index': 60, 'word': 'Cup', 'start': 136, 'end': 139}, {'entity': 'I-LOC', 'score': 0.99979705, 'index': 65, 'word': 'Scotland', 'start': 169, 'end': 177}, {'entity': 'I-LOC', 'score': 0.9997168, 'index': 97, 'word': 'Scotland', 'start': 319, 'end': 327}, {'entity': 'I-LOC', 'score': 0.99973637, 'index': 103, 'word': 'Belarus', 'start': 343, 'end': 350}, {'entity': 'I-LOC', 'score': 0.99964774, 'index': 125, 'word': 'Austria', 'start': 438, 'end': 445}, {'entity': 'I-PER', 'score': 0.999752, 'index': 137, 'word': 'Stephan', 'start': 490, 'end': 497}, {'entity': 'I-PER', 'score': 0.9997367, 'index': 138, 'word': 'Mara', 'start': 498, 'end': 502}, {'entity': 'I-PER', 'score': 0.9981351, 'index': 139, 'word': '##se', 'start': 502, 'end': 504}, {'entity': 'I-PER', 'score': 0.99888843, 'index': 140, 'word': '##k', 'start': 504, 'end': 505}, {'entity': 'I-ORG', 'score': 0.9992743, 'index': 142, 'word': 'SC', 'start': 509, 'end': 511}, {'entity': 'I-ORG', 'score': 0.99934596, 'index': 143, 'word': 'Freiburg', 'start': 512, 'end': 520}, {'entity': 'I-MISC', 'score': 0.99912685, 'index': 154, 'word': 'Scottish', 'start': 559, 'end': 567}, {'entity': 'I-PER', 'score': 0.9997342, 'index': 190, 'word': 'Markus', 'start': 732, 'end': 738}, {'entity': 'I-PER', 'score': 0.99981505, 'index': 191, 'word': 'Sc', 'start': 739, 'end': 741}, {'entity': 'I-PER', 'score': 0.99743086, 'index': 192, 'word': '##hop', 'start': 741, 'end': 744}, {'entity': 'I-PER', 'score': 0.9927759, 'index': 193, 'word': '##p', 'start': 744, 'end': 745}, {'entity': 'I-ORG', 'score': 0.99958414, 'index': 205, 'word': 'Everton', 'start': 778, 'end': 785}, {'entity': 'I-PER', 'score': 0.99970156, 'index': 208, 'word': 'Duncan', 'start': 789, 'end': 795}, {'entity': 'I-PER', 'score': 0.9998299, 'index': 209, 'word': 'Ferguson', 'start': 796, 'end': 804}, {'entity': 'I-LOC', 'score': 0.99977237, 'index': 213, 'word': 'Scotland', 'start': 820, 'end': 828}, {'entity': 'I-MISC', 'score': 0.9989569, 'index': 222, 'word': 'Austrian', 'start': 863, 'end': 871}, {'entity': 'I-PER', 'score': 0.9997634, 'index': 224, 'word': 'Michael', 'start': 883, 'end': 890}, {'entity': 'I-PER', 'score': 0.9997701, 'index': 225, 'word': 'Ko', 'start': 891, 'end': 893}, {'entity': 'I-PER', 'score': 0.99921215, 'index': 226, 'word': '##nse', 'start': 893, 'end': 896}, {'entity': 'I-PER', 'score': 0.99250484, 'index': 227, 'word': '##l', 'start': 896, 'end': 897}, {'entity': 'I-LOC', 'score': 0.9994646, 'index': 238, 'word': 'Scotland', 'start': 926, 'end': 934}, {'entity': 'I-PER', 'score': 0.9997272, 'index': 246, 'word': 'Gary', 'start': 977, 'end': 981}, {'entity': 'I-PER', 'score': 0.99979705, 'index': 247, 'word': 'M', 'start': 982, 'end': 983}, {'entity': 'I-PER', 'score': 0.9978156, 'index': 248, 'word': '##c', 'start': 983, 'end': 984}, {'entity': 'I-PER', 'score': 0.99925905, 'index': 249, 'word': '##A', 'start': 984, 'end': 985}, {'entity': 'I-PER', 'score': 0.9995735, 'index': 250, 'word': '##llister', 'start': 985, 'end': 992}, {'entity': 'I-PER', 'score': 0.9997664, 'index': 254, 'word': 'Andreas', 'start': 1011, 'end': 1018}, {'entity': 'I-PER', 'score': 0.99908304, 'index': 255, 'word': 'Her', 'start': 1019, 'end': 1022}, {'entity': 'I-PER', 'score': 0.98527735, 'index': 256, 'word': '##af', 'start': 1022, 'end': 1024}, {'entity': 'I-PER', 'score': 0.99978834, 'index': 258, 'word': 'Ferguson', 'start': 1029, 'end': 1037}, {'entity': 'I-MISC', 'score': 0.99708277, 'index': 279, 'word': 'Scottish', 'start': 1120, 'end': 1128}, {'entity': 'I-PER', 'score': 0.9997044, 'index': 281, 'word': 'Craig', 'start': 1135, 'end': 1140}, {'entity': 'I-PER', 'score': 0.9998098, 'index': 282, 'word': 'Brown', 'start': 1141, 'end': 1146}, {'entity': 'I-MISC', 'score': 0.9984139, 'index': 309, 'word': 'Austrian', 'start': 1239, 'end': 1247}, {'entity': 'I-ORG', 'score': 0.9981602, 'index': 321, 'word': 'SK', 'start': 1285, 'end': 1287}, {'entity': 'I-ORG', 'score': 0.9993024, 'index': 322, 'word': 'Rapid', 'start': 1288, 'end': 1293}, {'entity': 'I-PER', 'score': 0.9997712, 'index': 325, 'word': 'Diet', 'start': 1297, 'end': 1301}, {'entity': 'I-PER', 'score': 0.999754, 'index': 326, 'word': '##mar', 'start': 1301, 'end': 1304}, {'entity': 'I-PER', 'score': 0.9996673, 'index': 327, 'word': 'Ku', 'start': 1305, 'end': 1307}, {'entity': 'I-PER', 'score': 0.9859443, 'index': 328, 'word': '##eh', 'start': 1307, 'end': 1309}, {'entity': 'I-PER', 'score': 0.8445006, 'index': 329, 'word': '##ba', 'start': 1309, 'end': 1311}, {'entity': 'I-PER', 'score': 0.957609, 'index': 330, 'word': '##uer', 'start': 1311, 'end': 1314}, {'entity': 'I-PER', 'score': 0.99761885, 'index': 385, 'word': 'S', 'start': 1541, 'end': 1542}, {'entity': 'I-MISC', 'score': 0.8835252, 'index': 388, 'word': 'Scots', 'start': 1548, 'end': 1553}, {'entity': 'I-PER', 'score': 0.9985526, 'index': 407, 'word': 'S', 'start': 1621, 'end': 1622}, {'entity': 'I-MISC', 'score': 0.9960418, 'index': 409, 'word': 'Austrian', 'start': 1624, 'end': 1632}, {'entity': 'I-PER', 'score': 0.99966466, 'index': 411, 'word': 'Herbert', 'start': 1639, 'end': 1646}, {'entity': 'I-PER', 'score': 0.99847263, 'index': 412, 'word': 'Pro', 'start': 1647, 'end': 1650}, {'entity': 'I-PER', 'score': 0.9826932, 'index': 413, 'word': '##has', 'start': 1650, 'end': 1653}, {'entity': 'I-PER', 'score': 0.96124804, 'index': 414, 'word': '##ka', 'start': 1653, 'end': 1655}, {'entity': 'I-PER', 'score': 0.99795866, 'index': 430, 'word': 'S', 'start': 1737, 'end': 1738}, {'entity': 'I-PER', 'score': 0.9978661, 'index': 436, 'word': 'S', 'start': 1750, 'end': 1751}, {'entity': 'I-LOC', 'score': 0.9986946, 'index': 438, 'word': 'Austria', 'start': 1753, 'end': 1760}, {'entity': 'I-PER', 'score': 0.99968946, 'index': 440, 'word': 'Michael', 'start': 1763, 'end': 1770}, {'entity': 'I-PER', 'score': 0.99941635, 'index': 441, 'word': 'Ko', 'start': 1771, 'end': 1773}, {'entity': 'I-PER', 'score': 0.99729985, 'index': 442, 'word': '##nse', 'start': 1773, 'end': 1776}, {'entity': 'I-PER', 'score': 0.85764325, 'index': 443, 'word': '##l', 'start': 1776, 'end': 1777}, {'entity': 'I-PER', 'score': 0.99969673, 'index': 445, 'word': 'Markus', 'start': 1780, 'end': 1786}, {'entity': 'I-PER', 'score': 0.9993395, 'index': 446, 'word': 'Sc', 'start': 1787, 'end': 1789}, {'entity': 'I-PER', 'score': 0.9967269, 'index': 447, 'word': '##hop', 'start': 1789, 'end': 1792}, {'entity': 'I-PER', 'score': 0.7423316, 'index': 448, 'word': '##p', 'start': 1792, 'end': 1793}, {'entity': 'I-PER', 'score': 0.99968445, 'index': 450, 'word': 'Peter', 'start': 1796, 'end': 1801}, {'entity': 'I-PER', 'score': 0.9992009, 'index': 451, 'word': 'Sc', 'start': 1802, 'end': 1804}, {'entity': 'I-PER', 'score': 0.99401313, 'index': 452, 'word': '##hoe', 'start': 1804, 'end': 1807}, {'entity': 'I-PER', 'score': 0.92956907, 'index': 453, 'word': '##tte', 'start': 1807, 'end': 1810}, {'entity': 'I-PER', 'score': 0.90468454, 'index': 454, 'word': '##l', 'start': 1810, 'end': 1811}, {'entity': 'I-PER', 'score': 0.9996748, 'index': 456, 'word': 'Anton', 'start': 1814, 'end': 1819}, {'entity': 'I-PER', 'score': 0.99702257, 'index': 457, 'word': 'P', 'start': 1820, 'end': 1821}, {'entity': 'I-PER', 'score': 0.99694926, 'index': 458, 'word': '##fe', 'start': 1821, 'end': 1823}, {'entity': 'I-PER', 'score': 0.9976, 'index': 459, 'word': '##ffer', 'start': 1823, 'end': 1827}, {'entity': 'I-PER', 'score': 0.9996921, 'index': 461, 'word': 'Wolfgang', 'start': 1830, 'end': 1838}, {'entity': 'I-PER', 'score': 0.9993333, 'index': 462, 'word': 'Fe', 'start': 1839, 'end': 1841}, {'entity': 'I-PER', 'score': 0.614271, 'index': 463, 'word': '##iers', 'start': 1841, 'end': 1845}, {'entity': 'I-PER', 'score': 0.9069145, 'index': 464, 'word': '##inger', 'start': 1845, 'end': 1850}, {'entity': 'I-PER', 'score': 0.9997669, 'index': 466, 'word': 'Stephan', 'start': 1853, 'end': 1860}, {'entity': 'I-PER', 'score': 0.9993656, 'index': 467, 'word': 'Mara', 'start': 1861, 'end': 1865}, {'entity': 'I-PER', 'score': 0.98590845, 'index': 468, 'word': '##se', 'start': 1865, 'end': 1867}, {'entity': 'I-PER', 'score': 0.9406837, 'index': 469, 'word': '##k', 'start': 1867, 'end': 1868}, {'entity': 'I-PER', 'score': 0.999699, 'index': 471, 'word': 'Diet', 'start': 1871, 'end': 1875}, {'entity': 'I-PER', 'score': 0.85179317, 'index': 472, 'word': '##er', 'start': 1875, 'end': 1877}, {'entity': 'I-PER', 'score': 0.9995061, 'index': 473, 'word': 'Ram', 'start': 1878, 'end': 1881}, {'entity': 'I-PER', 'score': 0.7934781, 'index': 474, 'word': '##us', 'start': 1881, 'end': 1883}, {'entity': 'I-PER', 'score': 0.93367636, 'index': 475, 'word': '##ch', 'start': 1883, 'end': 1885}, {'entity': 'I-PER', 'score': 0.9997061, 'index': 477, 'word': 'Andreas', 'start': 1888, 'end': 1895}, {'entity': 'I-PER', 'score': 0.9961086, 'index': 478, 'word': 'O', 'start': 1896, 'end': 1897}, {'entity': 'I-PER', 'score': 0.9339034, 'index': 479, 'word': '##g', 'start': 1897, 'end': 1898}, {'entity': 'I-PER', 'score': 0.9930661, 'index': 480, 'word': '##ris', 'start': 1898, 'end': 1901}, {'entity': 'I-PER', 'score': 0.99970466, 'index': 485, 'word': 'Diet', 'start': 1911, 'end': 1915}, {'entity': 'I-PER', 'score': 0.9997199, 'index': 486, 'word': '##mar', 'start': 1915, 'end': 1918}, {'entity': 'I-PER', 'score': 0.999466, 'index': 487, 'word': 'Ku', 'start': 1919, 'end': 1921}, {'entity': 'I-PER', 'score': 0.67240256, 'index': 488, 'word': '##eh', 'start': 1921, 'end': 1923}, {'entity': 'I-PER', 'score': 0.98828006, 'index': 489, 'word': '##ba', 'start': 1923, 'end': 1925}, {'entity': 'I-PER', 'score': 0.8943115, 'index': 490, 'word': '##uer', 'start': 1925, 'end': 1928}, {'entity': 'I-PER', 'score': 0.9996798, 'index': 492, 'word': 'Anton', 'start': 1931, 'end': 1936}, {'entity': 'I-PER', 'score': 0.9992465, 'index': 493, 'word': 'Pol', 'start': 1937, 'end': 1940}, {'entity': 'I-PER', 'score': 0.8528287, 'index': 494, 'word': '##ster', 'start': 1940, 'end': 1944}, {'entity': 'I-PER', 'score': 0.999418, 'index': 497, 'word': 'Her', 'start': 1949, 'end': 1952}, {'entity': 'I-PER', 'score': 0.9991997, 'index': 498, 'word': '##fried', 'start': 1952, 'end': 1957}, {'entity': 'I-PER', 'score': 0.99776316, 'index': 499, 'word': 'Sa', 'start': 1958, 'end': 1960}, {'entity': 'I-PER', 'score': 0.71734744, 'index': 500, 'word': '##bit', 'start': 1960, 'end': 1963}, {'entity': 'I-PER', 'score': 0.8534572, 'index': 501, 'word': '##zer', 'start': 1963, 'end': 1966}, {'entity': 'I-PER', 'score': 0.66254485, 'index': 503, 'word': '##th', 'start': 1969, 'end': 1971}, {'entity': 'I-PER', 'score': 0.9997243, 'index': 506, 'word': 'Andreas', 'start': 1976, 'end': 1983}, {'entity': 'I-PER', 'score': 0.999424, 'index': 507, 'word': 'Her', 'start': 1984, 'end': 1987}, {'entity': 'I-PER', 'score': 0.9731084, 'index': 508, 'word': '##zo', 'start': 1987, 'end': 1989}, {'entity': 'I-PER', 'score': 0.934161, 'index': 509, 'word': '##g', 'start': 1989, 'end': 1990}]
[{'entity': 'I-PER', 'score': 0.9978242, 'index': 5, 'word': 'J', 'start': 9, 'end': 10}, {'entity': 'I-PER', 'score': 0.97095877, 'index': 6, 'word': '##OH', 'start': 10, 'end': 12}, {'entity': 'I-PER', 'score': 0.93672025, 'index': 7, 'word': '##NS', 'start': 12, 'end': 14}, {'entity': 'I-PER', 'score': 0.981573, 'index': 8, 'word': '##ON', 'start': 14, 'end': 16}, {'entity': 'I-MISC', 'score': 0.9966343, 'index': 12, 'word': 'UN', 'start': 22, 'end': 24}, {'entity': 'I-MISC', 'score': 0.98479664, 'index': 13, 'word': '##AN', 'start': 24, 'end': 26}, {'entity': 'I-MISC', 'score': 0.9553525, 'index': 14, 'word': '##IM', 'start': 26, 'end': 28}, {'entity': 'I-MISC', 'score': 0.8579492, 'index': 15, 'word': '##O', 'start': 28, 'end': 29}, {'entity': 'I-LOC', 'score': 0.9984505, 'index': 31, 'word': 'D', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.99378514, 'index': 32, 'word': '##U', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.98097205, 'index': 33, 'word': '##BL', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.99773103, 'index': 34, 'word': '##IN', 'start': 59, 'end': 61}, {'entity': 'I-MISC', 'score': 0.9988115, 'index': 44, 'word': 'American', 'start': 78, 'end': 86}, {'entity': 'I-PER', 'score': 0.99973494, 'index': 45, 'word': 'Tom', 'start': 87, 'end': 90}, {'entity': 'I-PER', 'score': 0.99985385, 'index': 46, 'word': 'Johnson', 'start': 91, 'end': 98}, {'entity': 'I-ORG', 'score': 0.91017425, 'index': 50, 'word': 'I', 'start': 125, 'end': 126}, {'entity': 'I-ORG', 'score': 0.9782762, 'index': 51, 'word': '##BF', 'start': 126, 'end': 128}, {'entity': 'I-LOC', 'score': 0.9998036, 'index': 63, 'word': 'Venezuela', 'start': 197, 'end': 206}, {'entity': 'I-PER', 'score': 0.99939024, 'index': 66, 'word': 'Ramon', 'start': 210, 'end': 215}, {'entity': 'I-PER', 'score': 0.9991328, 'index': 67, 'word': 'G', 'start': 216, 'end': 217}, {'entity': 'I-PER', 'score': 0.99345934, 'index': 68, 'word': '##uz', 'start': 217, 'end': 219}, {'entity': 'I-PER', 'score': 0.99937254, 'index': 69, 'word': '##man', 'start': 219, 'end': 222}]
[{'entity': 'I-MISC', 'score': 0.947061, 'index': 6, 'word': 'F', 'start': 9, 'end': 10}, {'entity': 'I-MISC', 'score': 0.43565917, 'index': 7, 'word': '##RA', 'start': 10, 'end': 12}, {'entity': 'I-MISC', 'score': 0.9007727, 'index': 13, 'word': '1998', 'start': 23, 'end': 27}, {'entity': 'I-MISC', 'score': 0.99035054, 'index': 14, 'word': 'W', 'start': 28, 'end': 29}, {'entity': 'I-MISC', 'score': 0.7245268, 'index': 15, 'word': '##OR', 'start': 29, 'end': 31}, {'entity': 'I-MISC', 'score': 0.99709976, 'index': 16, 'word': '##LD', 'start': 31, 'end': 33}, {'entity': 'I-MISC', 'score': 0.98533046, 'index': 17, 'word': 'C', 'start': 34, 'end': 35}, {'entity': 'I-MISC', 'score': 0.8908592, 'index': 18, 'word': '##UP', 'start': 35, 'end': 37}, {'entity': 'I-LOC', 'score': 0.9971998, 'index': 37, 'word': 'PA', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.97279876, 'index': 38, 'word': '##RI', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.9979876, 'index': 39, 'word': '##S', 'start': 71, 'end': 72}, {'entity': 'I-MISC', 'score': 0.9982887, 'index': 49, 'word': 'Euro', 'start': 89, 'end': 93}, {'entity': 'I-MISC', 'score': 0.9981185, 'index': 50, 'word': '96', 'start': 94, 'end': 96}, {'entity': 'I-PER', 'score': 0.9995939, 'index': 53, 'word': 'Nicolas', 'start': 106, 'end': 113}, {'entity': 'I-PER', 'score': 0.9995658, 'index': 54, 'word': 'O', 'start': 114, 'end': 115}, {'entity': 'I-PER', 'score': 0.98996896, 'index': 55, 'word': '##ued', 'start': 115, 'end': 118}, {'entity': 'I-PER', 'score': 0.99668616, 'index': 56, 'word': '##ec', 'start': 118, 'end': 120}, {'entity': 'I-PER', 'score': 0.9985876, 'index': 58, 'word': 'Your', 'start': 125, 'end': 129}, {'entity': 'I-PER', 'score': 0.9990798, 'index': 59, 'word': '##i', 'start': 129, 'end': 130}, {'entity': 'I-PER', 'score': 0.9995963, 'index': 60, 'word': 'D', 'start': 131, 'end': 132}, {'entity': 'I-PER', 'score': 0.99467057, 'index': 61, 'word': '##jo', 'start': 132, 'end': 134}, {'entity': 'I-PER', 'score': 0.98351395, 'index': 62, 'word': '##rka', 'start': 134, 'end': 137}, {'entity': 'I-PER', 'score': 0.7468842, 'index': 63, 'word': '##ef', 'start': 137, 'end': 139}, {'entity': 'I-PER', 'score': 0.9883151, 'index': 64, 'word': '##f', 'start': 139, 'end': 140}, {'entity': 'I-MISC', 'score': 0.9924838, 'index': 70, 'word': 'World', 'start': 166, 'end': 171}, {'entity': 'I-MISC', 'score': 0.99900466, 'index': 71, 'word': 'Cup', 'start': 172, 'end': 175}, {'entity': 'I-LOC', 'score': 0.9996055, 'index': 73, 'word': 'France', 'start': 182, 'end': 188}, {'entity': 'I-LOC', 'score': 0.9997204, 'index': 75, 'word': 'Mexico', 'start': 194, 'end': 200}, {'entity': 'I-LOC', 'score': 0.9992574, 'index': 96, 'word': 'France', 'start': 287, 'end': 293}, {'entity': 'I-PER', 'score': 0.99940753, 'index': 103, 'word': 'Ai', 'start': 322, 'end': 324}, {'entity': 'I-PER', 'score': 0.99958926, 'index': 104, 'word': '##me', 'start': 324, 'end': 326}, {'entity': 'I-PER', 'score': 0.99973387, 'index': 105, 'word': 'J', 'start': 327, 'end': 328}, {'entity': 'I-PER', 'score': 0.9949846, 'index': 106, 'word': '##ac', 'start': 328, 'end': 330}, {'entity': 'I-PER', 'score': 0.99949646, 'index': 107, 'word': '##quet', 'start': 330, 'end': 334}, {'entity': 'I-MISC', 'score': 0.99809116, 'index': 110, 'word': 'Euro', 'start': 343, 'end': 347}, {'entity': 'I-MISC', 'score': 0.99765235, 'index': 111, 'word': '96', 'start': 348, 'end': 350}, {'entity': 'I-ORG', 'score': 0.99933857, 'index': 132, 'word': 'Chelsea', 'start': 447, 'end': 454}, {'entity': 'I-PER', 'score': 0.9994393, 'index': 135, 'word': 'Fr', 'start': 472, 'end': 474}, {'entity': 'I-PER', 'score': 0.944617, 'index': 136, 'word': '##an', 'start': 474, 'end': 476}, {'entity': 'I-PER', 'score': 0.9995105, 'index': 137, 'word': '##ck', 'start': 476, 'end': 478}, {'entity': 'I-PER', 'score': 0.9996284, 'index': 138, 'word': 'Le', 'start': 479, 'end': 481}, {'entity': 'I-PER', 'score': 0.9661384, 'index': 139, 'word': '##boe', 'start': 481, 'end': 484}, {'entity': 'I-PER', 'score': 0.99360305, 'index': 140, 'word': '##uf', 'start': 484, 'end': 486}, {'entity': 'I-PER', 'score': 0.99958044, 'index': 146, 'word': 'Le', 'start': 494, 'end': 496}, {'entity': 'I-PER', 'score': 0.9873946, 'index': 147, 'word': '##boe', 'start': 496, 'end': 499}, {'entity': 'I-PER', 'score': 0.97265697, 'index': 148, 'word': '##uf', 'start': 499, 'end': 501}, {'entity': 'I-MISC', 'score': 0.99862826, 'index': 164, 'word': 'Mexican', 'start': 578, 'end': 585}, {'entity': 'I-PER', 'score': 0.999624, 'index': 166, 'word': 'Ricardo', 'start': 597, 'end': 604}, {'entity': 'I-PER', 'score': 0.99951017, 'index': 167, 'word': 'P', 'start': 605, 'end': 606}, {'entity': 'I-PER', 'score': 0.98442334, 'index': 168, 'word': '##ela', 'start': 606, 'end': 609}, {'entity': 'I-PER', 'score': 0.9987984, 'index': 169, 'word': '##ez', 'start': 609, 'end': 611}, {'entity': 'I-ORG', 'score': 0.9990464, 'index': 183, 'word': 'Chelsea', 'start': 684, 'end': 691}, {'entity': 'I-LOC', 'score': 0.999731, 'index': 202, 'word': 'France', 'start': 767, 'end': 773}, {'entity': 'I-MISC', 'score': 0.99782676, 'index': 206, 'word': 'Mexican', 'start': 792, 'end': 799}, {'entity': 'I-LOC', 'score': 0.99972755, 'index': 228, 'word': 'France', 'start': 872, 'end': 878}, {'entity': 'I-ORG', 'score': 0.99950314, 'index': 238, 'word': 'Juventus', 'start': 936, 'end': 944}, {'entity': 'I-PER', 'score': 0.99959916, 'index': 241, 'word': 'Z', 'start': 948, 'end': 949}, {'entity': 'I-PER', 'score': 0.9992157, 'index': 242, 'word': '##ined', 'start': 949, 'end': 953}, {'entity': 'I-PER', 'score': 0.9995801, 'index': 243, 'word': '##ine', 'start': 953, 'end': 956}, {'entity': 'I-PER', 'score': 0.99960047, 'index': 244, 'word': 'Z', 'start': 957, 'end': 958}, {'entity': 'I-PER', 'score': 0.99022067, 'index': 245, 'word': '##ida', 'start': 958, 'end': 961}, {'entity': 'I-PER', 'score': 0.99872404, 'index': 246, 'word': '##ne', 'start': 961, 'end': 963}, {'entity': 'I-PER', 'score': 0.9995726, 'index': 254, 'word': 'D', 'start': 984, 'end': 985}, {'entity': 'I-PER', 'score': 0.9952024, 'index': 255, 'word': '##jo', 'start': 985, 'end': 987}, {'entity': 'I-PER', 'score': 0.9833332, 'index': 256, 'word': '##rka', 'start': 987, 'end': 990}, {'entity': 'I-PER', 'score': 0.9385125, 'index': 257, 'word': '##ef', 'start': 990, 'end': 992}, {'entity': 'I-PER', 'score': 0.9784339, 'index': 258, 'word': '##f', 'start': 992, 'end': 993}, {'entity': 'I-PER', 'score': 0.9992071, 'index': 271, 'word': 'O', 'start': 1051, 'end': 1052}, {'entity': 'I-PER', 'score': 0.9911187, 'index': 272, 'word': '##ued', 'start': 1052, 'end': 1055}, {'entity': 'I-PER', 'score': 0.98602736, 'index': 273, 'word': '##ec', 'start': 1055, 'end': 1057}, {'entity': 'I-ORG', 'score': 0.9983014, 'index': 278, 'word': 'E', 'start': 1075, 'end': 1076}, {'entity': 'I-ORG', 'score': 0.99775887, 'index': 279, 'word': '##span', 'start': 1076, 'end': 1080}, {'entity': 'I-ORG', 'score': 0.99761367, 'index': 280, 'word': '##yo', 'start': 1080, 'end': 1082}, {'entity': 'I-ORG', 'score': 0.99852884, 'index': 281, 'word': '##l', 'start': 1082, 'end': 1083}, {'entity': 'I-ORG', 'score': 0.998395, 'index': 283, 'word': 'Barcelona', 'start': 1087, 'end': 1096}, {'entity': 'I-ORG', 'score': 0.9693769, 'index': 285, 'word': 'Nan', 'start': 1102, 'end': 1105}, {'entity': 'I-ORG', 'score': 0.9694899, 'index': 286, 'word': '##tes', 'start': 1105, 'end': 1108}, {'entity': 'I-MISC', 'score': 0.9990395, 'index': 290, 'word': 'European', 'start': 1127, 'end': 1135}, {'entity': 'I-PER', 'score': 0.99950767, 'index': 303, 'word': 'Joaquin', 'start': 1212, 'end': 1219}, {'entity': 'I-PER', 'score': 0.998445, 'index': 304, 'word': 'del', 'start': 1220, 'end': 1223}, {'entity': 'I-PER', 'score': 0.9988097, 'index': 305, 'word': 'O', 'start': 1224, 'end': 1225}, {'entity': 'I-PER', 'score': 0.9812268, 'index': 306, 'word': '##lm', 'start': 1225, 'end': 1227}, {'entity': 'I-PER', 'score': 0.9929938, 'index': 307, 'word': '##o', 'start': 1227, 'end': 1228}, {'entity': 'I-PER', 'score': 0.99610484, 'index': 316, 'word': 'O', 'start': 1256, 'end': 1257}, {'entity': 'I-PER', 'score': 0.9358037, 'index': 317, 'word': '##ued', 'start': 1257, 'end': 1260}, {'entity': 'I-PER', 'score': 0.5611371, 'index': 318, 'word': '##ec', 'start': 1260, 'end': 1262}, {'entity': 'I-PER', 'score': 0.9994791, 'index': 324, 'word': 'D', 'start': 1296, 'end': 1297}, {'entity': 'I-PER', 'score': 0.99384403, 'index': 325, 'word': '##jo', 'start': 1297, 'end': 1299}, {'entity': 'I-PER', 'score': 0.9750082, 'index': 326, 'word': '##rka', 'start': 1299, 'end': 1302}, {'entity': 'I-PER', 'score': 0.86295974, 'index': 327, 'word': '##ef', 'start': 1302, 'end': 1304}, {'entity': 'I-PER', 'score': 0.9745792, 'index': 328, 'word': '##f', 'start': 1304, 'end': 1305}, {'entity': 'I-ORG', 'score': 0.9991586, 'index': 337, 'word': 'Inter', 'start': 1335, 'end': 1340}, {'entity': 'I-ORG', 'score': 0.9794891, 'index': 338, 'word': '##na', 'start': 1340, 'end': 1342}, {'entity': 'I-ORG', 'score': 0.99606246, 'index': 339, 'word': '##zio', 'start': 1342, 'end': 1345}, {'entity': 'I-ORG', 'score': 0.99889576, 'index': 340, 'word': '##nale', 'start': 1345, 'end': 1349}, {'entity': 'I-ORG', 'score': 0.99905246, 'index': 341, 'word': 'Milan', 'start': 1350, 'end': 1355}, {'entity': 'I-PER', 'score': 0.99954575, 'index': 357, 'word': 'O', 'start': 1434, 'end': 1435}, {'entity': 'I-PER', 'score': 0.9886873, 'index': 358, 'word': '##s', 'start': 1435, 'end': 1436}, {'entity': 'I-PER', 'score': 0.99876827, 'index': 359, 'word': '##val', 'start': 1436, 'end': 1439}, {'entity': 'I-PER', 'score': 0.9993963, 'index': 360, 'word': '##do', 'start': 1439, 'end': 1441}, {'entity': 'I-PER', 'score': 0.9996178, 'index': 361, 'word': 'Sanchez', 'start': 1442, 'end': 1449}, {'entity': 'I-PER', 'score': 0.99954, 'index': 367, 'word': 'J', 'start': 1457, 'end': 1458}, {'entity': 'I-PER', 'score': 0.9862135, 'index': 368, 'word': '##ac', 'start': 1458, 'end': 1460}, {'entity': 'I-PER', 'score': 0.99641305, 'index': 369, 'word': '##quet', 'start': 1460, 'end': 1464}, {'entity': 'I-LOC', 'score': 0.99969375, 'index': 379, 'word': 'France', 'start': 1503, 'end': 1509}, {'entity': 'I-ORG', 'score': 0.6695304, 'index': 385, 'word': 'World', 'start': 1528, 'end': 1533}, {'entity': 'I-MISC', 'score': 0.8409635, 'index': 386, 'word': 'Cup', 'start': 1534, 'end': 1537}, {'entity': 'I-ORG', 'score': 0.62474215, 'index': 392, 'word': 'We', 'start': 1556, 'end': 1558}, {'entity': 'I-ORG', 'score': 0.83471113, 'index': 412, 'word': 'S', 'start': 1626, 'end': 1627}, {'entity': 'I-ORG', 'score': 0.82629335, 'index': 418, 'word': 'S', 'start': 1639, 'end': 1640}, {'entity': 'I-LOC', 'score': 0.99722964, 'index': 420, 'word': 'France', 'start': 1642, 'end': 1648}, {'entity': 'I-PER', 'score': 0.99046296, 'index': 424, 'word': 'Bernard', 'start': 1655, 'end': 1662}, {'entity': 'I-PER', 'score': 0.9978064, 'index': 425, 'word': 'Lama', 'start': 1663, 'end': 1667}, {'entity': 'I-PER', 'score': 0.9899239, 'index': 429, 'word': 'Lil', 'start': 1674, 'end': 1677}, {'entity': 'I-ORG', 'score': 0.5664696, 'index': 430, 'word': '##ian', 'start': 1677, 'end': 1680}, {'entity': 'I-ORG', 'score': 0.47806972, 'index': 431, 'word': 'T', 'start': 1681, 'end': 1682}, {'entity': 'I-PER', 'score': 0.45826006, 'index': 432, 'word': '##hur', 'start': 1682, 'end': 1685}, {'entity': 'I-ORG', 'score': 0.72624743, 'index': 433, 'word': '##am', 'start': 1685, 'end': 1687}, {'entity': 'I-ORG', 'score': 0.6050543, 'index': 437, 'word': 'Sa', 'start': 1695, 'end': 1697}, {'entity': 'I-PER', 'score': 0.9636626, 'index': 438, 'word': '##bri', 'start': 1697, 'end': 1700}, {'entity': 'I-PER', 'score': 0.9817523, 'index': 439, 'word': 'Lam', 'start': 1701, 'end': 1704}, {'entity': 'I-ORG', 'score': 0.50124985, 'index': 440, 'word': '##ou', 'start': 1704, 'end': 1706}, {'entity': 'I-PER', 'score': 0.9332811, 'index': 441, 'word': '##chi', 'start': 1706, 'end': 1709}, {'entity': 'I-ORG', 'score': 0.4752326, 'index': 443, 'word': '##th', 'start': 1712, 'end': 1714}, {'entity': 'I-PER', 'score': 0.9986284, 'index': 448, 'word': 'Laurent', 'start': 1723, 'end': 1730}, {'entity': 'I-PER', 'score': 0.9693313, 'index': 449, 'word': 'Blanc', 'start': 1731, 'end': 1736}, {'entity': 'I-PER', 'score': 0.99110925, 'index': 453, 'word': 'Marcel', 'start': 1743, 'end': 1749}, {'entity': 'I-PER', 'score': 0.9903499, 'index': 454, 'word': 'Des', 'start': 1750, 'end': 1753}, {'entity': 'I-PER', 'score': 0.8783907, 'index': 455, 'word': '##ail', 'start': 1753, 'end': 1756}, {'entity': 'I-ORG', 'score': 0.6668007, 'index': 456, 'word': '##ly', 'start': 1756, 'end': 1758}, {'entity': 'I-ORG', 'score': 0.63373405, 'index': 460, 'word': 'Fr', 'start': 1766, 'end': 1768}, {'entity': 'I-ORG', 'score': 0.8768632, 'index': 461, 'word': '##an', 'start': 1768, 'end': 1770}, {'entity': 'I-ORG', 'score': 0.4855656, 'index': 462, 'word': '##ck', 'start': 1770, 'end': 1772}, {'entity': 'I-PER', 'score': 0.5654161, 'index': 463, 'word': 'Le', 'start': 1773, 'end': 1775}, {'entity': 'I-PER', 'score': 0.43926635, 'index': 464, 'word': '##boe', 'start': 1775, 'end': 1778}, {'entity': 'I-PER', 'score': 0.56976634, 'index': 465, 'word': '##uf', 'start': 1778, 'end': 1780}, {'entity': 'I-ORG', 'score': 0.58507717, 'index': 467, 'word': '##th', 'start': 1783, 'end': 1785}, {'entity': 'I-ORG', 'score': 0.6999413, 'index': 472, 'word': 'B', 'start': 1794, 'end': 1795}, {'entity': 'I-ORG', 'score': 0.88725555, 'index': 473, 'word': '##ix', 'start': 1795, 'end': 1797}, {'entity': 'I-ORG', 'score': 0.83767474, 'index': 474, 'word': '##ente', 'start': 1797, 'end': 1801}, {'entity': 'I-PER', 'score': 0.99778444, 'index': 475, 'word': 'Liza', 'start': 1802, 'end': 1806}, {'entity': 'I-PER', 'score': 0.70843405, 'index': 476, 'word': '##raz', 'start': 1806, 'end': 1809}, {'entity': 'I-ORG', 'score': 0.80777603, 'index': 477, 'word': '##u', 'start': 1809, 'end': 1810}, {'entity': 'I-PER', 'score': 0.999406, 'index': 481, 'word': 'Christian', 'start': 1817, 'end': 1826}, {'entity': 'I-PER', 'score': 0.76609993, 'index': 482, 'word': 'Ka', 'start': 1827, 'end': 1829}, {'entity': 'I-ORG', 'score': 0.7464912, 'index': 483, 'word': '##rem', 'start': 1829, 'end': 1832}, {'entity': 'I-PER', 'score': 0.6640934, 'index': 484, 'word': '##be', 'start': 1832, 'end': 1834}, {'entity': 'I-ORG', 'score': 0.82912284, 'index': 485, 'word': '##u', 'start': 1834, 'end': 1835}, {'entity': 'I-ORG', 'score': 0.49898526, 'index': 489, 'word': 'Did', 'start': 1842, 'end': 1845}, {'entity': 'I-PER', 'score': 0.5260652, 'index': 490, 'word': '##ier', 'start': 1845, 'end': 1848}, {'entity': 'I-PER', 'score': 0.9455138, 'index': 491, 'word': 'Des', 'start': 1849, 'end': 1852}, {'entity': 'I-PER', 'score': 0.8961336, 'index': 492, 'word': '##champ', 'start': 1852, 'end': 1857}, {'entity': 'I-ORG', 'score': 0.5930857, 'index': 497, 'word': 'Your', 'start': 1866, 'end': 1870}, {'entity': 'I-ORG', 'score': 0.80797124, 'index': 498, 'word': '##i', 'start': 1870, 'end': 1871}, {'entity': 'I-ORG', 'score': 0.6737645, 'index': 499, 'word': 'D', 'start': 1872, 'end': 1873}, {'entity': 'I-PER', 'score': 0.46124238, 'index': 500, 'word': '##jo', 'start': 1873, 'end': 1875}, {'entity': 'I-PER', 'score': 0.81116235, 'index': 501, 'word': '##rka', 'start': 1875, 'end': 1878}, {'entity': 'I-PER', 'score': 0.6407537, 'index': 502, 'word': '##ef', 'start': 1878, 'end': 1880}, {'entity': 'I-PER', 'score': 0.39085254, 'index': 503, 'word': '##f', 'start': 1880, 'end': 1881}, {'entity': 'I-PER', 'score': 0.9851586, 'index': 507, 'word': 'Rey', 'start': 1888, 'end': 1891}, {'entity': 'I-ORG', 'score': 0.65961653, 'index': 508, 'word': '##nal', 'start': 1891, 'end': 1894}, {'entity': 'I-ORG', 'score': 0.519961, 'index': 509, 'word': '##d', 'start': 1894, 'end': 1895}, {'entity': 'I-PER', 'score': 0.99956745, 'index': 510, 'word': 'Pedro', 'start': 1896, 'end': 1901}]
[{'entity': 'I-LOC', 'score': 0.6322673, 'index': 6, 'word': 'F', 'start': 9, 'end': 10}, {'entity': 'I-LOC', 'score': 0.90313464, 'index': 13, 'word': 'ME', 'start': 21, 'end': 23}, {'entity': 'I-LOC', 'score': 0.5930878, 'index': 14, 'word': '##X', 'start': 23, 'end': 24}, {'entity': 'I-ORG', 'score': 0.5374977, 'index': 15, 'word': '##IC', 'start': 24, 'end': 26}, {'entity': 'I-LOC', 'score': 0.51357263, 'index': 16, 'word': '##O', 'start': 26, 'end': 27}, {'entity': 'I-LOC', 'score': 0.99789584, 'index': 32, 'word': 'PA', 'start': 51, 'end': 53}, {'entity': 'I-LOC', 'score': 0.96312416, 'index': 33, 'word': '##RI', 'start': 53, 'end': 55}, {'entity': 'I-LOC', 'score': 0.99785656, 'index': 34, 'word': '##S', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9998017, 'index': 44, 'word': 'France', 'start': 73, 'end': 79}, {'entity': 'I-LOC', 'score': 0.9997336, 'index': 46, 'word': 'Mexico', 'start': 85, 'end': 91}, {'entity': 'I-PER', 'score': 0.9996662, 'index': 71, 'word': 'Nicolas', 'start': 177, 'end': 184}, {'entity': 'I-PER', 'score': 0.99960214, 'index': 72, 'word': 'O', 'start': 185, 'end': 186}, {'entity': 'I-PER', 'score': 0.9899283, 'index': 73, 'word': '##ued', 'start': 186, 'end': 189}, {'entity': 'I-PER', 'score': 0.99380964, 'index': 74, 'word': '##ec', 'start': 189, 'end': 191}, {'entity': 'I-PER', 'score': 0.9990802, 'index': 81, 'word': 'Your', 'start': 210, 'end': 214}, {'entity': 'I-PER', 'score': 0.99888414, 'index': 82, 'word': '##i', 'start': 214, 'end': 215}, {'entity': 'I-PER', 'score': 0.9993339, 'index': 83, 'word': 'D', 'start': 216, 'end': 217}, {'entity': 'I-PER', 'score': 0.993612, 'index': 84, 'word': '##jo', 'start': 217, 'end': 219}, {'entity': 'I-PER', 'score': 0.9773451, 'index': 85, 'word': '##rka', 'start': 219, 'end': 222}, {'entity': 'I-PER', 'score': 0.73696566, 'index': 86, 'word': '##ef', 'start': 222, 'end': 224}, {'entity': 'I-PER', 'score': 0.9964405, 'index': 87, 'word': '##f', 'start': 224, 'end': 225}]
[{'entity': 'I-MISC', 'score': 0.972888, 'index': 6, 'word': 'B', 'start': 9, 'end': 10}, {'entity': 'I-MISC', 'score': 0.4148807, 'index': 7, 'word': '##EL', 'start': 10, 'end': 12}, {'entity': 'I-MISC', 'score': 0.8621124, 'index': 8, 'word': '##GI', 'start': 12, 'end': 14}, {'entity': 'I-PER', 'score': 0.9996394, 'index': 37, 'word': 'Bert', 'start': 65, 'end': 69}, {'entity': 'I-PER', 'score': 0.99941564, 'index': 38, 'word': 'Lau', 'start': 70, 'end': 73}, {'entity': 'I-PER', 'score': 0.9863582, 'index': 39, 'word': '##wer', 'start': 73, 'end': 76}, {'entity': 'I-PER', 'score': 0.40707472, 'index': 40, 'word': '##s', 'start': 76, 'end': 77}, {'entity': 'I-LOC', 'score': 0.986798, 'index': 45, 'word': 'BR', 'start': 83, 'end': 85}, {'entity': 'I-LOC', 'score': 0.8452344, 'index': 46, 'word': '##US', 'start': 85, 'end': 87}, {'entity': 'I-LOC', 'score': 0.9154276, 'index': 47, 'word': '##SE', 'start': 87, 'end': 89}, {'entity': 'I-LOC', 'score': 0.9724405, 'index': 48, 'word': '##LS', 'start': 89, 'end': 91}, {'entity': 'I-LOC', 'score': 0.9997311, 'index': 58, 'word': 'Belgium', 'start': 108, 'end': 115}, {'entity': 'I-MISC', 'score': 0.9905945, 'index': 63, 'word': 'World', 'start': 138, 'end': 143}, {'entity': 'I-MISC', 'score': 0.9988128, 'index': 64, 'word': 'Cup', 'start': 144, 'end': 147}, {'entity': 'I-LOC', 'score': 0.9997503, 'index': 79, 'word': 'Turkey', 'start': 200, 'end': 206}, {'entity': 'I-MISC', 'score': 0.9986571, 'index': 86, 'word': 'Turkish', 'start': 234, 'end': 241}, {'entity': 'I-MISC', 'score': 0.9969182, 'index': 98, 'word': 'Turkish', 'start': 287, 'end': 294}, {'entity': 'I-PER', 'score': 0.99972945, 'index': 157, 'word': 'Serge', 'start': 543, 'end': 548}, {'entity': 'I-PER', 'score': 0.9996786, 'index': 158, 'word': '##n', 'start': 548, 'end': 549}, {'entity': 'I-PER', 'score': 0.999793, 'index': 159, 'word': 'Ya', 'start': 550, 'end': 552}, {'entity': 'I-PER', 'score': 0.9982528, 'index': 160, 'word': '##l', 'start': 552, 'end': 553}, {'entity': 'I-PER', 'score': 0.9987709, 'index': 161, 'word': '##cin', 'start': 553, 'end': 556}, {'entity': 'I-MISC', 'score': 0.9981054, 'index': 166, 'word': 'Turkish', 'start': 571, 'end': 578}, {'entity': 'I-MISC', 'score': 0.9967847, 'index': 181, 'word': 'Belgian', 'start': 639, 'end': 646}, {'entity': 'I-PER', 'score': 0.9997067, 'index': 183, 'word': 'Fi', 'start': 658, 'end': 660}, {'entity': 'I-PER', 'score': 0.999658, 'index': 184, 'word': '##lip', 'start': 660, 'end': 663}, {'entity': 'I-PER', 'score': 0.9997608, 'index': 185, 'word': 'De', 'start': 664, 'end': 666}, {'entity': 'I-PER', 'score': 0.9992335, 'index': 186, 'word': 'Wilde', 'start': 667, 'end': 672}, {'entity': 'I-PER', 'score': 0.9997806, 'index': 193, 'word': 'Ya', 'start': 684, 'end': 686}, {'entity': 'I-PER', 'score': 0.99862087, 'index': 194, 'word': '##l', 'start': 686, 'end': 687}, {'entity': 'I-PER', 'score': 0.99803776, 'index': 195, 'word': '##cin', 'start': 687, 'end': 690}, {'entity': 'I-MISC', 'score': 0.9985752, 'index': 231, 'word': 'English', 'start': 869, 'end': 876}, {'entity': 'I-PER', 'score': 0.99972755, 'index': 233, 'word': 'David', 'start': 885, 'end': 890}, {'entity': 'I-PER', 'score': 0.9997373, 'index': 234, 'word': 'Elle', 'start': 891, 'end': 895}, {'entity': 'I-PER', 'score': 0.9989035, 'index': 235, 'word': '##ray', 'start': 895, 'end': 898}, {'entity': 'I-PER', 'score': 0.9997849, 'index': 241, 'word': 'Marc', 'start': 906, 'end': 910}, {'entity': 'I-PER', 'score': 0.9996288, 'index': 242, 'word': 'De', 'start': 911, 'end': 913}, {'entity': 'I-PER', 'score': 0.997976, 'index': 243, 'word': '##g', 'start': 913, 'end': 914}, {'entity': 'I-PER', 'score': 0.9922631, 'index': 244, 'word': '##ry', 'start': 914, 'end': 916}, {'entity': 'I-PER', 'score': 0.99810237, 'index': 245, 'word': '##se', 'start': 916, 'end': 918}, {'entity': 'I-LOC', 'score': 0.9996884, 'index': 251, 'word': 'Belgium', 'start': 946, 'end': 953}, {'entity': 'I-PER', 'score': 0.9997571, 'index': 276, 'word': 'Dirk', 'start': 1051, 'end': 1055}, {'entity': 'I-PER', 'score': 0.99958795, 'index': 277, 'word': 'Me', 'start': 1056, 'end': 1058}, {'entity': 'I-PER', 'score': 0.9101701, 'index': 278, 'word': '##d', 'start': 1058, 'end': 1059}, {'entity': 'I-PER', 'score': 0.99584633, 'index': 279, 'word': '##ved', 'start': 1059, 'end': 1062}, {'entity': 'I-MISC', 'score': 0.5812894, 'index': 292, 'word': 'Brazilian', 'start': 1104, 'end': 1113}, {'entity': 'I-PER', 'score': 0.9997267, 'index': 295, 'word': 'Luis', 'start': 1119, 'end': 1123}, {'entity': 'I-PER', 'score': 0.99974066, 'index': 296, 'word': 'Oliveira', 'start': 1124, 'end': 1132}, {'entity': 'I-PER', 'score': 0.99936825, 'index': 306, 'word': 'R', 'start': 1181, 'end': 1182}, {'entity': 'I-PER', 'score': 0.9937104, 'index': 307, 'word': '##ust', 'start': 1182, 'end': 1185}, {'entity': 'I-PER', 'score': 0.9994419, 'index': 308, 'word': '##u', 'start': 1185, 'end': 1186}, {'entity': 'I-PER', 'score': 0.9997521, 'index': 309, 'word': 'Re', 'start': 1187, 'end': 1189}, {'entity': 'I-PER', 'score': 0.9171361, 'index': 310, 'word': '##c', 'start': 1189, 'end': 1190}, {'entity': 'I-PER', 'score': 0.9938506, 'index': 311, 'word': '##ber', 'start': 1190, 'end': 1193}, {'entity': 'I-LOC', 'score': 0.99973124, 'index': 330, 'word': 'Turkey', 'start': 1272, 'end': 1278}, {'entity': 'I-PER', 'score': 0.999243, 'index': 348, 'word': 'O', 'start': 1346, 'end': 1347}, {'entity': 'I-PER', 'score': 0.9989749, 'index': 349, 'word': '##gun', 'start': 1347, 'end': 1350}, {'entity': 'I-PER', 'score': 0.9994159, 'index': 350, 'word': 'Te', 'start': 1351, 'end': 1353}, {'entity': 'I-PER', 'score': 0.9939511, 'index': 351, 'word': '##mi', 'start': 1353, 'end': 1355}, {'entity': 'I-PER', 'score': 0.9792533, 'index': 352, 'word': '##z', 'start': 1355, 'end': 1356}, {'entity': 'I-PER', 'score': 0.99565756, 'index': 353, 'word': '##kan', 'start': 1356, 'end': 1359}, {'entity': 'I-PER', 'score': 0.9889563, 'index': 354, 'word': '##og', 'start': 1359, 'end': 1361}, {'entity': 'I-PER', 'score': 0.91883844, 'index': 355, 'word': '##lu', 'start': 1361, 'end': 1363}, {'entity': 'I-PER', 'score': 0.99956113, 'index': 357, 'word': 'De', 'start': 1370, 'end': 1372}, {'entity': 'I-PER', 'score': 0.9983662, 'index': 358, 'word': 'Wilde', 'start': 1373, 'end': 1378}, {'entity': 'I-MISC', 'score': 0.9983304, 'index': 382, 'word': 'Euro', 'start': 1483, 'end': 1487}, {'entity': 'I-MISC', 'score': 0.99610764, 'index': 383, 'word': '96', 'start': 1488, 'end': 1490}, {'entity': 'I-PER', 'score': 0.98262167, 'index': 398, 'word': 'De', 'start': 1565, 'end': 1567}, {'entity': 'I-PER', 'score': 0.9997813, 'index': 399, 'word': 'Wilde', 'start': 1568, 'end': 1573}, {'entity': 'I-LOC', 'score': 0.99954575, 'index': 427, 'word': 'France', 'start': 1712, 'end': 1718}, {'entity': 'I-LOC', 'score': 0.9995338, 'index': 429, 'word': 'Belgium', 'start': 1721, 'end': 1728}, {'entity': 'I-PER', 'score': 0.98825747, 'index': 462, 'word': 'De', 'start': 1874, 'end': 1876}, {'entity': 'I-PER', 'score': 0.9998093, 'index': 463, 'word': 'Wilde', 'start': 1877, 'end': 1882}, {'entity': 'I-PER', 'score': 0.998779, 'index': 467, 'word': 'Ari', 'start': 1898, 'end': 1901}, {'entity': 'I-PER', 'score': 0.7092752, 'index': 469, 'word': 'E', 'start': 1903, 'end': 1904}, {'entity': 'I-PER', 'score': 0.9442165, 'index': 474, 'word': 'Or', 'start': 1918, 'end': 1920}, {'entity': 'I-PER', 'score': 0.8842667, 'index': 476, 'word': 'C', 'start': 1924, 'end': 1925}, {'entity': 'I-PER', 'score': 0.9992418, 'index': 477, 'word': '##iki', 'start': 1925, 'end': 1928}, {'entity': 'I-PER', 'score': 0.57800776, 'index': 478, 'word': '##rik', 'start': 1928, 'end': 1931}, {'entity': 'I-LOC', 'score': 0.9994931, 'index': 492, 'word': 'Belgium', 'start': 1974, 'end': 1981}, {'entity': 'I-PER', 'score': 0.98826075, 'index': 505, 'word': 'De', 'start': 2039, 'end': 2041}]
[{'entity': 'I-MISC', 'score': 0.9978947, 'index': 13, 'word': 'SP', 'start': 24, 'end': 26}, {'entity': 'I-MISC', 'score': 0.99413174, 'index': 14, 'word': '##AN', 'start': 26, 'end': 28}, {'entity': 'I-MISC', 'score': 0.9819563, 'index': 15, 'word': '##IS', 'start': 28, 'end': 30}, {'entity': 'I-MISC', 'score': 0.97227806, 'index': 16, 'word': '##H', 'start': 30, 'end': 31}, {'entity': 'I-LOC', 'score': 0.9984251, 'index': 30, 'word': 'MA', 'start': 54, 'end': 56}, {'entity': 'I-LOC', 'score': 0.98547214, 'index': 31, 'word': '##DR', 'start': 56, 'end': 58}, {'entity': 'I-LOC', 'score': 0.997486, 'index': 32, 'word': '##ID', 'start': 58, 'end': 60}, {'entity': 'I-MISC', 'score': 0.9991468, 'index': 50, 'word': 'Spanish', 'start': 107, 'end': 114}, {'entity': 'I-ORG', 'score': 0.999754, 'index': 56, 'word': 'Deportivo', 'start': 144, 'end': 153}, {'entity': 'I-ORG', 'score': 0.9996698, 'index': 57, 'word': 'Co', 'start': 154, 'end': 156}, {'entity': 'I-ORG', 'score': 0.99560636, 'index': 58, 'word': '##run', 'start': 156, 'end': 159}, {'entity': 'I-ORG', 'score': 0.99876034, 'index': 59, 'word': '##a', 'start': 159, 'end': 160}, {'entity': 'I-PER', 'score': 0.99881566, 'index': 62, 'word': 'Core', 'start': 165, 'end': 169}, {'entity': 'I-PER', 'score': 0.99818593, 'index': 63, 'word': '##ntin', 'start': 169, 'end': 173}, {'entity': 'I-PER', 'score': 0.9984132, 'index': 64, 'word': '##e', 'start': 173, 'end': 174}, {'entity': 'I-PER', 'score': 0.99952304, 'index': 65, 'word': 'Martins', 'start': 175, 'end': 182}, {'entity': 'I-ORG', 'score': 0.9996791, 'index': 70, 'word': 'Real', 'start': 199, 'end': 203}, {'entity': 'I-ORG', 'score': 0.99971575, 'index': 71, 'word': 'Madrid', 'start': 204, 'end': 210}, {'entity': 'I-PER', 'score': 0.9989305, 'index': 74, 'word': 'Roberto', 'start': 215, 'end': 222}, {'entity': 'I-PER', 'score': 0.999488, 'index': 75, 'word': 'Carlos', 'start': 223, 'end': 229}]
[{'entity': 'I-MISC', 'score': 0.99834645, 'index': 11, 'word': 'SP', 'start': 19, 'end': 21}, {'entity': 'I-MISC', 'score': 0.9969246, 'index': 12, 'word': '##AN', 'start': 21, 'end': 23}, {'entity': 'I-MISC', 'score': 0.98956406, 'index': 13, 'word': '##IS', 'start': 23, 'end': 25}, {'entity': 'I-MISC', 'score': 0.99228716, 'index': 14, 'word': '##H', 'start': 25, 'end': 26}, {'entity': 'I-LOC', 'score': 0.9987852, 'index': 28, 'word': 'MA', 'start': 49, 'end': 51}, {'entity': 'I-LOC', 'score': 0.9875661, 'index': 29, 'word': '##DR', 'start': 51, 'end': 53}, {'entity': 'I-LOC', 'score': 0.9974228, 'index': 30, 'word': '##ID', 'start': 53, 'end': 55}, {'entity': 'I-MISC', 'score': 0.76000816, 'index': 50, 'word': 'S', 'start': 103, 'end': 104}, {'entity': 'I-MISC', 'score': 0.9987445, 'index': 52, 'word': 'Spanish', 'start': 106, 'end': 113}, {'entity': 'I-ORG', 'score': 0.9996525, 'index': 62, 'word': 'Deportivo', 'start': 148, 'end': 157}, {'entity': 'I-ORG', 'score': 0.9996081, 'index': 63, 'word': 'Co', 'start': 158, 'end': 160}, {'entity': 'I-ORG', 'score': 0.99510694, 'index': 64, 'word': '##run', 'start': 160, 'end': 163}, {'entity': 'I-ORG', 'score': 0.9981559, 'index': 65, 'word': '##a', 'start': 163, 'end': 164}, {'entity': 'I-ORG', 'score': 0.9994943, 'index': 67, 'word': 'Real', 'start': 167, 'end': 171}, {'entity': 'I-ORG', 'score': 0.99964523, 'index': 68, 'word': 'Madrid', 'start': 172, 'end': 178}]
[{'entity': 'I-LOC', 'score': 0.71022993, 'index': 6, 'word': 'B', 'start': 9, 'end': 10}, {'entity': 'I-LOC', 'score': 0.64486605, 'index': 7, 'word': '##EL', 'start': 10, 'end': 12}, {'entity': 'I-MISC', 'score': 0.41793704, 'index': 8, 'word': '##GI', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.48675865, 'index': 9, 'word': '##UM', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.32791004, 'index': 13, 'word': 'T', 'start': 22, 'end': 23}, {'entity': 'I-LOC', 'score': 0.37381533, 'index': 14, 'word': '##UR', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.38529328, 'index': 15, 'word': '##KE', 'start': 25, 'end': 27}, {'entity': 'I-ORG', 'score': 0.55985, 'index': 16, 'word': '##Y', 'start': 27, 'end': 28}, {'entity': 'I-MISC', 'score': 0.9942882, 'index': 21, 'word': 'W', 'start': 36, 'end': 37}, {'entity': 'I-MISC', 'score': 0.97491395, 'index': 22, 'word': '##OR', 'start': 37, 'end': 39}, {'entity': 'I-MISC', 'score': 0.9981476, 'index': 23, 'word': '##LD', 'start': 39, 'end': 41}, {'entity': 'I-MISC', 'score': 0.987933, 'index': 24, 'word': 'C', 'start': 42, 'end': 43}, {'entity': 'I-MISC', 'score': 0.9935022, 'index': 25, 'word': '##UP', 'start': 43, 'end': 45}, {'entity': 'I-LOC', 'score': 0.97230124, 'index': 37, 'word': 'BR', 'start': 63, 'end': 65}, {'entity': 'I-LOC', 'score': 0.819933, 'index': 38, 'word': '##US', 'start': 65, 'end': 67}, {'entity': 'I-LOC', 'score': 0.9086214, 'index': 39, 'word': '##SE', 'start': 67, 'end': 69}, {'entity': 'I-LOC', 'score': 0.9756368, 'index': 40, 'word': '##LS', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.99978095, 'index': 50, 'word': 'Belgium', 'start': 88, 'end': 95}, {'entity': 'I-LOC', 'score': 0.99982494, 'index': 52, 'word': 'Turkey', 'start': 101, 'end': 107}, {'entity': 'I-MISC', 'score': 0.99297476, 'index': 68, 'word': 'World', 'start': 139, 'end': 144}, {'entity': 'I-MISC', 'score': 0.9992513, 'index': 69, 'word': 'Cup', 'start': 145, 'end': 148}, {'entity': 'I-LOC', 'score': 0.997445, 'index': 92, 'word': 'Belgium', 'start': 217, 'end': 224}, {'entity': 'I-PER', 'score': 0.9997464, 'index': 94, 'word': 'Marc', 'start': 227, 'end': 231}, {'entity': 'I-PER', 'score': 0.99894494, 'index': 95, 'word': 'De', 'start': 232, 'end': 234}, {'entity': 'I-PER', 'score': 0.9957073, 'index': 96, 'word': '##g', 'start': 234, 'end': 235}, {'entity': 'I-PER', 'score': 0.9857136, 'index': 97, 'word': '##ry', 'start': 235, 'end': 237}, {'entity': 'I-PER', 'score': 0.9968561, 'index': 98, 'word': '##se', 'start': 237, 'end': 239}, {'entity': 'I-PER', 'score': 0.9996315, 'index': 103, 'word': 'Luis', 'start': 251, 'end': 255}, {'entity': 'I-PER', 'score': 0.9997739, 'index': 104, 'word': 'Oliveira', 'start': 256, 'end': 264}, {'entity': 'I-LOC', 'score': 0.999143, 'index': 112, 'word': 'Turkey', 'start': 279, 'end': 285}, {'entity': 'I-PER', 'score': 0.9994319, 'index': 114, 'word': 'Serge', 'start': 288, 'end': 293}, {'entity': 'I-PER', 'score': 0.9994312, 'index': 115, 'word': '##n', 'start': 293, 'end': 294}, {'entity': 'I-PER', 'score': 0.9995815, 'index': 116, 'word': 'Ya', 'start': 295, 'end': 297}, {'entity': 'I-PER', 'score': 0.99146456, 'index': 117, 'word': '##l', 'start': 297, 'end': 298}, {'entity': 'I-PER', 'score': 0.99065644, 'index': 118, 'word': '##cin', 'start': 298, 'end': 301}]
[{'entity': 'I-LOC', 'score': 0.99912554, 'index': 6, 'word': 'AU', 'start': 9, 'end': 11}, {'entity': 'I-LOC', 'score': 0.9908716, 'index': 7, 'word': '##ST', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.9894574, 'index': 8, 'word': '##RI', 'start': 13, 'end': 15}, {'entity': 'I-LOC', 'score': 0.9978688, 'index': 9, 'word': '##A', 'start': 15, 'end': 16}, {'entity': 'I-LOC', 'score': 0.9898149, 'index': 19, 'word': 'SC', 'start': 31, 'end': 33}, {'entity': 'I-LOC', 'score': 0.99025786, 'index': 20, 'word': '##OT', 'start': 33, 'end': 35}, {'entity': 'I-LOC', 'score': 0.9927527, 'index': 21, 'word': '##LA', 'start': 35, 'end': 37}, {'entity': 'I-LOC', 'score': 0.99864286, 'index': 22, 'word': '##ND', 'start': 37, 'end': 39}, {'entity': 'I-MISC', 'score': 0.99328786, 'index': 24, 'word': 'W', 'start': 43, 'end': 44}, {'entity': 'I-MISC', 'score': 0.97862315, 'index': 25, 'word': '##OR', 'start': 44, 'end': 46}, {'entity': 'I-MISC', 'score': 0.997865, 'index': 26, 'word': '##LD', 'start': 46, 'end': 48}, {'entity': 'I-MISC', 'score': 0.9873695, 'index': 27, 'word': 'C', 'start': 49, 'end': 50}, {'entity': 'I-MISC', 'score': 0.9955474, 'index': 28, 'word': '##UP', 'start': 50, 'end': 52}, {'entity': 'I-LOC', 'score': 0.9985637, 'index': 40, 'word': 'VI', 'start': 70, 'end': 72}, {'entity': 'I-LOC', 'score': 0.98591065, 'index': 41, 'word': '##EN', 'start': 72, 'end': 74}, {'entity': 'I-LOC', 'score': 0.99738604, 'index': 42, 'word': '##NA', 'start': 74, 'end': 76}, {'entity': 'I-LOC', 'score': 0.9998111, 'index': 52, 'word': 'Austria', 'start': 93, 'end': 100}, {'entity': 'I-LOC', 'score': 0.9998104, 'index': 54, 'word': 'Scotland', 'start': 105, 'end': 113}, {'entity': 'I-MISC', 'score': 0.99518, 'index': 61, 'word': 'World', 'start': 128, 'end': 133}, {'entity': 'I-MISC', 'score': 0.9990395, 'index': 62, 'word': 'Cup', 'start': 134, 'end': 137}, {'entity': 'I-MISC', 'score': 0.9967528, 'index': 64, 'word': 'European', 'start': 145, 'end': 153}]
[{'entity': 'I-PER', 'score': 0.66227955, 'index': 5, 'word': 'K', 'start': 9, 'end': 10}, {'entity': 'I-PER', 'score': 0.654846, 'index': 18, 'word': 'MI', 'start': 30, 'end': 32}, {'entity': 'I-LOC', 'score': 0.9982326, 'index': 33, 'word': 'D', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.99305373, 'index': 34, 'word': '##U', 'start': 59, 'end': 60}, {'entity': 'I-LOC', 'score': 0.98229593, 'index': 35, 'word': '##BL', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.99815947, 'index': 36, 'word': '##IN', 'start': 62, 'end': 64}, {'entity': 'I-PER', 'score': 0.99958974, 'index': 58, 'word': 'Nate', 'start': 155, 'end': 159}, {'entity': 'I-PER', 'score': 0.9997892, 'index': 59, 'word': 'Miller', 'start': 160, 'end': 166}, {'entity': 'I-MISC', 'score': 0.99896777, 'index': 69, 'word': 'American', 'start': 209, 'end': 217}, {'entity': 'I-PER', 'score': 0.9996228, 'index': 70, 'word': 'James', 'start': 218, 'end': 223}, {'entity': 'I-PER', 'score': 0.99980205, 'index': 71, 'word': 'Heath', 'start': 224, 'end': 229}, {'entity': 'I-ORG', 'score': 0.7370074, 'index': 74, 'word': 'W', 'start': 239, 'end': 240}, {'entity': 'I-ORG', 'score': 0.93510896, 'index': 75, 'word': '##BA', 'start': 240, 'end': 242}, {'entity': 'I-PER', 'score': 0.9997178, 'index': 87, 'word': 'Miller', 'start': 287, 'end': 293}, {'entity': 'I-PER', 'score': 0.99976295, 'index': 140, 'word': 'Heath', 'start': 510, 'end': 515}, {'entity': 'I-PER', 'score': 0.9997162, 'index': 150, 'word': 'Miller', 'start': 552, 'end': 558}, {'entity': 'I-PER', 'score': 0.9996823, 'index': 173, 'word': 'Miller', 'start': 648, 'end': 654}]
[{'entity': 'I-MISC', 'score': 0.9517951, 'index': 6, 'word': 'D', 'start': 9, 'end': 10}, {'entity': 'I-ORG', 'score': 0.3683023, 'index': 7, 'word': '##UT', 'start': 10, 'end': 12}, {'entity': 'I-ORG', 'score': 0.486665, 'index': 8, 'word': '##CH', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.98797613, 'index': 18, 'word': 'BR', 'start': 29, 'end': 31}, {'entity': 'I-LOC', 'score': 0.98335844, 'index': 19, 'word': '##A', 'start': 31, 'end': 32}, {'entity': 'I-LOC', 'score': 0.87511224, 'index': 20, 'word': '##Z', 'start': 32, 'end': 33}, {'entity': 'I-LOC', 'score': 0.78974557, 'index': 21, 'word': '##IL', 'start': 33, 'end': 35}, {'entity': 'I-MISC', 'score': 0.38995552, 'index': 23, 'word': 'F', 'start': 39, 'end': 40}, {'entity': 'I-MISC', 'score': 0.41003084, 'index': 24, 'word': '##RI', 'start': 40, 'end': 42}, {'entity': 'I-MISC', 'score': 0.3889044, 'index': 25, 'word': '##EN', 'start': 42, 'end': 44}, {'entity': 'I-MISC', 'score': 0.6654425, 'index': 26, 'word': '##D', 'start': 44, 'end': 45}, {'entity': 'I-LOC', 'score': 0.9614031, 'index': 40, 'word': 'AM', 'start': 69, 'end': 71}, {'entity': 'I-LOC', 'score': 0.6851929, 'index': 41, 'word': '##ST', 'start': 71, 'end': 73}, {'entity': 'I-LOC', 'score': 0.80846286, 'index': 42, 'word': '##ER', 'start': 73, 'end': 75}, {'entity': 'I-LOC', 'score': 0.55303574, 'index': 43, 'word': '##DA', 'start': 75, 'end': 77}, {'entity': 'I-LOC', 'score': 0.9780261, 'index': 44, 'word': '##M', 'start': 77, 'end': 78}, {'entity': 'I-LOC', 'score': 0.99979776, 'index': 55, 'word': 'Netherlands', 'start': 99, 'end': 110}, {'entity': 'I-LOC', 'score': 0.9997217, 'index': 65, 'word': 'Brazil', 'start': 130, 'end': 136}, {'entity': 'I-LOC', 'score': 0.9982994, 'index': 92, 'word': 'Netherlands', 'start': 210, 'end': 221}, {'entity': 'I-PER', 'score': 0.99973017, 'index': 94, 'word': 'Ronald', 'start': 224, 'end': 230}, {'entity': 'I-PER', 'score': 0.99929523, 'index': 95, 'word': 'de', 'start': 231, 'end': 233}, {'entity': 'I-PER', 'score': 0.999706, 'index': 96, 'word': 'Boer', 'start': 234, 'end': 238}, {'entity': 'I-PER', 'score': 0.999584, 'index': 103, 'word': 'Van', 'start': 257, 'end': 260}, {'entity': 'I-PER', 'score': 0.9984426, 'index': 104, 'word': 'Gas', 'start': 261, 'end': 264}, {'entity': 'I-PER', 'score': 0.99483645, 'index': 105, 'word': '##tel', 'start': 264, 'end': 267}, {'entity': 'I-LOC', 'score': 0.9984736, 'index': 120, 'word': 'Brazil', 'start': 293, 'end': 299}, {'entity': 'I-PER', 'score': 0.9996706, 'index': 122, 'word': 'Giovanni', 'start': 302, 'end': 310}, {'entity': 'I-PER', 'score': 0.9994547, 'index': 127, 'word': 'Marcel', 'start': 322, 'end': 328}, {'entity': 'I-PER', 'score': 0.9992072, 'index': 128, 'word': '##lo', 'start': 328, 'end': 330}, {'entity': 'I-PER', 'score': 0.9994252, 'index': 129, 'word': 'Go', 'start': 331, 'end': 333}, {'entity': 'I-PER', 'score': 0.97271687, 'index': 130, 'word': '##nc', 'start': 333, 'end': 335}, {'entity': 'I-PER', 'score': 0.5756423, 'index': 131, 'word': '##al', 'start': 335, 'end': 337}, {'entity': 'I-PER', 'score': 0.9964477, 'index': 132, 'word': '##ves', 'start': 337, 'end': 340}]
[{'entity': 'I-PER', 'score': 0.9884198, 'index': 5, 'word': 'MI', 'start': 9, 'end': 11}, {'entity': 'I-PER', 'score': 0.5408762, 'index': 6, 'word': '##LL', 'start': 11, 'end': 13}, {'entity': 'I-PER', 'score': 0.70423573, 'index': 7, 'word': '##ER', 'start': 13, 'end': 15}, {'entity': 'I-MISC', 'score': 0.71355605, 'index': 12, 'word': 'W', 'start': 24, 'end': 25}, {'entity': 'I-LOC', 'score': 0.9984907, 'index': 30, 'word': 'D', 'start': 55, 'end': 56}, {'entity': 'I-LOC', 'score': 0.9931149, 'index': 31, 'word': '##U', 'start': 56, 'end': 57}, {'entity': 'I-LOC', 'score': 0.9769638, 'index': 32, 'word': '##BL', 'start': 57, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9977005, 'index': 33, 'word': '##IN', 'start': 59, 'end': 61}, {'entity': 'I-MISC', 'score': 0.99885845, 'index': 43, 'word': 'American', 'start': 78, 'end': 86}, {'entity': 'I-PER', 'score': 0.99968505, 'index': 44, 'word': 'Nate', 'start': 87, 'end': 91}, {'entity': 'I-PER', 'score': 0.99979824, 'index': 45, 'word': 'Miller', 'start': 92, 'end': 98}, {'entity': 'I-ORG', 'score': 0.93416756, 'index': 49, 'word': 'W', 'start': 125, 'end': 126}, {'entity': 'I-ORG', 'score': 0.9854826, 'index': 50, 'word': '##BA', 'start': 126, 'end': 128}, {'entity': 'I-PER', 'score': 0.99969757, 'index': 62, 'word': 'James', 'start': 180, 'end': 185}, {'entity': 'I-PER', 'score': 0.99984324, 'index': 63, 'word': 'Heath', 'start': 186, 'end': 191}]
[{'entity': 'I-PER', 'score': 0.50683, 'index': 8, 'word': 'T', 'start': 15, 'end': 16}, {'entity': 'I-MISC', 'score': 0.7748556, 'index': 19, 'word': '##A', 'start': 38, 'end': 39}, {'entity': 'I-LOC', 'score': 0.9965264, 'index': 31, 'word': 'D', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.98783046, 'index': 32, 'word': '##U', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9691544, 'index': 33, 'word': '##BL', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.9964508, 'index': 34, 'word': '##IN', 'start': 61, 'end': 63}, {'entity': 'I-MISC', 'score': 0.970999, 'index': 49, 'word': 'Ta', 'start': 94, 'end': 96}, {'entity': 'I-ORG', 'score': 0.647316, 'index': 50, 'word': '##tters', 'start': 96, 'end': 101}, {'entity': 'I-MISC', 'score': 0.5322974, 'index': 51, 'word': '##all', 'start': 101, 'end': 104}, {'entity': 'I-MISC', 'score': 0.75533843, 'index': 52, 'word': '##s', 'start': 104, 'end': 105}, {'entity': 'I-MISC', 'score': 0.58428425, 'index': 53, 'word': 'Bree', 'start': 106, 'end': 110}, {'entity': 'I-MISC', 'score': 0.89069206, 'index': 54, 'word': '##ders', 'start': 110, 'end': 114}, {'entity': 'I-MISC', 'score': 0.9540263, 'index': 55, 'word': '<', 'start': 115, 'end': 116}, {'entity': 'I-MISC', 'score': 0.8388684, 'index': 57, 'word': 'S', 'start': 117, 'end': 118}, {'entity': 'I-MISC', 'score': 0.9872228, 'index': 59, 'word': 'Stakes', 'start': 120, 'end': 126}, {'entity': 'I-LOC', 'score': 0.9752181, 'index': 86, 'word': 'The', 'start': 201, 'end': 204}, {'entity': 'I-LOC', 'score': 0.99578506, 'index': 87, 'word': 'C', 'start': 205, 'end': 206}, {'entity': 'I-LOC', 'score': 0.9407377, 'index': 88, 'word': '##ur', 'start': 206, 'end': 208}, {'entity': 'I-LOC', 'score': 0.9704169, 'index': 89, 'word': '##rag', 'start': 208, 'end': 211}, {'entity': 'I-LOC', 'score': 0.9965869, 'index': 90, 'word': '##h', 'start': 211, 'end': 212}, {'entity': 'I-PER', 'score': 0.9907301, 'index': 100, 'word': 'Miss', 'start': 235, 'end': 239}, {'entity': 'I-PER', 'score': 0.98543197, 'index': 101, 'word': 'St', 'start': 240, 'end': 242}, {'entity': 'I-PER', 'score': 0.94327134, 'index': 102, 'word': '##amp', 'start': 242, 'end': 245}, {'entity': 'I-PER', 'score': 0.8745721, 'index': 103, 'word': '##er', 'start': 245, 'end': 247}, {'entity': 'I-PER', 'score': 0.9997297, 'index': 113, 'word': 'David', 'start': 280, 'end': 285}, {'entity': 'I-PER', 'score': 0.9998348, 'index': 114, 'word': 'Harrison', 'start': 286, 'end': 294}, {'entity': 'I-PER', 'score': 0.989664, 'index': 122, 'word': 'Paddy', 'start': 305, 'end': 310}, {'entity': 'I-PER', 'score': 0.9056526, 'index': 123, 'word': 'La', 'start': 311, 'end': 313}, {'entity': 'I-PER', 'score': 0.6940027, 'index': 124, 'word': '##d', 'start': 313, 'end': 314}, {'entity': 'I-PER', 'score': 0.9997224, 'index': 129, 'word': 'Peter', 'start': 322, 'end': 327}, {'entity': 'I-PER', 'score': 0.9995745, 'index': 130, 'word': 'Bloom', 'start': 328, 'end': 333}, {'entity': 'I-PER', 'score': 0.9925924, 'index': 131, 'word': '##field', 'start': 333, 'end': 338}, {'entity': 'I-PER', 'score': 0.9936733, 'index': 139, 'word': 'P', 'start': 349, 'end': 350}, {'entity': 'I-PER', 'score': 0.59861594, 'index': 140, 'word': '##el', 'start': 350, 'end': 352}, {'entity': 'I-PER', 'score': 0.8995241, 'index': 141, 'word': '##ham', 'start': 352, 'end': 355}, {'entity': 'I-PER', 'score': 0.9996722, 'index': 146, 'word': 'Warren', 'start': 363, 'end': 369}, {'entity': 'I-PER', 'score': 0.9996723, 'index': 147, 'word': 'O', 'start': 370, 'end': 371}, {'entity': 'I-PER', 'score': 0.9911897, 'index': 148, 'word': "'", 'start': 371, 'end': 372}, {'entity': 'I-PER', 'score': 0.9990115, 'index': 149, 'word': 'Connor', 'start': 372, 'end': 378}, {'entity': 'I-PER', 'score': 0.99934477, 'index': 177, 'word': 'John', 'start': 460, 'end': 464}, {'entity': 'I-PER', 'score': 0.99923277, 'index': 179, 'word': 'Be', 'start': 469, 'end': 471}, {'entity': 'I-PER', 'score': 0.9981046, 'index': 180, 'word': '##ryl', 'start': 471, 'end': 474}, {'entity': 'I-PER', 'score': 0.9977563, 'index': 181, 'word': '##l', 'start': 474, 'end': 475}, {'entity': 'I-PER', 'score': 0.9994199, 'index': 182, 'word': 'Re', 'start': 476, 'end': 478}, {'entity': 'I-PER', 'score': 0.9637361, 'index': 183, 'word': '##mb', 'start': 478, 'end': 480}, {'entity': 'I-PER', 'score': 0.9599318, 'index': 184, 'word': '##lance', 'start': 480, 'end': 485}, {'entity': 'I-LOC', 'score': 0.9998167, 'index': 192, 'word': 'Britain', 'start': 506, 'end': 513}, {'entity': 'I-PER', 'score': 0.9996284, 'index': 194, 'word': 'Richard', 'start': 517, 'end': 524}, {'entity': 'I-PER', 'score': 0.9996289, 'index': 195, 'word': 'Han', 'start': 525, 'end': 528}, {'entity': 'I-PER', 'score': 0.9982488, 'index': 196, 'word': '##non', 'start': 528, 'end': 531}]
[{'entity': 'I-PER', 'score': 0.9101514, 'index': 6, 'word': 'K', 'start': 9, 'end': 10}, {'entity': 'I-ORG', 'score': 0.6157239, 'index': 7, 'word': '##L', 'start': 10, 'end': 11}, {'entity': 'I-ORG', 'score': 0.75015134, 'index': 8, 'word': '##IN', 'start': 11, 'end': 13}, {'entity': 'I-LOC', 'score': 0.3486574, 'index': 9, 'word': '##SM', 'start': 13, 'end': 15}, {'entity': 'I-ORG', 'score': 0.54143804, 'index': 10, 'word': '##AN', 'start': 15, 'end': 17}, {'entity': 'I-ORG', 'score': 0.44071248, 'index': 11, 'word': '##N', 'start': 17, 'end': 18}, {'entity': 'I-MISC', 'score': 0.988766, 'index': 20, 'word': '1998', 'start': 35, 'end': 39}, {'entity': 'I-MISC', 'score': 0.9872181, 'index': 21, 'word': 'W', 'start': 40, 'end': 41}, {'entity': 'I-MISC', 'score': 0.93318444, 'index': 22, 'word': '##OR', 'start': 41, 'end': 43}, {'entity': 'I-MISC', 'score': 0.99686855, 'index': 23, 'word': '##LD', 'start': 43, 'end': 45}, {'entity': 'I-MISC', 'score': 0.98906136, 'index': 24, 'word': 'C', 'start': 46, 'end': 47}, {'entity': 'I-MISC', 'score': 0.9750131, 'index': 25, 'word': '##UP', 'start': 47, 'end': 49}, {'entity': 'I-LOC', 'score': 0.9967674, 'index': 31, 'word': 'B', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.95101506, 'index': 32, 'word': '##ON', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.99234265, 'index': 33, 'word': '##N', 'start': 60, 'end': 61}, {'entity': 'I-MISC', 'score': 0.999126, 'index': 43, 'word': 'German', 'start': 78, 'end': 84}, {'entity': 'I-PER', 'score': 0.9997218, 'index': 46, 'word': 'Ju', 'start': 107, 'end': 109}, {'entity': 'I-PER', 'score': 0.9943855, 'index': 47, 'word': '##er', 'start': 109, 'end': 111}, {'entity': 'I-PER', 'score': 0.99939585, 'index': 48, 'word': '##gen', 'start': 111, 'end': 114}, {'entity': 'I-PER', 'score': 0.9998443, 'index': 49, 'word': 'K', 'start': 115, 'end': 116}, {'entity': 'I-PER', 'score': 0.98955697, 'index': 50, 'word': '##lins', 'start': 116, 'end': 120}, {'entity': 'I-PER', 'score': 0.9982439, 'index': 51, 'word': '##mann', 'start': 120, 'end': 124}, {'entity': 'I-MISC', 'score': 0.9826156, 'index': 60, 'word': 'World', 'start': 164, 'end': 169}, {'entity': 'I-MISC', 'score': 0.9988807, 'index': 61, 'word': 'Cup', 'start': 170, 'end': 173}, {'entity': 'I-LOC', 'score': 0.9996871, 'index': 63, 'word': 'France', 'start': 177, 'end': 183}, {'entity': 'I-ORG', 'score': 0.97913206, 'index': 107, 'word': 'Sue', 'start': 351, 'end': 354}, {'entity': 'I-ORG', 'score': 0.9938665, 'index': 108, 'word': '##dd', 'start': 354, 'end': 356}, {'entity': 'I-ORG', 'score': 0.97867054, 'index': 109, 'word': '##eu', 'start': 356, 'end': 358}, {'entity': 'I-ORG', 'score': 0.94178754, 'index': 110, 'word': '##ts', 'start': 358, 'end': 360}, {'entity': 'I-ORG', 'score': 0.9974584, 'index': 111, 'word': '##che', 'start': 360, 'end': 363}, {'entity': 'I-ORG', 'score': 0.99933064, 'index': 112, 'word': 'Z', 'start': 364, 'end': 365}, {'entity': 'I-ORG', 'score': 0.996902, 'index': 113, 'word': '##eit', 'start': 365, 'end': 368}, {'entity': 'I-ORG', 'score': 0.9957743, 'index': 114, 'word': '##ung', 'start': 368, 'end': 371}, {'entity': 'I-PER', 'score': 0.9998442, 'index': 122, 'word': 'K', 'start': 391, 'end': 392}, {'entity': 'I-PER', 'score': 0.99258435, 'index': 123, 'word': '##lins', 'start': 392, 'end': 396}, {'entity': 'I-PER', 'score': 0.9855738, 'index': 124, 'word': '##mann', 'start': 396, 'end': 400}, {'entity': 'I-LOC', 'score': 0.99974877, 'index': 128, 'word': 'Germany', 'start': 418, 'end': 425}, {'entity': 'I-LOC', 'score': 0.9998988, 'index': 132, 'word': 'France', 'start': 439, 'end': 445}, {'entity': 'I-MISC', 'score': 0.9987896, 'index': 142, 'word': 'European', 'start': 493, 'end': 501}, {'entity': 'I-LOC', 'score': 0.9997354, 'index': 145, 'word': 'England', 'start': 518, 'end': 525}, {'entity': 'I-PER', 'score': 0.99968696, 'index': 216, 'word': 'Bert', 'start': 770, 'end': 774}, {'entity': 'I-PER', 'score': 0.9994068, 'index': 217, 'word': '##i', 'start': 774, 'end': 775}, {'entity': 'I-PER', 'score': 0.9996718, 'index': 218, 'word': 'V', 'start': 776, 'end': 777}, {'entity': 'I-PER', 'score': 0.9941274, 'index': 219, 'word': '##og', 'start': 777, 'end': 779}, {'entity': 'I-PER', 'score': 0.9889704, 'index': 220, 'word': '##ts', 'start': 779, 'end': 781}, {'entity': 'I-LOC', 'score': 0.9998492, 'index': 235, 'word': 'Poland', 'start': 858, 'end': 864}, {'entity': 'I-LOC', 'score': 0.999806, 'index': 238, 'word': 'Germany', 'start': 868, 'end': 875}, {'entity': 'I-MISC', 'score': 0.9984774, 'index': 244, 'word': 'Euro', 'start': 897, 'end': 901}, {'entity': 'I-MISC', 'score': 0.99117017, 'index': 245, 'word': '96', 'start': 902, 'end': 904}]
[{'entity': 'I-MISC', 'score': 0.9985802, 'index': 6, 'word': 'GE', 'start': 9, 'end': 11}, {'entity': 'I-MISC', 'score': 0.9946517, 'index': 7, 'word': '##R', 'start': 11, 'end': 12}, {'entity': 'I-MISC', 'score': 0.995948, 'index': 8, 'word': '##MA', 'start': 12, 'end': 14}, {'entity': 'I-MISC', 'score': 0.9969727, 'index': 9, 'word': '##N', 'start': 14, 'end': 15}, {'entity': 'I-MISC', 'score': 0.98967886, 'index': 10, 'word': 'C', 'start': 16, 'end': 17}, {'entity': 'I-MISC', 'score': 0.99081415, 'index': 11, 'word': '##UP', 'start': 17, 'end': 19}, {'entity': 'I-LOC', 'score': 0.9954125, 'index': 29, 'word': 'B', 'start': 48, 'end': 49}, {'entity': 'I-LOC', 'score': 0.85938674, 'index': 30, 'word': '##ON', 'start': 49, 'end': 51}, {'entity': 'I-LOC', 'score': 0.9909847, 'index': 31, 'word': '##N', 'start': 51, 'end': 52}, {'entity': 'I-MISC', 'score': 0.9911317, 'index': 43, 'word': 'German', 'start': 80, 'end': 86}, {'entity': 'I-MISC', 'score': 0.99313813, 'index': 44, 'word': 'Cup', 'start': 87, 'end': 90}, {'entity': 'I-ORG', 'score': 0.99978596, 'index': 59, 'word': 'Karl', 'start': 136, 'end': 140}, {'entity': 'I-ORG', 'score': 0.99840885, 'index': 60, 'word': '##s', 'start': 140, 'end': 141}, {'entity': 'I-ORG', 'score': 0.9982766, 'index': 61, 'word': '##ru', 'start': 141, 'end': 143}, {'entity': 'I-ORG', 'score': 0.999632, 'index': 62, 'word': '##he', 'start': 143, 'end': 145}, {'entity': 'I-ORG', 'score': 0.99970764, 'index': 64, 'word': 'Hans', 'start': 148, 'end': 152}, {'entity': 'I-ORG', 'score': 0.99918586, 'index': 65, 'word': '##a', 'start': 152, 'end': 153}, {'entity': 'I-ORG', 'score': 0.99971014, 'index': 66, 'word': 'R', 'start': 154, 'end': 155}, {'entity': 'I-ORG', 'score': 0.9993888, 'index': 67, 'word': '##ost', 'start': 155, 'end': 158}, {'entity': 'I-ORG', 'score': 0.99966276, 'index': 68, 'word': '##ock', 'start': 158, 'end': 161}, {'entity': 'I-ORG', 'score': 0.99971956, 'index': 74, 'word': 'Bo', 'start': 169, 'end': 171}, {'entity': 'I-ORG', 'score': 0.9996667, 'index': 75, 'word': '##russ', 'start': 171, 'end': 175}, {'entity': 'I-ORG', 'score': 0.999421, 'index': 76, 'word': '##ia', 'start': 175, 'end': 177}, {'entity': 'I-ORG', 'score': 0.9996251, 'index': 77, 'word': 'N', 'start': 178, 'end': 179}, {'entity': 'I-ORG', 'score': 0.99906856, 'index': 78, 'word': '##eu', 'start': 179, 'end': 181}, {'entity': 'I-ORG', 'score': 0.9992061, 'index': 79, 'word': '##nk', 'start': 181, 'end': 183}, {'entity': 'I-ORG', 'score': 0.8948635, 'index': 80, 'word': '##ir', 'start': 183, 'end': 185}, {'entity': 'I-ORG', 'score': 0.99853957, 'index': 81, 'word': '##chen', 'start': 185, 'end': 189}, {'entity': 'I-ORG', 'score': 0.99967015, 'index': 83, 'word': 'St', 'start': 192, 'end': 194}, {'entity': 'I-ORG', 'score': 0.99961406, 'index': 84, 'word': 'Paul', 'start': 195, 'end': 199}, {'entity': 'I-ORG', 'score': 0.99911064, 'index': 85, 'word': '##i', 'start': 199, 'end': 200}, {'entity': 'I-ORG', 'score': 0.9997037, 'index': 91, 'word': 'Du', 'start': 208, 'end': 210}, {'entity': 'I-ORG', 'score': 0.999271, 'index': 92, 'word': '##is', 'start': 210, 'end': 212}, {'entity': 'I-ORG', 'score': 0.9995283, 'index': 93, 'word': '##burg', 'start': 212, 'end': 216}, {'entity': 'I-ORG', 'score': 0.9995427, 'index': 95, 'word': 'Lu', 'start': 219, 'end': 221}, {'entity': 'I-ORG', 'score': 0.97629344, 'index': 96, 'word': '##eb', 'start': 221, 'end': 223}, {'entity': 'I-ORG', 'score': 0.99815136, 'index': 97, 'word': '##eck', 'start': 223, 'end': 226}]
[{'entity': 'I-LOC', 'score': 0.9904379, 'index': 6, 'word': 'ROM', 'start': 9, 'end': 12}, {'entity': 'I-LOC', 'score': 0.97625136, 'index': 7, 'word': '##AN', 'start': 12, 'end': 14}, {'entity': 'I-LOC', 'score': 0.9955349, 'index': 8, 'word': '##IA', 'start': 14, 'end': 16}, {'entity': 'I-LOC', 'score': 0.99562174, 'index': 12, 'word': 'L', 'start': 22, 'end': 23}, {'entity': 'I-LOC', 'score': 0.98765767, 'index': 13, 'word': '##IT', 'start': 23, 'end': 25}, {'entity': 'I-LOC', 'score': 0.97775304, 'index': 14, 'word': '##H', 'start': 25, 'end': 26}, {'entity': 'I-LOC', 'score': 0.9829617, 'index': 15, 'word': '##U', 'start': 26, 'end': 27}, {'entity': 'I-LOC', 'score': 0.946408, 'index': 16, 'word': '##AN', 'start': 27, 'end': 29}, {'entity': 'I-LOC', 'score': 0.99094033, 'index': 17, 'word': '##IA', 'start': 29, 'end': 31}, {'entity': 'I-MISC', 'score': 0.95713407, 'index': 19, 'word': 'U', 'start': 35, 'end': 36}, {'entity': 'I-MISC', 'score': 0.9200846, 'index': 21, 'word': '21', 'start': 37, 'end': 39}, {'entity': 'I-LOC', 'score': 0.9979796, 'index': 33, 'word': 'B', 'start': 57, 'end': 58}, {'entity': 'I-LOC', 'score': 0.9549968, 'index': 34, 'word': '##UC', 'start': 58, 'end': 60}, {'entity': 'I-LOC', 'score': 0.9842444, 'index': 35, 'word': '##HA', 'start': 60, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9704964, 'index': 36, 'word': '##RE', 'start': 62, 'end': 64}, {'entity': 'I-LOC', 'score': 0.99659014, 'index': 37, 'word': '##ST', 'start': 64, 'end': 66}, {'entity': 'I-LOC', 'score': 0.99977905, 'index': 47, 'word': 'Romania', 'start': 83, 'end': 90}, {'entity': 'I-LOC', 'score': 0.99974567, 'index': 58, 'word': 'Lithuania', 'start': 117, 'end': 126}, {'entity': 'I-MISC', 'score': 0.99885356, 'index': 61, 'word': 'European', 'start': 136, 'end': 144}, {'entity': 'I-MISC', 'score': 0.95553493, 'index': 62, 'word': 'Under', 'start': 145, 'end': 150}, {'entity': 'I-MISC', 'score': 0.7315161, 'index': 63, 'word': '-', 'start': 150, 'end': 151}, {'entity': 'I-MISC', 'score': 0.92977566, 'index': 64, 'word': '21', 'start': 151, 'end': 153}, {'entity': 'I-LOC', 'score': 0.99918133, 'index': 81, 'word': 'Romania', 'start': 199, 'end': 206}, {'entity': 'I-PER', 'score': 0.9996443, 'index': 83, 'word': 'Co', 'start': 209, 'end': 211}, {'entity': 'I-PER', 'score': 0.9988416, 'index': 84, 'word': '##sm', 'start': 211, 'end': 213}, {'entity': 'I-PER', 'score': 0.9993019, 'index': 85, 'word': '##in', 'start': 213, 'end': 215}, {'entity': 'I-PER', 'score': 0.9990056, 'index': 86, 'word': 'Con', 'start': 216, 'end': 219}, {'entity': 'I-PER', 'score': 0.9962037, 'index': 87, 'word': '##tra', 'start': 219, 'end': 222}, {'entity': 'I-PER', 'score': 0.99956256, 'index': 92, 'word': 'Mi', 'start': 234, 'end': 236}, {'entity': 'I-PER', 'score': 0.99923396, 'index': 93, 'word': '##hai', 'start': 236, 'end': 239}, {'entity': 'I-PER', 'score': 0.9994332, 'index': 94, 'word': 'Tara', 'start': 240, 'end': 244}, {'entity': 'I-PER', 'score': 0.9848295, 'index': 95, 'word': '##rac', 'start': 244, 'end': 247}, {'entity': 'I-PER', 'score': 0.9946832, 'index': 96, 'word': '##he', 'start': 247, 'end': 249}, {'entity': 'I-LOC', 'score': 0.99756014, 'index': 105, 'word': 'Lithuania', 'start': 264, 'end': 273}, {'entity': 'I-PER', 'score': 0.9990464, 'index': 107, 'word': 'Dani', 'start': 276, 'end': 280}, {'entity': 'I-PER', 'score': 0.999193, 'index': 108, 'word': '##us', 'start': 280, 'end': 282}, {'entity': 'I-PER', 'score': 0.99975353, 'index': 109, 'word': 'G', 'start': 283, 'end': 284}, {'entity': 'I-PER', 'score': 0.99629265, 'index': 110, 'word': '##lev', 'start': 284, 'end': 287}, {'entity': 'I-PER', 'score': 0.9963387, 'index': 111, 'word': '##eck', 'start': 287, 'end': 290}, {'entity': 'I-PER', 'score': 0.98806816, 'index': 112, 'word': '##as', 'start': 290, 'end': 292}]
[{'entity': 'I-PER', 'score': 0.99964964, 'index': 3, 'word': 'Thatcher', 'start': 11, 'end': 19}, {'entity': 'I-LOC', 'score': 0.9988331, 'index': 17, 'word': 'L', 'start': 58, 'end': 59}, {'entity': 'I-LOC', 'score': 0.9970331, 'index': 18, 'word': '##ON', 'start': 59, 'end': 61}, {'entity': 'I-LOC', 'score': 0.965837, 'index': 19, 'word': '##D', 'start': 61, 'end': 62}, {'entity': 'I-LOC', 'score': 0.9986071, 'index': 20, 'word': '##ON', 'start': 62, 'end': 64}, {'entity': 'I-MISC', 'score': 0.9992834, 'index': 31, 'word': 'British', 'start': 83, 'end': 90}, {'entity': 'I-PER', 'score': 0.99892634, 'index': 34, 'word': 'Margaret', 'start': 106, 'end': 114}, {'entity': 'I-PER', 'score': 0.9995945, 'index': 35, 'word': 'Thatcher', 'start': 115, 'end': 123}, {'entity': 'I-ORG', 'score': 0.940539, 'index': 41, 'word': 'IRA', 'start': 144, 'end': 147}, {'entity': 'I-ORG', 'score': 0.9620667, 'index': 72, 'word': 'The', 'start': 275, 'end': 278}, {'entity': 'I-ORG', 'score': 0.9993606, 'index': 73, 'word': 'Sunday', 'start': 279, 'end': 285}, {'entity': 'I-ORG', 'score': 0.99873215, 'index': 74, 'word': 'Telegraph', 'start': 286, 'end': 295}, {'entity': 'I-PER', 'score': 0.9978562, 'index': 76, 'word': 'Major', 'start': 303, 'end': 308}, {'entity': 'I-PER', 'score': 0.99910635, 'index': 77, 'word': '##ie', 'start': 308, 'end': 310}, {'entity': 'I-PER', 'score': 0.99960035, 'index': 78, 'word': 'Or', 'start': 311, 'end': 313}, {'entity': 'I-PER', 'score': 0.9907437, 'index': 79, 'word': '##r', 'start': 313, 'end': 314}, {'entity': 'I-PER', 'score': 0.99981505, 'index': 90, 'word': 'Thatcher', 'start': 355, 'end': 363}, {'entity': 'I-ORG', 'score': 0.9512621, 'index': 93, 'word': 'Li', 'start': 368, 'end': 370}, {'entity': 'I-ORG', 'score': 0.83668184, 'index': 94, 'word': '##bra', 'start': 370, 'end': 373}, {'entity': 'I-MISC', 'score': 0.60038644, 'index': 95, 'word': '##n', 'start': 373, 'end': 374}, {'entity': 'I-MISC', 'score': 0.99890935, 'index': 104, 'word': 'Irish', 'start': 417, 'end': 422}, {'entity': 'I-ORG', 'score': 0.99357337, 'index': 112, 'word': 'Conservative', 'start': 463, 'end': 475}, {'entity': 'I-ORG', 'score': 0.9907981, 'index': 113, 'word': 'Party', 'start': 476, 'end': 481}, {'entity': 'I-PER', 'score': 0.9988937, 'index': 125, 'word': 'Or', 'start': 523, 'end': 525}, {'entity': 'I-PER', 'score': 0.99963284, 'index': 128, 'word': 'Thatcher', 'start': 532, 'end': 540}, {'entity': 'I-PER', 'score': 0.9992982, 'index': 133, 'word': 'Bernard', 'start': 560, 'end': 567}, {'entity': 'I-PER', 'score': 0.99973863, 'index': 134, 'word': 'Ingram', 'start': 568, 'end': 574}, {'entity': 'I-PER', 'score': 0.99928194, 'index': 155, 'word': 'Bernard', 'start': 660, 'end': 667}, {'entity': 'I-PER', 'score': 0.9958364, 'index': 156, 'word': 'In', 'start': 668, 'end': 670}, {'entity': 'I-PER', 'score': 0.8115069, 'index': 157, 'word': '##gh', 'start': 670, 'end': 672}, {'entity': 'I-PER', 'score': 0.94692653, 'index': 158, 'word': '##am', 'start': 672, 'end': 674}, {'entity': 'I-PER', 'score': 0.99914074, 'index': 178, 'word': 'Or', 'start': 761, 'end': 763}, {'entity': 'I-PER', 'score': 0.5169633, 'index': 179, 'word': '##r', 'start': 763, 'end': 764}, {'entity': 'I-PER', 'score': 0.9991233, 'index': 186, 'word': 'Or', 'start': 777, 'end': 779}, {'entity': 'I-PER', 'score': 0.61910456, 'index': 187, 'word': '##r', 'start': 779, 'end': 780}, {'entity': 'I-PER', 'score': 0.9996057, 'index': 224, 'word': 'Ingram', 'start': 939, 'end': 945}, {'entity': 'I-PER', 'score': 0.9988881, 'index': 251, 'word': 'Or', 'start': 1065, 'end': 1067}, {'entity': 'I-PER', 'score': 0.99963415, 'index': 258, 'word': 'Thatcher', 'start': 1088, 'end': 1096}, {'entity': 'I-PER', 'score': 0.9997733, 'index': 267, 'word': 'Thatcher', 'start': 1113, 'end': 1121}, {'entity': 'I-PER', 'score': 0.9659531, 'index': 272, 'word': 'Iron', 'start': 1137, 'end': 1141}, {'entity': 'I-PER', 'score': 0.995362, 'index': 273, 'word': 'Lady', 'start': 1142, 'end': 1146}, {'entity': 'I-LOC', 'score': 0.99912125, 'index': 310, 'word': 'U', 'start': 1302, 'end': 1303}, {'entity': 'I-LOC', 'score': 0.9913174, 'index': 312, 'word': 'S', 'start': 1304, 'end': 1305}, {'entity': 'I-PER', 'score': 0.99884546, 'index': 315, 'word': 'Ronald', 'start': 1317, 'end': 1323}, {'entity': 'I-PER', 'score': 0.99889624, 'index': 316, 'word': 'Reagan', 'start': 1324, 'end': 1330}, {'entity': 'I-PER', 'score': 0.99907255, 'index': 321, 'word': 'Nancy', 'start': 1341, 'end': 1346}, {'entity': 'I-MISC', 'score': 0.98566794, 'index': 327, 'word': 'My', 'start': 1375, 'end': 1377}, {'entity': 'I-MISC', 'score': 0.984522, 'index': 328, 'word': 'Turn', 'start': 1378, 'end': 1382}]
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
Cell In [12], line 1
----> 1 for out in nlp(generate_date("en-ner-conll-2003/dev-0/in.tsv")):
      2     print(out)

File ~\miniconda3\lib\site-packages\transformers\pipelines\pt_utils.py:124, in PipelineIterator.__next__(self)
    121     return self.loader_batch_item()
    123 # We're out of items within a batch
--> 124 item = next(self.iterator)
    125 processed = self.infer(item, **self.params)
    126 # We now have a batch of "inferred things".

File ~\miniconda3\lib\site-packages\transformers\pipelines\pt_utils.py:266, in PipelinePackIterator.__next__(self)
    263             return accumulator
    265 while not is_last:
--> 266     processed = self.infer(next(self.iterator), **self.params)
    267     if self.loader_batch_size is not None:
    268         if isinstance(processed, torch.Tensor):

File ~\miniconda3\lib\site-packages\transformers\pipelines\base.py:1068, in Pipeline.forward(self, model_inputs, **forward_params)
   1066     with inference_context():
   1067         model_inputs = self._ensure_tensor_on_device(model_inputs, device=self.device)
-> 1068         model_outputs = self._forward(model_inputs, **forward_params)
   1069         model_outputs = self._ensure_tensor_on_device(model_outputs, device=torch.device("cpu"))
   1070 else:

File ~\miniconda3\lib\site-packages\transformers\pipelines\token_classification.py:286, in TokenClassificationPipeline._forward(self, model_inputs)
    284     logits = self.model(**model_inputs)[0]
    285 else:
--> 286     output = self.model(**model_inputs)
    287     logits = output["logits"] if isinstance(output, dict) else output[0]
    289 return {
    290     "logits": logits,
    291     "special_tokens_mask": special_tokens_mask,
   (...)
    295     **model_inputs,
    296 }

File ~\AppData\Roaming\Python\Python39\site-packages\torch\nn\modules\module.py:1130, in Module._call_impl(self, *input, **kwargs)
   1126 # If we don't have any hooks, we want to skip the rest of the logic in
   1127 # this function, and just call forward.
   1128 if not (self._backward_hooks or self._forward_hooks or self._forward_pre_hooks or _global_backward_hooks
   1129         or _global_forward_hooks or _global_forward_pre_hooks):
-> 1130     return forward_call(*input, **kwargs)
   1131 # Do not call functions when jit is used
   1132 full_backward_hooks, non_full_backward_hooks = [], []

File ~\miniconda3\lib\site-packages\transformers\models\bert\modeling_bert.py:1758, in BertForTokenClassification.forward(self, input_ids, attention_mask, token_type_ids, position_ids, head_mask, inputs_embeds, labels, output_attentions, output_hidden_states, return_dict)
   1752 r"""
   1753 labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
   1754     Labels for computing the token classification loss. Indices should be in `[0, ..., config.num_labels - 1]`.
   1755 """
   1756 return_dict = return_dict if return_dict is not None else self.config.use_return_dict
-> 1758 outputs = self.bert(
   1759     input_ids,
   1760     attention_mask=attention_mask,
   1761     token_type_ids=token_type_ids,
   1762     position_ids=position_ids,
   1763     head_mask=head_mask,
   1764     inputs_embeds=inputs_embeds,
   1765     output_attentions=output_attentions,
   1766     output_hidden_states=output_hidden_states,
   1767     return_dict=return_dict,
   1768 )
   1770 sequence_output = outputs[0]
   1772 sequence_output = self.dropout(sequence_output)

File ~\AppData\Roaming\Python\Python39\site-packages\torch\nn\modules\module.py:1130, in Module._call_impl(self, *input, **kwargs)
   1126 # If we don't have any hooks, we want to skip the rest of the logic in
   1127 # this function, and just call forward.
   1128 if not (self._backward_hooks or self._forward_hooks or self._forward_pre_hooks or _global_backward_hooks
   1129         or _global_forward_hooks or _global_forward_pre_hooks):
-> 1130     return forward_call(*input, **kwargs)
   1131 # Do not call functions when jit is used
   1132 full_backward_hooks, non_full_backward_hooks = [], []

File ~\miniconda3\lib\site-packages\transformers\models\bert\modeling_bert.py:1013, in BertModel.forward(self, input_ids, attention_mask, token_type_ids, position_ids, head_mask, inputs_embeds, encoder_hidden_states, encoder_attention_mask, past_key_values, use_cache, output_attentions, output_hidden_states, return_dict)
   1004 head_mask = self.get_head_mask(head_mask, self.config.num_hidden_layers)
   1006 embedding_output = self.embeddings(
   1007     input_ids=input_ids,
   1008     position_ids=position_ids,
   (...)
   1011     past_key_values_length=past_key_values_length,
   1012 )
-> 1013 encoder_outputs = self.encoder(
   1014     embedding_output,
   1015     attention_mask=extended_attention_mask,
   1016     head_mask=head_mask,
   1017     encoder_hidden_states=encoder_hidden_states,
   1018     encoder_attention_mask=encoder_extended_attention_mask,
   1019     past_key_values=past_key_values,
   1020     use_cache=use_cache,
   1021     output_attentions=output_attentions,
   1022     output_hidden_states=output_hidden_states,
   1023     return_dict=return_dict,
   1024 )
   1025 sequence_output = encoder_outputs[0]
   1026 pooled_output = self.pooler(sequence_output) if self.pooler is not None else None

File ~\AppData\Roaming\Python\Python39\site-packages\torch\nn\modules\module.py:1130, in Module._call_impl(self, *input, **kwargs)
   1126 # If we don't have any hooks, we want to skip the rest of the logic in
   1127 # this function, and just call forward.
   1128 if not (self._backward_hooks or self._forward_hooks or self._forward_pre_hooks or _global_backward_hooks
   1129         or _global_forward_hooks or _global_forward_pre_hooks):
-> 1130     return forward_call(*input, **kwargs)
   1131 # Do not call functions when jit is used
   1132 full_backward_hooks, non_full_backward_hooks = [], []

File ~\miniconda3\lib\site-packages\transformers\models\bert\modeling_bert.py:607, in BertEncoder.forward(self, hidden_states, attention_mask, head_mask, encoder_hidden_states, encoder_attention_mask, past_key_values, use_cache, output_attentions, output_hidden_states, return_dict)
    596     layer_outputs = self._gradient_checkpointing_func(
    597         layer_module.__call__,
    598         hidden_states,
   (...)
    604         output_attentions,
    605     )
    606 else:
--> 607     layer_outputs = layer_module(
    608         hidden_states,
    609         attention_mask,
    610         layer_head_mask,
    611         encoder_hidden_states,
    612         encoder_attention_mask,
    613         past_key_value,
    614         output_attentions,
    615     )
    617 hidden_states = layer_outputs[0]
    618 if use_cache:

File ~\AppData\Roaming\Python\Python39\site-packages\torch\nn\modules\module.py:1130, in Module._call_impl(self, *input, **kwargs)
   1126 # If we don't have any hooks, we want to skip the rest of the logic in
   1127 # this function, and just call forward.
   1128 if not (self._backward_hooks or self._forward_hooks or self._forward_pre_hooks or _global_backward_hooks
   1129         or _global_forward_hooks or _global_forward_pre_hooks):
-> 1130     return forward_call(*input, **kwargs)
   1131 # Do not call functions when jit is used
   1132 full_backward_hooks, non_full_backward_hooks = [], []

File ~\miniconda3\lib\site-packages\transformers\models\bert\modeling_bert.py:539, in BertLayer.forward(self, hidden_states, attention_mask, head_mask, encoder_hidden_states, encoder_attention_mask, past_key_value, output_attentions)
    536     cross_attn_present_key_value = cross_attention_outputs[-1]
    537     present_key_value = present_key_value + cross_attn_present_key_value
--> 539 layer_output = apply_chunking_to_forward(
    540     self.feed_forward_chunk, self.chunk_size_feed_forward, self.seq_len_dim, attention_output
    541 )
    542 outputs = (layer_output,) + outputs
    544 # if decoder, return the attn key/values as the last output

File ~\miniconda3\lib\site-packages\transformers\pytorch_utils.py:236, in apply_chunking_to_forward(forward_fn, chunk_size, chunk_dim, *input_tensors)
    233     # concatenate output at same dimension
    234     return torch.cat(output_chunks, dim=chunk_dim)
--> 236 return forward_fn(*input_tensors)

File ~\miniconda3\lib\site-packages\transformers\models\bert\modeling_bert.py:552, in BertLayer.feed_forward_chunk(self, attention_output)
    550 def feed_forward_chunk(self, attention_output):
    551     intermediate_output = self.intermediate(attention_output)
--> 552     layer_output = self.output(intermediate_output, attention_output)
    553     return layer_output

File ~\AppData\Roaming\Python\Python39\site-packages\torch\nn\modules\module.py:1130, in Module._call_impl(self, *input, **kwargs)
   1126 # If we don't have any hooks, we want to skip the rest of the logic in
   1127 # this function, and just call forward.
   1128 if not (self._backward_hooks or self._forward_hooks or self._forward_pre_hooks or _global_backward_hooks
   1129         or _global_forward_hooks or _global_forward_pre_hooks):
-> 1130     return forward_call(*input, **kwargs)
   1131 # Do not call functions when jit is used
   1132 full_backward_hooks, non_full_backward_hooks = [], []

File ~\miniconda3\lib\site-packages\transformers\models\bert\modeling_bert.py:464, in BertOutput.forward(self, hidden_states, input_tensor)
    463 def forward(self, hidden_states: torch.Tensor, input_tensor: torch.Tensor) -> torch.Tensor:
--> 464     hidden_states = self.dense(hidden_states)
    465     hidden_states = self.dropout(hidden_states)
    466     hidden_states = self.LayerNorm(hidden_states + input_tensor)

File ~\AppData\Roaming\Python\Python39\site-packages\torch\nn\modules\module.py:1130, in Module._call_impl(self, *input, **kwargs)
   1126 # If we don't have any hooks, we want to skip the rest of the logic in
   1127 # this function, and just call forward.
   1128 if not (self._backward_hooks or self._forward_hooks or self._forward_pre_hooks or _global_backward_hooks
   1129         or _global_forward_hooks or _global_forward_pre_hooks):
-> 1130     return forward_call(*input, **kwargs)
   1131 # Do not call functions when jit is used
   1132 full_backward_hooks, non_full_backward_hooks = [], []

File ~\AppData\Roaming\Python\Python39\site-packages\torch\nn\modules\linear.py:114, in Linear.forward(self, input)
    113 def forward(self, input: Tensor) -> Tensor:
--> 114     return F.linear(input, self.weight, self.bias)

KeyboardInterrupt: 
import re
def get_word_indices(string_to_search):
    pattern = "\s\S"
    #pattern = "(\s\S)|^\S"
    matches = re.finditer(pattern, string_to_search)
    indices = [m.start(0)+1 for m in matches]
    if not string_to_search[0].isspace():
        indices.append(0)
    return sorted(indices)

print(get_word_indices("This is a test, test, test"))
print(get_word_indices("aaa . <S> aaaa"))
[0, 5, 8, 10, 16, 22]
[0, 4, 6, 10]
def get_word_beginning(string_to_search, letter_index):
    current_index = letter_index
    while current_index>0:
        current_index-=1
        if string_to_search[current_index]==" ":
            return current_index+1
    return 0
from pprint import pprint
def wordpiece_to_word_tokenization(ner_tokenized, original_sentence):
    # https://stackoverflow.com/a/72685554 # Zmodyfikowana wersja tego, żeby tagi O też dodawać
    #tag_start_indices = set()
    word_start_index_to_tag = dict()
    formatted_results = []
    for result in ner_tokenized:
      end = result["start"]+len(result["word"].replace("##", ""))

      abbreviation_flag = False # Dodane ze względu na problemy ze skrótem U.N. tokenizowanym jako dwa słowa bez ##
      if len(formatted_results)>0 and not original_sentence[result["start"]-1].isspace():
          abbreviation_flag=True
      if (result["word"].startswith("##") and len(formatted_results)>0 and result["start"]==formatted_results[-1]["end"]) or abbreviation_flag:
        formatted_results[-1]["end"] = end
        formatted_results[-1]["word"]+= result["word"].replace("##", "")
      elif len(formatted_results)==0 or (result["word"].startswith("##") and not result["start"] == formatted_results[-1]["end"]):
        formatted_results.append({
            'start': result["start"],
            'end': end,
            'entity': result["entity"],
            'index': result["index"],
            'score': result["score"],
            'word': result["word"]})
        formatted_results[-1]["start"] = get_word_beginning(original_sentence,formatted_results[-1]["start"])
      else:
        formatted_results.append({
            'start': result["start"],
            'end': end,
            'entity': result["entity"],
            'index': result["index"],
            'score': result["score"],
            'word': result["word"]})
    #print(sorted(formatted_results, key=lambda x: x["start"]))
    for result in formatted_results:
        word_start_index_to_tag[result["start"]] = result["entity"]
    for index in get_word_indices(original_sentence):
        if index not in word_start_index_to_tag:
            word_start_index_to_tag[index] = "O"
    return [word_start_index_to_tag[index] for index in sorted(word_start_index_to_tag.keys())]

def get_ner_tokenization(sentence):
    wordpiece_tokenized = nlp(sentence)
    final = wordpiece_to_word_tokenization(wordpiece_tokenized, sentence)
    input_word_tokens = sentence.split()
    pprint(list(zip(input_word_tokens, final)))
    return final

test_string= """NATO monitors Moslem move towards tense village . </S> MAHALA , Bosnia 1996-08-31 </S> NATO said it was closely monitoring the movement of about 75 Moslem men towards the village of Mahala in Bosnia 's Serb republic on Saturday , two days after a violent confrontation with Serbs . </S> " I have to report this morning that we have in fact received reports ... </S> that up to 75 Moslem men are believed to be approaching Mahala , " NATO spokesman Lieutenant-Colonel Max Marriner said in Sarajevo . </S> Marriner said that NATO troops had set up a checkpoint on the road between Tuzla and Mahala to establish the identities and intentions of the men headed towards the village . </S> Mahala is a Moslem village on Bosnian Serb republic territory . </S> Moslems were driven from the village during the 43- month Bosnian war and most of their houses were destroyed . </S> Some Moslems began returning to rebuild their properties earlier in the week . </S> Fights and shooting broke out between the Moslems and Serb police on Thursday and NATO troops finally brought restored order . </S> A Reuters reporter who entered Mahala on Saturday morning found it tranquil but NATO troops and U.N. police were seen on the ground and NATO helicopters flew overhead . </S>"""

test_tokenized = get_ner_tokenization(test_string)
expected_out = """B-ORG O B-MISC O O O O O O B-LOC O B-LOC O O B-ORG O O O O O O O O O O B-MISC O O O O O B-LOC O B-LOC O B-MISC O O O O O O O O O O O B-MISC O O O O O O O O O O O O O O O O O O O O O O B-MISC O O O O O O B-LOC O O B-ORG O O B-PER I-PER O O B-LOC O O B-PER O O B-ORG O O O O O O O O O O B-LOC O B-LOC O O O O O O O O O O O O O O O B-LOC O O B-MISC O O B-MISC I-MISC O O O O B-MISC O O O O O O O O O B-MISC O O O O O O O O O O O B-MISC O O O O O O O O O O O O O O O O O O O B-MISC O B-MISC O O O O B-ORG O O O O O O O O B-ORG O O O B-LOC O O O O O O O B-ORG O O B-ORG O O O O O O O B-ORG O O O O O"""

print(len(test_tokenized))
print(len(test_string.split()))
print(len(expected_out.split()))
[('NATO', 'I-ORG'),
 ('monitors', 'O'),
 ('Moslem', 'I-MISC'),
 ('move', 'O'),
 ('towards', 'O'),
 ('tense', 'O'),
 ('village', 'O'),
 ('.', 'O'),
 ('</S>', 'O'),
 ('MAHALA', 'I-LOC'),
 (',', 'O'),
 ('Bosnia', 'I-LOC'),
 ('1996-08-31', 'O'),
 ('</S>', 'O'),
 ('NATO', 'I-ORG'),
 ('said', 'O'),
 ('it', 'O'),
 ('was', 'O'),
 ('closely', 'O'),
 ('monitoring', 'O'),
 ('the', 'O'),
 ('movement', 'O'),
 ('of', 'O'),
 ('about', 'O'),
 ('75', 'O'),
 ('Moslem', 'I-MISC'),
 ('men', 'O'),
 ('towards', 'O'),
 ('the', 'O'),
 ('village', 'O'),
 ('of', 'O'),
 ('Mahala', 'I-LOC'),
 ('in', 'O'),
 ('Bosnia', 'I-LOC'),
 ("'s", 'O'),
 ('Serb', 'I-MISC'),
 ('republic', 'O'),
 ('on', 'O'),
 ('Saturday', 'O'),
 (',', 'O'),
 ('two', 'O'),
 ('days', 'O'),
 ('after', 'O'),
 ('a', 'O'),
 ('violent', 'O'),
 ('confrontation', 'O'),
 ('with', 'O'),
 ('Serbs', 'I-MISC'),
 ('.', 'O'),
 ('</S>', 'O'),
 ('"', 'O'),
 ('I', 'O'),
 ('have', 'O'),
 ('to', 'O'),
 ('report', 'O'),
 ('this', 'O'),
 ('morning', 'O'),
 ('that', 'O'),
 ('we', 'O'),
 ('have', 'O'),
 ('in', 'O'),
 ('fact', 'O'),
 ('received', 'O'),
 ('reports', 'O'),
 ('...', 'O'),
 ('</S>', 'O'),
 ('that', 'O'),
 ('up', 'O'),
 ('to', 'O'),
 ('75', 'O'),
 ('Moslem', 'I-MISC'),
 ('men', 'O'),
 ('are', 'O'),
 ('believed', 'O'),
 ('to', 'O'),
 ('be', 'O'),
 ('approaching', 'O'),
 ('Mahala', 'I-LOC'),
 (',', 'O'),
 ('"', 'O'),
 ('NATO', 'I-ORG'),
 ('spokesman', 'O'),
 ('Lieutenant-Colonel', 'O'),
 ('Max', 'I-PER'),
 ('Marriner', 'I-PER'),
 ('said', 'O'),
 ('in', 'O'),
 ('Sarajevo', 'I-LOC'),
 ('.', 'O'),
 ('</S>', 'O'),
 ('Marriner', 'I-PER'),
 ('said', 'O'),
 ('that', 'O'),
 ('NATO', 'I-ORG'),
 ('troops', 'O'),
 ('had', 'O'),
 ('set', 'O'),
 ('up', 'O'),
 ('a', 'O'),
 ('checkpoint', 'O'),
 ('on', 'O'),
 ('the', 'O'),
 ('road', 'O'),
 ('between', 'O'),
 ('Tuzla', 'I-LOC'),
 ('and', 'O'),
 ('Mahala', 'I-LOC'),
 ('to', 'O'),
 ('establish', 'O'),
 ('the', 'O'),
 ('identities', 'O'),
 ('and', 'O'),
 ('intentions', 'O'),
 ('of', 'O'),
 ('the', 'O'),
 ('men', 'O'),
 ('headed', 'O'),
 ('towards', 'O'),
 ('the', 'O'),
 ('village', 'O'),
 ('.', 'O'),
 ('</S>', 'O'),
 ('Mahala', 'I-LOC'),
 ('is', 'O'),
 ('a', 'O'),
 ('Moslem', 'I-MISC'),
 ('village', 'O'),
 ('on', 'O'),
 ('Bosnian', 'I-MISC'),
 ('Serb', 'I-MISC'),
 ('republic', 'O'),
 ('territory', 'O'),
 ('.', 'O'),
 ('</S>', 'O'),
 ('Moslems', 'I-MISC'),
 ('were', 'O'),
 ('driven', 'O'),
 ('from', 'O'),
 ('the', 'O'),
 ('village', 'O'),
 ('during', 'O'),
 ('the', 'O'),
 ('43-', 'O'),
 ('month', 'O'),
 ('Bosnian', 'I-MISC'),
 ('war', 'O'),
 ('and', 'O'),
 ('most', 'O'),
 ('of', 'O'),
 ('their', 'O'),
 ('houses', 'O'),
 ('were', 'O'),
 ('destroyed', 'O'),
 ('.', 'O'),
 ('</S>', 'O'),
 ('Some', 'O'),
 ('Moslems', 'I-MISC'),
 ('began', 'O'),
 ('returning', 'O'),
 ('to', 'O'),
 ('rebuild', 'O'),
 ('their', 'O'),
 ('properties', 'O'),
 ('earlier', 'O'),
 ('in', 'O'),
 ('the', 'O'),
 ('week', 'O'),
 ('.', 'O'),
 ('</S>', 'O'),
 ('Fights', 'O'),
 ('and', 'O'),
 ('shooting', 'O'),
 ('broke', 'O'),
 ('out', 'O'),
 ('between', 'O'),
 ('the', 'O'),
 ('Moslems', 'I-MISC'),
 ('and', 'O'),
 ('Serb', 'I-MISC'),
 ('police', 'O'),
 ('on', 'O'),
 ('Thursday', 'O'),
 ('and', 'O'),
 ('NATO', 'I-ORG'),
 ('troops', 'O'),
 ('finally', 'O'),
 ('brought', 'O'),
 ('restored', 'O'),
 ('order', 'O'),
 ('.', 'O'),
 ('</S>', 'O'),
 ('A', 'O'),
 ('Reuters', 'I-ORG'),
 ('reporter', 'O'),
 ('who', 'O'),
 ('entered', 'O'),
 ('Mahala', 'I-LOC'),
 ('on', 'O'),
 ('Saturday', 'O'),
 ('morning', 'O'),
 ('found', 'O'),
 ('it', 'O'),
 ('tranquil', 'O'),
 ('but', 'O'),
 ('NATO', 'I-ORG'),
 ('troops', 'O'),
 ('and', 'O'),
 ('U.N.', 'I-ORG'),
 ('police', 'O'),
 ('were', 'O'),
 ('seen', 'O'),
 ('on', 'O'),
 ('the', 'O'),
 ('ground', 'O'),
 ('and', 'O'),
 ('NATO', 'I-ORG'),
 ('helicopters', 'O'),
 ('flew', 'O'),
 ('overhead', 'O'),
 ('.', 'O'),
 ('</S>', 'O')]
221
221
221
nlp("""CRICKET - ENGLISH COUNTY CHAMPIONSHIP SCORES . </S> LONDON 1996-08-30 </S> Result and close of play scores in English county championship matches on Friday : </S> Leicester : Leicestershire beat Somerset by an innings and 39 runs . </S> Somerset 83 and 174 ( P. Simmons 4-38 ) , Leicestershire 296 . </S> Leicestershire 22 points , Somerset 4 . </S> Chester-le-Street : Glamorgan 259 and 207 ( A. Dale 69 , H. Morris 69 ; D. Blenkiron 4-43 ) , Durham 114 ( S. Watkin 4-28 ) and 81-3 . </S> Tunbridge Wells : Nottinghamshire 214 ( P. Johnson 84 ; M. McCague 4-55 ) , Kent 108-3 . </S> London ( The Oval ) : Warwickshire 195 , Surrey 429-7 ( C. Lewis 80 not out , M. Butcher 70 , G. Kersey 63 , J. Ratcliffe 63 , D. Bicknell 55 ) . </S> Hove : Sussex 363 ( W. Athey 111 , V. Drakes 52 ; I. Austin 4-37 ) , Lancashire 197-8 ( W. Hegg 54 ) </S> Portsmouth : Middlesex 199 and 426 ( J. Pooley 111 , M. Ramprakash 108 , M. Gatting 83 ) , Hampshire 232 and 109-5 . </S> Chesterfield : Worcestershire 238 and 133-5 , Derbyshire 471 ( J. Adams 123 , T.O'Gorman 109 not out , K. Barnett 87 ; T. Moody 6-82 ) </S> Bristol : Gloucestershire 183 and 185-6 ( J. Russell 56 not out ) , Northamptonshire 190 ( K. Curran 52 ; A. Smith 5-68 ) . </S>""")
nlp("""CRICKET - ENGLISH COUNTY CHAMPIONSHIP SCORES . </S> LONDON 1996-08-30 </S> Result and close of play scores in English county championship matches on Friday : </S> Leicester : Leicestershire beat Somerset by an innings and 39 runs . </S> Somerset 83 and 174 ( P. Simmons 4-38 ) , Leicestershire 296 . </S> Leicestershire 22 points , Somerset 4 . </S> Chester-le-Street : Glamorgan 259 and 207 ( A. Dale 69 , H. Morris 69 ; D. Blenkiron 4-43 ) , Durham 114 ( S. Watkin 4-28 ) and 81-3 . </S> Tunbridge Wells : Nottinghamshire 214 ( P. Johnson 84 ; M. McCague 4-55 ) , Kent 108-3 . </S> London ( The Oval ) : Warwickshire 195 , Surrey 429-7 ( C. Lewis 80 not out , M. Butcher 70 , G. Kersey 63 , J. Ratcliffe 63 , D. Bicknell 55 ) . </S> Hove : Sussex 363 ( W. Athey 111 , V. Drakes 52 ; I. Austin 4-37 ) , Lancashire 197-8 ( W. Hegg 54 ) </S> Portsmouth : Middlesex 199 and 426 ( J. Pooley 111 , M. Ramprakash 108 , M. Gatting 83 ) , Hampshire 232 and 109-5 . </S> Chesterfield : Worcestershire 238 and 133-5 , Derbyshire 471 ( J. Adams 123 , T.O'Gorman 109 not out , K. Barnett 87 ; T. Moody 6-82 ) </S> Bristol : Gloucestershire 183 and 185-6 ( J. Russell 56 not out ) , Northamptonshire 190 ( K. Curran 52 ; A. Smith 5-68 ) . </S>""")
[{'entity': 'I-MISC',
  'score': 0.46102676,
  'index': 2,
  'word': '##IC',
  'start': 2,
  'end': 4},
 {'entity': 'I-MISC',
  'score': 0.99607205,
  'index': 6,
  'word': 'E',
  'start': 10,
  'end': 11},
 {'entity': 'I-MISC',
  'score': 0.95949733,
  'index': 7,
  'word': '##NG',
  'start': 11,
  'end': 13},
 {'entity': 'I-MISC',
  'score': 0.95654744,
  'index': 8,
  'word': '##L',
  'start': 13,
  'end': 14},
 {'entity': 'I-MISC',
  'score': 0.50948775,
  'index': 10,
  'word': '##H',
  'start': 16,
  'end': 17},
 {'entity': 'I-MISC',
  'score': 0.9255237,
  'index': 11,
  'word': 'CO',
  'start': 18,
  'end': 20},
 {'entity': 'I-MISC',
  'score': 0.62757576,
  'index': 12,
  'word': '##UN',
  'start': 20,
  'end': 22},
 {'entity': 'I-MISC',
  'score': 0.8929872,
  'index': 13,
  'word': '##TY',
  'start': 22,
  'end': 24},
 {'entity': 'I-MISC',
  'score': 0.97692674,
  'index': 14,
  'word': 'CH',
  'start': 25,
  'end': 27},
 {'entity': 'I-MISC',
  'score': 0.45881018,
  'index': 15,
  'word': '##AM',
  'start': 27,
  'end': 29},
 {'entity': 'I-MISC',
  'score': 0.6647645,
  'index': 19,
  'word': '##H',
  'start': 34,
  'end': 35},
 {'entity': 'I-LOC',
  'score': 0.99827445,
  'index': 29,
  'word': 'L',
  'start': 52,
  'end': 53},
 {'entity': 'I-LOC',
  'score': 0.98857844,
  'index': 30,
  'word': '##ON',
  'start': 53,
  'end': 55},
 {'entity': 'I-LOC',
  'score': 0.8327747,
  'index': 31,
  'word': '##D',
  'start': 55,
  'end': 56},
 {'entity': 'I-LOC',
  'score': 0.9980028,
  'index': 32,
  'word': '##ON',
  'start': 56,
  'end': 58},
 {'entity': 'I-MISC',
  'score': 0.99895835,
  'index': 51,
  'word': 'English',
  'start': 110,
  'end': 117},
 {'entity': 'I-LOC',
  'score': 0.99821544,
  'index': 62,
  'word': 'Leicester',
  'start': 163,
  'end': 172},
 {'entity': 'I-ORG',
  'score': 0.99364024,
  'index': 64,
  'word': 'Leicestershire',
  'start': 175,
  'end': 189},
 {'entity': 'I-ORG',
  'score': 0.99720687,
  'index': 66,
  'word': 'Somerset',
  'start': 195,
  'end': 203},
 {'entity': 'I-ORG',
  'score': 0.9979146,
  'index': 78,
  'word': 'Somerset',
  'start': 237,
  'end': 245},
 {'entity': 'I-PER',
  'score': 0.9997062,
  'index': 83,
  'word': 'P',
  'start': 259,
  'end': 260},
 {'entity': 'I-PER',
  'score': 0.8936373,
  'index': 84,
  'word': '.',
  'start': 260,
  'end': 261},
 {'entity': 'I-PER',
  'score': 0.9998217,
  'index': 85,
  'word': 'Simmons',
  'start': 262,
  'end': 269},
 {'entity': 'I-ORG',
  'score': 0.9983664,
  'index': 91,
  'word': 'Leicestershire',
  'start': 279,
  'end': 293},
 {'entity': 'I-ORG',
  'score': 0.998063,
  'index': 99,
  'word': 'Leicestershire',
  'start': 305,
  'end': 319},
 {'entity': 'I-ORG',
  'score': 0.99934715,
  'index': 103,
  'word': 'Somerset',
  'start': 332,
  'end': 340},
 {'entity': 'I-LOC',
  'score': 0.9975303,
  'index': 110,
  'word': 'Chester',
  'start': 350,
  'end': 357},
 {'entity': 'I-LOC',
  'score': 0.96212333,
  'index': 111,
  'word': '-',
  'start': 357,
  'end': 358},
 {'entity': 'I-LOC',
  'score': 0.9865856,
  'index': 112,
  'word': 'le',
  'start': 358,
  'end': 360},
 {'entity': 'I-LOC',
  'score': 0.89539164,
  'index': 113,
  'word': '-',
  'start': 360,
  'end': 361},
 {'entity': 'I-LOC',
  'score': 0.98996615,
  'index': 114,
  'word': 'Street',
  'start': 361,
  'end': 367},
 {'entity': 'I-ORG',
  'score': 0.9994879,
  'index': 116,
  'word': 'Glamorgan',
  'start': 370,
  'end': 379},
 {'entity': 'I-PER',
  'score': 0.99971515,
  'index': 122,
  'word': 'A',
  'start': 394,
  'end': 395},
 {'entity': 'I-PER',
  'score': 0.9317695,
  'index': 123,
  'word': '.',
  'start': 395,
  'end': 396},
 {'entity': 'I-PER',
  'score': 0.9998431,
  'index': 124,
  'word': 'Dale',
  'start': 397,
  'end': 401},
 {'entity': 'I-PER',
  'score': 0.99972874,
  'index': 127,
  'word': 'H',
  'start': 407,
  'end': 408},
 {'entity': 'I-PER',
  'score': 0.87753445,
  'index': 128,
  'word': '.',
  'start': 408,
  'end': 409},
 {'entity': 'I-PER',
  'score': 0.9998385,
  'index': 129,
  'word': 'Morris',
  'start': 410,
  'end': 416},
 {'entity': 'I-PER',
  'score': 0.99969065,
  'index': 132,
  'word': 'D',
  'start': 422,
  'end': 423},
 {'entity': 'I-PER',
  'score': 0.922977,
  'index': 133,
  'word': '.',
  'start': 423,
  'end': 424},
 {'entity': 'I-PER',
  'score': 0.99974626,
  'index': 134,
  'word': 'B',
  'start': 425,
  'end': 426},
 {'entity': 'I-PER',
  'score': 0.9913414,
  'index': 135,
  'word': '##len',
  'start': 426,
  'end': 429},
 {'entity': 'I-PER',
  'score': 0.8400255,
  'index': 136,
  'word': '##ki',
  'start': 429,
  'end': 431},
 {'entity': 'I-PER',
  'score': 0.99338186,
  'index': 137,
  'word': '##ron',
  'start': 431,
  'end': 434},
 {'entity': 'I-ORG',
  'score': 0.9991248,
  'index': 143,
  'word': 'Durham',
  'start': 444,
  'end': 450},
 {'entity': 'I-PER',
  'score': 0.999653,
  'index': 146,
  'word': 'S',
  'start': 457,
  'end': 458},
 {'entity': 'I-PER',
  'score': 0.8763534,
  'index': 147,
  'word': '.',
  'start': 458,
  'end': 459},
 {'entity': 'I-PER',
  'score': 0.99944955,
  'index': 148,
  'word': 'W',
  'start': 460,
  'end': 461},
 {'entity': 'I-PER',
  'score': 0.95776916,
  'index': 149,
  'word': '##at',
  'start': 461,
  'end': 463},
 {'entity': 'I-PER',
  'score': 0.99564385,
  'index': 150,
  'word': '##kin',
  'start': 463,
  'end': 466},
 {'entity': 'I-LOC',
  'score': 0.99488115,
  'index': 164,
  'word': 'Tu',
  'start': 490,
  'end': 492},
 {'entity': 'I-LOC',
  'score': 0.9962608,
  'index': 165,
  'word': '##nbridge',
  'start': 492,
  'end': 499},
 {'entity': 'I-LOC',
  'score': 0.9974607,
  'index': 166,
  'word': 'Wells',
  'start': 500,
  'end': 505},
 {'entity': 'I-ORG',
  'score': 0.999209,
  'index': 168,
  'word': 'Nottinghamshire',
  'start': 508,
  'end': 523},
 {'entity': 'I-PER',
  'score': 0.999744,
  'index': 171,
  'word': 'P',
  'start': 530,
  'end': 531},
 {'entity': 'I-PER',
  'score': 0.82745236,
  'index': 172,
  'word': '.',
  'start': 531,
  'end': 532},
 {'entity': 'I-PER',
  'score': 0.9998394,
  'index': 173,
  'word': 'Johnson',
  'start': 533,
  'end': 540},
 {'entity': 'I-PER',
  'score': 0.99975556,
  'index': 176,
  'word': 'M',
  'start': 546,
  'end': 547},
 {'entity': 'I-PER',
  'score': 0.9440478,
  'index': 177,
  'word': '.',
  'start': 547,
  'end': 548},
 {'entity': 'I-PER',
  'score': 0.99970907,
  'index': 178,
  'word': 'M',
  'start': 549,
  'end': 550},
 {'entity': 'I-PER',
  'score': 0.99924505,
  'index': 179,
  'word': '##c',
  'start': 550,
  'end': 551},
 {'entity': 'I-PER',
  'score': 0.99934775,
  'index': 180,
  'word': '##C',
  'start': 551,
  'end': 552},
 {'entity': 'I-PER',
  'score': 0.9995943,
  'index': 181,
  'word': '##ague',
  'start': 552,
  'end': 556},
 {'entity': 'I-ORG',
  'score': 0.99935454,
  'index': 187,
  'word': 'Kent',
  'start': 566,
  'end': 570},
 {'entity': 'I-LOC',
  'score': 0.9988416,
  'index': 196,
  'word': 'London',
  'start': 584,
  'end': 590},
 {'entity': 'I-LOC',
  'score': 0.9944748,
  'index': 198,
  'word': 'The',
  'start': 593,
  'end': 596},
 {'entity': 'I-LOC',
  'score': 0.9988834,
  'index': 199,
  'word': 'Oval',
  'start': 597,
  'end': 601},
 {'entity': 'I-ORG',
  'score': 0.99928087,
  'index': 202,
  'word': 'Warwickshire',
  'start': 606,
  'end': 618},
 {'entity': 'I-ORG',
  'score': 0.9995234,
  'index': 205,
  'word': 'Surrey',
  'start': 625,
  'end': 631},
 {'entity': 'I-PER',
  'score': 0.9997532,
  'index': 211,
  'word': 'C',
  'start': 640,
  'end': 641},
 {'entity': 'I-PER',
  'score': 0.7801328,
  'index': 212,
  'word': '.',
  'start': 641,
  'end': 642},
 {'entity': 'I-PER',
  'score': 0.9998155,
  'index': 213,
  'word': 'Lewis',
  'start': 643,
  'end': 648},
 {'entity': 'I-PER',
  'score': 0.9997625,
  'index': 218,
  'word': 'M',
  'start': 662,
  'end': 663},
 {'entity': 'I-PER',
  'score': 0.957568,
  'index': 219,
  'word': '.',
  'start': 663,
  'end': 664},
 {'entity': 'I-PER',
  'score': 0.99986136,
  'index': 220,
  'word': 'Butcher',
  'start': 665,
  'end': 672},
 {'entity': 'I-PER',
  'score': 0.999775,
  'index': 223,
  'word': 'G',
  'start': 678,
  'end': 679},
 {'entity': 'I-PER',
  'score': 0.98381627,
  'index': 224,
  'word': '.',
  'start': 679,
  'end': 680},
 {'entity': 'I-PER',
  'score': 0.9997563,
  'index': 225,
  'word': 'Ke',
  'start': 681,
  'end': 683},
 {'entity': 'I-PER',
  'score': 0.9994734,
  'index': 226,
  'word': '##rsey',
  'start': 683,
  'end': 687},
 {'entity': 'I-PER',
  'score': 0.99967635,
  'index': 229,
  'word': 'J',
  'start': 693,
  'end': 694},
 {'entity': 'I-PER',
  'score': 0.95457244,
  'index': 230,
  'word': '.',
  'start': 694,
  'end': 695},
 {'entity': 'I-PER',
  'score': 0.9997335,
  'index': 231,
  'word': 'Rat',
  'start': 696,
  'end': 699},
 {'entity': 'I-PER',
  'score': 0.99928397,
  'index': 232,
  'word': '##cliffe',
  'start': 699,
  'end': 705},
 {'entity': 'I-PER',
  'score': 0.99970824,
  'index': 235,
  'word': 'D',
  'start': 711,
  'end': 712},
 {'entity': 'I-PER',
  'score': 0.9371404,
  'index': 236,
  'word': '.',
  'start': 712,
  'end': 713},
 {'entity': 'I-PER',
  'score': 0.99977785,
  'index': 237,
  'word': 'B',
  'start': 714,
  'end': 715},
 {'entity': 'I-PER',
  'score': 0.9985782,
  'index': 238,
  'word': '##ick',
  'start': 715,
  'end': 718},
 {'entity': 'I-PER',
  'score': 0.9979285,
  'index': 239,
  'word': '##nell',
  'start': 718,
  'end': 722},
 {'entity': 'I-LOC',
  'score': 0.98276377,
  'index': 247,
  'word': 'Ho',
  'start': 735,
  'end': 737},
 {'entity': 'I-LOC',
  'score': 0.96021694,
  'index': 248,
  'word': '##ve',
  'start': 737,
  'end': 739},
 {'entity': 'I-ORG',
  'score': 0.99935216,
  'index': 250,
  'word': 'Sussex',
  'start': 742,
  'end': 748},
 {'entity': 'I-PER',
  'score': 0.9996948,
  'index': 254,
  'word': 'W',
  'start': 755,
  'end': 756},
 {'entity': 'I-PER',
  'score': 0.9155417,
  'index': 255,
  'word': '.',
  'start': 756,
  'end': 757},
 {'entity': 'I-PER',
  'score': 0.9997483,
  'index': 256,
  'word': 'At',
  'start': 758,
  'end': 760},
 {'entity': 'I-PER',
  'score': 0.9951519,
  'index': 257,
  'word': '##hey',
  'start': 760,
  'end': 763},
 {'entity': 'I-PER',
  'score': 0.9997428,
  'index': 260,
  'word': 'V',
  'start': 770,
  'end': 771},
 {'entity': 'I-PER',
  'score': 0.96087766,
  'index': 261,
  'word': '.',
  'start': 771,
  'end': 772},
 {'entity': 'I-PER',
  'score': 0.9995759,
  'index': 262,
  'word': 'Drake',
  'start': 773,
  'end': 778},
 {'entity': 'I-PER',
  'score': 0.9957624,
  'index': 263,
  'word': '##s',
  'start': 778,
  'end': 779},
 {'entity': 'I-PER',
  'score': 0.99975723,
  'index': 266,
  'word': 'I',
  'start': 785,
  'end': 786},
 {'entity': 'I-PER',
  'score': 0.9798331,
  'index': 267,
  'word': '.',
  'start': 786,
  'end': 787},
 {'entity': 'I-PER',
  'score': 0.9998472,
  'index': 268,
  'word': 'Austin',
  'start': 788,
  'end': 794},
 {'entity': 'I-ORG',
  'score': 0.99931324,
  'index': 274,
  'word': 'Lancashire',
  'start': 804,
  'end': 814},
 {'entity': 'I-PER',
  'score': 0.9996283,
  'index': 279,
  'word': 'W',
  'start': 823,
  'end': 824},
 {'entity': 'I-PER',
  'score': 0.90980345,
  'index': 280,
  'word': '.',
  'start': 824,
  'end': 825},
 {'entity': 'I-PER',
  'score': 0.9989716,
  'index': 281,
  'word': 'He',
  'start': 826,
  'end': 828},
 {'entity': 'I-PER',
  'score': 0.99694973,
  'index': 282,
  'word': '##gg',
  'start': 828,
  'end': 830},
 {'entity': 'I-LOC',
  'score': 0.9942986,
  'index': 289,
  'word': 'Portsmouth',
  'start': 841,
  'end': 851},
 {'entity': 'I-ORG',
  'score': 0.99923646,
  'index': 291,
  'word': 'Middlesex',
  'start': 854,
  'end': 863},
 {'entity': 'I-PER',
  'score': 0.99967885,
  'index': 297,
  'word': 'J',
  'start': 878,
  'end': 879},
 {'entity': 'I-PER',
  'score': 0.9150865,
  'index': 298,
  'word': '.',
  'start': 879,
  'end': 880},
 {'entity': 'I-PER',
  'score': 0.9997217,
  'index': 299,
  'word': 'Poole',
  'start': 881,
  'end': 886},
 {'entity': 'I-PER',
  'score': 0.9855326,
  'index': 300,
  'word': '##y',
  'start': 886,
  'end': 887},
 {'entity': 'I-PER',
  'score': 0.99973243,
  'index': 303,
  'word': 'M',
  'start': 894,
  'end': 895},
 {'entity': 'I-PER',
  'score': 0.92502993,
  'index': 304,
  'word': '.',
  'start': 895,
  'end': 896},
 {'entity': 'I-PER',
  'score': 0.99980193,
  'index': 305,
  'word': 'Ram',
  'start': 897,
  'end': 900},
 {'entity': 'I-PER',
  'score': 0.9988908,
  'index': 306,
  'word': '##pra',
  'start': 900,
  'end': 903},
 {'entity': 'I-PER',
  'score': 0.94621354,
  'index': 307,
  'word': '##kas',
  'start': 903,
  'end': 906},
 {'entity': 'I-PER',
  'score': 0.9942021,
  'index': 308,
  'word': '##h',
  'start': 906,
  'end': 907},
 {'entity': 'I-PER',
  'score': 0.99971014,
  'index': 311,
  'word': 'M',
  'start': 914,
  'end': 915},
 {'entity': 'I-PER',
  'score': 0.90779895,
  'index': 312,
  'word': '.',
  'start': 915,
  'end': 916},
 {'entity': 'I-PER',
  'score': 0.99955374,
  'index': 313,
  'word': 'G',
  'start': 917,
  'end': 918},
 {'entity': 'I-PER',
  'score': 0.9962297,
  'index': 314,
  'word': '##att',
  'start': 918,
  'end': 921},
 {'entity': 'I-PER',
  'score': 0.9943855,
  'index': 315,
  'word': '##ing',
  'start': 921,
  'end': 924},
 {'entity': 'I-ORG',
  'score': 0.99938464,
  'index': 319,
  'word': 'Hampshire',
  'start': 932,
  'end': 941},
 {'entity': 'I-LOC',
  'score': 0.9905847,
  'index': 330,
  'word': 'Chesterfield',
  'start': 963,
  'end': 975},
 {'entity': 'I-ORG',
  'score': 0.99893564,
  'index': 332,
  'word': 'Worcestershire',
  'start': 978,
  'end': 992},
 {'entity': 'I-ORG',
  'score': 0.9993286,
  'index': 339,
  'word': 'Derbyshire',
  'start': 1009,
  'end': 1019},
 {'entity': 'I-PER',
  'score': 0.9996786,
  'index': 343,
  'word': 'J',
  'start': 1026,
  'end': 1027},
 {'entity': 'I-PER',
  'score': 0.908016,
  'index': 344,
  'word': '.',
  'start': 1027,
  'end': 1028},
 {'entity': 'I-PER',
  'score': 0.9998272,
  'index': 345,
  'word': 'Adams',
  'start': 1029,
  'end': 1034},
 {'entity': 'I-PER',
  'score': 0.9997596,
  'index': 348,
  'word': 'T',
  'start': 1041,
  'end': 1042},
 {'entity': 'I-PER',
  'score': 0.96453863,
  'index': 349,
  'word': '.',
  'start': 1042,
  'end': 1043},
 {'entity': 'I-PER',
  'score': 0.9997553,
  'index': 350,
  'word': 'O',
  'start': 1043,
  'end': 1044},
 {'entity': 'I-PER',
  'score': 0.9975132,
  'index': 351,
  'word': "'",
  'start': 1044,
  'end': 1045},
 {'entity': 'I-PER',
  'score': 0.9980426,
  'index': 352,
  'word': 'Go',
  'start': 1045,
  'end': 1047},
 {'entity': 'I-PER',
  'score': 0.99937373,
  'index': 353,
  'word': '##rman',
  'start': 1047,
  'end': 1051},
 {'entity': 'I-PER',
  'score': 0.99974066,
  'index': 358,
  'word': 'K',
  'start': 1066,
  'end': 1067},
 {'entity': 'I-PER',
  'score': 0.9367585,
  'index': 359,
  'word': '.',
  'start': 1067,
  'end': 1068},
 {'entity': 'I-PER',
  'score': 0.9998441,
  'index': 360,
  'word': 'Barnett',
  'start': 1069,
  'end': 1076},
 {'entity': 'I-PER',
  'score': 0.9997073,
  'index': 363,
  'word': 'T',
  'start': 1082,
  'end': 1083},
 {'entity': 'I-PER',
  'score': 0.96596843,
  'index': 364,
  'word': '.',
  'start': 1083,
  'end': 1084},
 {'entity': 'I-PER',
  'score': 0.99981743,
  'index': 365,
  'word': 'Moody',
  'start': 1085,
  'end': 1090},
 {'entity': 'I-LOC',
  'score': 0.99594116,
  'index': 374,
  'word': 'Bristol',
  'start': 1103,
  'end': 1110},
 {'entity': 'I-ORG',
  'score': 0.9994455,
  'index': 376,
  'word': 'Gloucestershire',
  'start': 1113,
  'end': 1128},
 {'entity': 'I-PER',
  'score': 0.999629,
  'index': 383,
  'word': 'J',
  'start': 1145,
  'end': 1146},
 {'entity': 'I-PER',
  'score': 0.9994917,
  'index': 385,
  'word': 'Russell',
  'start': 1148,
  'end': 1155},
 {'entity': 'I-LOC',
  'score': 0.9423624,
  'index': 391,
  'word': 'Northamptonshire',
  'start': 1171,
  'end': 1187},
 {'entity': 'I-PER',
  'score': 0.99586487,
  'index': 394,
  'word': 'K',
  'start': 1194,
  'end': 1195},
 {'entity': 'I-PER',
  'score': 0.9998486,
  'index': 396,
  'word': 'Curran',
  'start': 1197,
  'end': 1203},
 {'entity': 'I-PER',
  'score': 0.9988618,
  'index': 399,
  'word': 'A',
  'start': 1209,
  'end': 1210},
 {'entity': 'I-PER',
  'score': 0.9765072,
  'index': 401,
  'word': 'Smith',
  'start': 1212,
  'end': 1217},
 {'entity': 'I-PER',
  'score': 0.998814,
  'index': 409,
  'word': 'S',
  'start': 1229,
  'end': 1230}]

W wiadomości wyświetlanej przy pobieraniu domyślnego modelu do zadania NER w bibliotece transformers:

_defaulted to dbmdz/bert-large-cased-finetuned-conll03-english and revision f2482bf (https://huggingface.co/dbmdz/bert-large-cased-finetuned-conll03-english)

widać iż ta wersja BERT'a była trenowana na wariancie tego konkretnego zbioru danych, więc zdecydowałem się nie dotrenowywać go _(inna kwestia że i tak nie miałbym do tego zasobów)

model_outputs = nlp(generate_date("en-ner-conll-2003/dev-0/in.tsv"))
with open("en-ner-conll-2003/dev-0/in.tsv","r",encoding="utf-8") as f:
    dev_in_lines = f.readlines()
original_sentences = dev_in_lines
processed_data = []
counter = 1
for model_out, raw_sentence in zip(model_outputs, dev_in_lines):
    to_append = " ".join(wordpiece_to_word_tokenization(model_out,raw_sentence))
    processed_data.append(to_append)
    if len(to_append.split())!=len(raw_sentence.split()):
        print(f"Invalid length for sentence #{counter}")
        print("Generated tags")
        print(to_append)
        print("Original sentence:")
        print(raw_sentence)
        pprint(list(zip(raw_sentence.split(), to_append.split())))
        raise AssertionError
    counter+=1
    if counter%5==0:
        print(f"{counter}/{len(original_sentences)}")
with open("en-ner-conll-2003/dev-0/out_raw.tsv","w",encoding="utf-8") as f:
    for line in processed_data:
            f.write(f"{line}\n")
5/215
10/215
15/215
20/215
25/215
30/215
35/215
40/215
45/215
50/215
55/215
60/215
65/215
70/215
75/215
80/215
85/215
90/215
95/215
100/215
105/215
110/215
115/215
120/215
125/215
130/215
135/215
140/215
145/215
150/215
155/215
160/215
165/215
170/215
175/215
180/215
185/215
190/215
195/215
200/215
205/215
210/215
215/215
model_outputs = nlp(generate_date("en-ner-conll-2003/test-A/in.tsv"))
with open("en-ner-conll-2003/test-A/in.tsv","r",encoding="utf-8") as f:
    in_lines = f.readlines()
original_sentences = in_lines
processed_data = []
counter = 1
for model_out, raw_sentence in zip(model_outputs, original_sentences):
    to_append = " ".join(wordpiece_to_word_tokenization(model_out,raw_sentence))
    processed_data.append(to_append)
    if len(to_append.split())!=len(raw_sentence.split()):
        print(f"Invalid length for sentence #{counter}")
        print("Generated tags")
        print(to_append)
        print("Original sentence:")
        print(raw_sentence)
        pprint(list(zip(raw_sentence.split(), to_append.split())))
        raise AssertionError
    counter+=1
    if counter%5==0:
        print(f"{counter}/{len(original_sentences)}")
with open("en-ner-conll-2003/test-A/out_raw.tsv","w",encoding="utf-8") as f:
    for line in processed_data:
            f.write(f"{line}\n")
5/230
10/230
15/230
20/230
25/230
30/230
35/230
40/230
45/230
50/230
55/230
60/230
65/230
70/230
75/230
80/230
85/230
90/230
95/230
100/230
105/230
110/230
115/230
120/230
125/230
130/230
135/230
140/230
145/230
150/230
155/230
160/230
165/230
170/230
175/230
180/230
185/230
190/230
195/230
200/230
205/230
210/230
215/230
220/230
225/230
230/230

Funkcja do czyszczenia tagów (skopiowana z rozwiązania z zad. 3)

tag_set = set()
with open("en-ner-conll-2003/dev-0/expected.tsv", "r", encoding="utf-8") as f:
    lines = f.readlines()
for line in lines:
    line_split = line.split()
    for tag in line_split:
        if tag not in tag_set:
            tag_set.add(tag)
print(tag_set)
{'O', 'I-MISC', 'I-ORG', 'B-ORG', 'B-MISC', 'B-PER', 'I-LOC', 'I-PER', 'B-LOC'}
inter_to_begin_mapping = {
    "I-LOC": "B-LOC",
    "I-MISC": 'B-MISC',
    'I-ORG': 'B-ORG',
    'I-PER': 'B-PER'
}
begin_to_inter_mapping = {v: k for k, v in inter_to_begin_mapping.items()}
def fix_tags_in_file(filename, filename_fixed):
    lines_fixed = []
    with open(filename, "r", encoding="utf-8") as f:
        lines = f.readlines()
    lines_tokenized = [line.split() for line in lines]
    for line in lines_tokenized:
        line_fixed = []
        for counter, element in enumerate(line):
            if element=="O": # O tag can be placed anywhere
                line_fixed.append(element)
            elif element in inter_to_begin_mapping:
                if counter==0: # Beginning of line, can't check previous tag
                    line_fixed.append(inter_to_begin_mapping[element])
                else:
                    previous_element = line_fixed[counter-1]
                    if previous_element==element or previous_element==inter_to_begin_mapping[element]: # Tag was compatible (same inters or compatible B-->I)
                        line_fixed.append(element)
                    elif previous_element=="O": # O--> Inter
                        line_fixed.append(inter_to_begin_mapping[element])
                    elif previous_element in inter_to_begin_mapping and element in inter_to_begin_mapping and previous_element!=element: # Incompatible subsequent inter-tags
                        line_fixed.append(previous_element)
                    else: # Begin --> Incompatible inter
                        corrected_tag = begin_to_inter_mapping[previous_element]
                        line_fixed.append(corrected_tag)
            elif element in begin_to_inter_mapping: # Beginning tag can be added safely
                line_fixed.append(element)
            else:
                print("This shouldn't happen")
        lines_fixed.append(" ".join(line_fixed))
    with open(filename_fixed, "w", encoding="utf-8") as f:
       for line in lines_fixed:
           f.write(f"{line}\n")
fix_tags_in_file("en-ner-conll-2003/dev-0/out_raw.tsv","en-ner-conll-2003/dev-0/out.tsv")
fix_tags_in_file("en-ner-conll-2003/test-A/out_raw.tsv","en-ner-conll-2003/test-A/out.tsv")