From f0e851e2ce98cde225788c690a909a09f214d64e Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Fri, 2 Mar 2018 18:29:20 -0800 Subject: [PATCH 01/14] parse generic date can see future --- etk/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/etk/core.py b/etk/core.py index 42d55138..bdca712d 100644 --- a/etk/core.py +++ b/etk/core.py @@ -2043,6 +2043,7 @@ def parse_date_generic(d, config=None, field_name=None): if not config: config = dict() config['ignore_past_years'] = 200 + config['ignore_future_dates'] = False try: # try the 2005344 format just in case From 65f796ef76b9535eed794a3d0aafa3a5b0e1eda5 Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Sun, 4 Mar 2018 13:46:46 -0800 Subject: [PATCH 02/14] new regex for line breaks --- etk/core.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/etk/core.py b/etk/core.py index bdca712d..9de6914a 100644 --- a/etk/core.py +++ b/etk/core.py @@ -194,6 +194,7 @@ remove_break_html_2 = re.compile("[\r\n][\s]*[\r\n]") remove_break_html_1 = re.compile("[\r\n][\s]*") +remove_break_html_3 = re.compile("(\\n\ *){3,}") seven_digits = re.compile("[0-9]{7}") @@ -885,8 +886,9 @@ def pseudo_extraction_results(value, key=None, qualifiers=None): @staticmethod def remove_line_breaks(x): try: - x_1 = re.sub(remove_break_html_1, ' \n ', x) - x_2 = re.sub(remove_break_html_2, ' \n\n ', x_1) + # x_1 = re.sub(remove_break_html_1, ' \n ', x) + # x_2 = re.sub(remove_break_html_2, ' \n\n ', x_1) + x_2 = re.sub(remove_break_html_3, ' \n\n ', x) except: return x return x_2 From 7d3dd1516725701b7b44f990fc78f190b00e827c Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Sun, 4 Mar 2018 14:19:39 -0800 Subject: [PATCH 03/14] replace \n with br --- etk/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/etk/core.py b/etk/core.py index 9de6914a..8541973a 100644 --- a/etk/core.py +++ b/etk/core.py @@ -889,6 +889,7 @@ def remove_line_breaks(x): # x_1 = re.sub(remove_break_html_1, ' \n ', x) # x_2 = re.sub(remove_break_html_2, ' \n\n ', x_1) x_2 = re.sub(remove_break_html_3, ' \n\n ', x) + x_2 = x_2.replace('\n', '
') except: return x return x_2 From 184b19bd206b94db28c754234375ae25e624e014 Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Sun, 4 Mar 2018 14:23:34 -0800 Subject: [PATCH 04/14] replace \n with br --- etk/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etk/core.py b/etk/core.py index 8541973a..1b41092a 100644 --- a/etk/core.py +++ b/etk/core.py @@ -889,7 +889,7 @@ def remove_line_breaks(x): # x_1 = re.sub(remove_break_html_1, ' \n ', x) # x_2 = re.sub(remove_break_html_2, ' \n\n ', x_1) x_2 = re.sub(remove_break_html_3, ' \n\n ', x) - x_2 = x_2.replace('\n', '
') + x_2 = x_2.replace('\n', '
') except: return x return x_2 From 7d2c226ec796f38a6933cb36e402a30d94eda0ec Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Sun, 4 Mar 2018 14:26:58 -0800 Subject: [PATCH 05/14] replace \n with br --- etk/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etk/core.py b/etk/core.py index 1b41092a..c3303db5 100644 --- a/etk/core.py +++ b/etk/core.py @@ -889,7 +889,7 @@ def remove_line_breaks(x): # x_1 = re.sub(remove_break_html_1, ' \n ', x) # x_2 = re.sub(remove_break_html_2, ' \n\n ', x_1) x_2 = re.sub(remove_break_html_3, ' \n\n ', x) - x_2 = x_2.replace('\n', '
') + x_2 = x_2.replace('\n', '
') except: return x return x_2 From 2ebaa6ec5ad69e1280869db42ec4e952e6c5b31b Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Sun, 4 Mar 2018 16:54:44 -0800 Subject: [PATCH 06/14] lexisnexis disable readability --- etk/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etk/core.py b/etk/core.py index c3303db5..265fab25 100644 --- a/etk/core.py +++ b/etk/core.py @@ -419,6 +419,8 @@ def process(self, doc, create_knowledge_graph=True, html_description=False): run_readability = False elif extractor == _READABILITY: + if 'crawler' in doc and doc['crawler'] == 'Sage-LexisNexis-Crawler': + run_readability = False if run_readability: re_extractors = extractors[extractor] if isinstance(re_extractors, dict): From 5fdc6ad92342dc8b7847fe70e22d6461bd4b1dcf Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Wed, 7 Mar 2018 13:07:41 -0800 Subject: [PATCH 07/14] generic strict parsing false --- etk/core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etk/core.py b/etk/core.py index 265fab25..4e2de257 100644 --- a/etk/core.py +++ b/etk/core.py @@ -2030,7 +2030,7 @@ def decode_value(self, d, field_name=None): return d @staticmethod - def parse_date(d, config=None, field_name=None): + def parse_date(d, config=None, field_name=None, strict_parsing=True): ignore_past_years = config['ignore_past_years'] if config and 'ignore_past_years' in config else 20 ignore_future_dates = config['ignore_future_dates'] if config and 'ignore_future_dates' in config else True if isinstance(d, basestring): @@ -2039,7 +2039,7 @@ def parse_date(d, config=None, field_name=None): try: return date_parser.convert_to_iso_format( date_parser.parse_date(d[_TEXT], ignore_future_dates=ignore_future_dates, - ignore_past_years=ignore_past_years)) + ignore_past_years=ignore_past_years, strict_parsing=strict_parsing)) except: return None @@ -2061,7 +2061,7 @@ def parse_date_generic(d, config=None, field_name=None): except: return None - result = Core.parse_date(d, config=config) + result = Core.parse_date(d, config=config, strict_parsing=False) return result From 88c6c6d1b9fc2a21c2d5c811c0c86b605a775313 Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Fri, 9 Mar 2018 11:35:30 -0800 Subject: [PATCH 08/14] parse date should handle strings greater than 25 --- etk/core.py | 10 +++++----- etk/data_extractors/date_parser.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/etk/core.py b/etk/core.py index 4e2de257..8b58aa6d 100644 --- a/etk/core.py +++ b/etk/core.py @@ -1629,7 +1629,7 @@ def extract_using_spacy(self, d, config): # print spacy_email_extractor.extract(d[_TEXT], self.origin_nlp, self.nlp, t) results = self._relevant_text_from_context(d[_SIMPLE_TOKENS], spacy_email_extractor.extract(d[_TEXT], self.origin_nlp, - self.nlp, t), + self.nlp, t), _EMAIL) return results @@ -2228,7 +2228,7 @@ def create_city_state_country_triple(self, d, config): for a_city in cities: for a_state in states: if a_city[0] == a_state[0] and a_city[1] != a_state[1] and ( - abs(a_city[2] - a_state[1]) < 3 or abs(a_city[1] - a_state[2]) < 3): + abs(a_city[2] - a_state[1]) < 3 or abs(a_city[1] - a_state[2]) < 3): city_state_together_count += 1 if a_city[0] not in segments: segments.append(a_city[0]) @@ -2244,7 +2244,7 @@ def create_city_state_country_triple(self, d, config): city_state_code_separate_count += 1 for a_country in countries: if a_city[0] == a_country[0] and a_city[1] != a_country[1] and ( - abs(a_city[2] - a_country[1]) < 5 or abs(a_city[1] - a_country[2]) < 3): + abs(a_city[2] - a_country[1]) < 5 or abs(a_city[1] - a_country[2]) < 3): city_country_together_count += 1 if a_city[0] not in segments: segments.append(a_city[0]) @@ -2403,8 +2403,8 @@ def create_kg_node_extractor(ds, config, doc, parent_doc_id, doc_id=None, url=No raise KeyError('{} not found in the config for method: {}'.format(_SEGMENT_NAME, _CREATE_KG_NODE_EXTRACTOR)) if _DISABLE_DEFAULT_EXT in config and \ - config[_DISABLE_DEFAULT_EXT] != _NO and \ - config[_DISABLE_DEFAULT_EXT] != _YES: + config[_DISABLE_DEFAULT_EXT] != _NO and \ + config[_DISABLE_DEFAULT_EXT] != _YES: raise KeyError('{} not acceptable for {} in the config for method: {}'.format(config[_DISABLE_DEFAULT_EXT], _DISABLE_DEFAULT_EXT, _CREATE_KG_NODE_EXTRACTOR)) diff --git a/etk/data_extractors/date_parser.py b/etk/data_extractors/date_parser.py index 109070f4..7513fcde 100644 --- a/etk/data_extractors/date_parser.py +++ b/etk/data_extractors/date_parser.py @@ -7,7 +7,7 @@ def parse_date(str_date, ignore_future_dates=True, ignore_past_years=20, strict_ if len(str_date) > 100: return None - str_date = str_date[:20] if len(str_date) > 20 else str_date + str_date = str_date[:25] if len(str_date) > 25 else str_date str_date = str_date.replace('\r', '') str_date = str_date.replace('\n', '') str_date = str_date.replace('<', '') From 61db1ba49ba89c2de24e23935a84cd21104545e3 Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Tue, 20 Mar 2018 17:20:12 -0700 Subject: [PATCH 09/14] dnt parse json paths for guards every time --- etk/core.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/etk/core.py b/etk/core.py index 8b58aa6d..0567726e 100644 --- a/etk/core.py +++ b/etk/core.py @@ -238,6 +238,7 @@ def __init__(self, extraction_config=None, debug=False, load_spacy=False): self.etk_version = "1" self.prefer_inferlink_description = False self.doc_filter_regexes = dict() + self.guards_path_regex = dict() self.readability_timeout = 3 self.decoding_dict_dict = dict() if self.extraction_config: @@ -1293,7 +1294,9 @@ def assert_data_extraction_guard(self, guards, doc, json_path_result): # print 'processing guards: {}'.format(guards) for guard in guards: try: - jpath_parser = parse(guard['path']) + if guard['path'] not in self.guards_path_regex: + self.guards_path_regex[guard['path']] = parse(guard['path']) + jpath_parser = self.guards_path_regex[guard['path']] regex = guard['regex'] if guard['type'] == 'doc': matches = jpath_parser.find(doc) From 713d7b93befa309c0b9ece636b54871106ff6827 Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Tue, 20 Mar 2018 19:44:30 -0700 Subject: [PATCH 10/14] guards in content extraction --- etk/core.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/etk/core.py b/etk/core.py index 0567726e..022dd111 100644 --- a/etk/core.py +++ b/etk/core.py @@ -377,6 +377,7 @@ def process(self, doc, create_knowledge_graph=True, html_description=False): if _CONTENT_EXTRACTION not in doc: doc[_CONTENT_EXTRACTION] = dict() ce_config = self.extraction_config[_CONTENT_EXTRACTION] + content_extraction_guards = ce_config[_GUARDS] if _GUARDS in ce_config else None # JSON CONTENT: create content for data extraction from json paths if _JSON_CONTENT in ce_config: @@ -399,8 +400,11 @@ def process(self, doc, create_knowledge_graph=True, html_description=False): matches = self.content_extraction_path.find(doc) extractors = ce_config[_EXTRACTORS] + run_readability = True for index in range(len(matches)): + if content_extraction_guards and not self.assert_data_extraction_guard(content_extraction_guards, doc, matches[index].value): + continue for extractor in extractors.keys(): if extractor == _LANDMARK: doc[_CONTENT_EXTRACTION] = self.run_landmark(doc[_CONTENT_EXTRACTION], From 62d726eb122cdb46364f8fb05f92091aa649f137 Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Tue, 20 Mar 2018 19:53:09 -0700 Subject: [PATCH 11/14] guards in content extraction --- etk/core.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/etk/core.py b/etk/core.py index 022dd111..164b47a6 100644 --- a/etk/core.py +++ b/etk/core.py @@ -403,9 +403,10 @@ def process(self, doc, create_knowledge_graph=True, html_description=False): run_readability = True for index in range(len(matches)): - if content_extraction_guards and not self.assert_data_extraction_guard(content_extraction_guards, doc, matches[index].value): - continue for extractor in extractors.keys(): + if content_extraction_guards and not self.assert_data_extraction_guard( + content_extraction_guards, doc, matches[index].value): + continue if extractor == _LANDMARK: doc[_CONTENT_EXTRACTION] = self.run_landmark(doc[_CONTENT_EXTRACTION], matches[index].value, From b76f8517278f8a80c339239be21c0d6cdecb79b2 Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Wed, 21 Mar 2018 13:29:05 -0700 Subject: [PATCH 12/14] spacy generic to be robust --- etk/core.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/etk/core.py b/etk/core.py index 164b47a6..7a989c96 100644 --- a/etk/core.py +++ b/etk/core.py @@ -858,6 +858,7 @@ def extract_as_is(self, d, config=None): if config and _POST_FILTER in config: post_filters = config[_POST_FILTER] result = self.run_post_filters_results(result, post_filters, field_name=config[_FIELD_NAME]) + return result elif isinstance(d, dict) and _TEXT in d: @@ -865,8 +866,13 @@ def extract_as_is(self, d, config=None): result = self.pseudo_extraction_results(d[_TEXT], key=d[_KEY] if _KEY in d else None, qualifiers=d[_QUALIFIERS] if _QUALIFIERS in d else None) if config and _POST_FILTER in config: + if config[_FIELD_NAME] == 'event_date': + print d[_TEXT] post_filters = config[_POST_FILTER] result = self.run_post_filters_results(result, post_filters, field_name=config[_FIELD_NAME]) + if config[_FIELD_NAME] == 'event_date': + if result: + print result return self._relevant_text_from_context(d[_TEXT], result, config[_FIELD_NAME]) else: return None @@ -1581,6 +1587,7 @@ def extract_using_custom_spacy(self, d, config, field_rules=None): results = self._relevant_text_from_context(d[_SIMPLE_TOKENS_ORIGINAL_CASE], custom_spacy_extractor.extract(field_rules, nlp_doc, self.nlp), config[_FIELD_NAME]) + if _POST_FILTER in config: post_filters = config[_POST_FILTER] results = self.run_post_filters_results(results, post_filters, field_name=config[_FIELD_NAME]) @@ -2042,7 +2049,7 @@ def parse_date(d, config=None, field_name=None, strict_parsing=True): ignore_past_years = config['ignore_past_years'] if config and 'ignore_past_years' in config else 20 ignore_future_dates = config['ignore_future_dates'] if config and 'ignore_future_dates' in config else True if isinstance(d, basestring): - return Core.spacy_parse_date(d, ignore_past_years, ignore_future_dates) + return Core.spacy_parse_date(d, ignore_past_years, ignore_future_dates, strict_parsing=strict_parsing) else: try: return date_parser.convert_to_iso_format( @@ -2060,6 +2067,7 @@ def parse_date_generic(d, config=None, field_name=None): try: # try the 2005344 format just in case + to_be_parsed_date = str(d) if isinstance(d, basestring) else d[_TEXT] if seven_digits.match(to_be_parsed_date): year = to_be_parsed_date[0:4] @@ -2068,17 +2076,16 @@ def parse_date_generic(d, config=None, field_name=None): return parsed_date.isoformat() except: return None - result = Core.parse_date(d, config=config, strict_parsing=False) return result @staticmethod - def spacy_parse_date(str_date, ignore_past_years=20, ignore_future_dates=True): + def spacy_parse_date(str_date, ignore_past_years=20, ignore_future_dates=True, strict_parsing=True): try: return date_parser.convert_to_iso_format( date_parser.parse_date(str_date, ignore_future_dates=ignore_future_dates, - ignore_past_years=ignore_past_years)) + ignore_past_years=ignore_past_years, strict_parsing=strict_parsing)) except: return None From 45442dc799ce4ac3b065eb7710ded630be66c46a Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Mon, 30 Apr 2018 17:59:11 -0700 Subject: [PATCH 13/14] parse_number to remove , --- etk/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etk/core.py b/etk/core.py index 7a989c96..24423e96 100644 --- a/etk/core.py +++ b/etk/core.py @@ -2117,7 +2117,7 @@ def parse_number(d, config=None, field_name=None): return str(text) try: - text = text.strip().replace('\n', '').replace('\t', '') + text = text.strip().replace('\n', '').replace('\t', '').replace(',', '') num = str(float(text)) if '.' in text else str(int(text)) return num except: From 44ba6895fee394a49cd918bf0f82e1d98855c284 Mon Sep 17 00:00:00 2001 From: Amandeep Singh Date: Thu, 7 Jun 2018 10:40:29 -0700 Subject: [PATCH 14/14] fix unit tests for etk1, final commit --- etk/core.py | 49 +++++++----- .../ground_truth/default_spacy_output.jl | 40 +++++----- etk/unit_tests/test_default_spacy.py | 7 +- .../test_extractions_using_dictionary.py | 16 ++-- .../test_extractions_using_regex.py | 8 +- etk/unit_tests/test_geonames_lookup.py | 77 +++++++++---------- etk/unit_tests/test_knowledge_graph.py | 40 +++++----- 7 files changed, 121 insertions(+), 116 deletions(-) diff --git a/etk/core.py b/etk/core.py index 24423e96..249d3aab 100644 --- a/etk/core.py +++ b/etk/core.py @@ -314,7 +314,8 @@ def process_doc_filters(self, doc): action = doc_filter[_ACTION] regex = doc_filter[_REGEX] if action.lower() not in [_NO_ACTION, _KEEP, _DISCARD]: - print 'action: {} in filters is not one of {}, {} or {}. Defaulting to {}'.format( + print + 'action: {} in filters is not one of {}, {} or {}. Defaulting to {}'.format( action, _NO_ACTION, _KEEP, _DISCARD, _NO_ACTION) action = _NO_ACTION @@ -328,11 +329,13 @@ def process_doc_filters(self, doc): doc[_PREFILTER_FILTER_OUTCOME] = action break else: - print 'Error while filtering out docs: field - {} is not a literal in ' \ - 'the doc.'.format(field) + print + 'Error while filtering out docs: field - {} is not a literal in ' \ + 'the doc.'.format(field) else: message = 'Incomplete filter: {} for tld: {} in etk config'.format(doc_filter, tld) - print message + print + message self.log(message, _INFO) # if for some reason, there is no action defined: no_action is default action if _PREFILTER_FILTER_OUTCOME not in doc: @@ -728,7 +731,8 @@ def process(self, doc, create_knowledge_graph=True, html_description=False): url=doc[_URL] if _URL in doc else None) exc_type, exc_value, exc_traceback = sys.exc_info() lines = traceback.format_exception(exc_type, exc_value, exc_traceback) - print ''.join(lines) + print + ''.join(lines) if self.global_error_handling == _RAISE_ERROR: raise e else: @@ -744,7 +748,8 @@ def process(self, doc, create_knowledge_graph=True, html_description=False): if time_taken_process > 5: extra = dict() extra['time_taken'] = time_taken_process - print 'LOG: {},{},{},{}'.format(doc_id, 'TOTAL', 'TOTAL', time_taken_process) + print + 'LOG: {},{},{},{}'.format(doc_id, 'TOTAL', 'TOTAL', time_taken_process) self.log('Document: {} took {} seconds'.format(doc[_DOCUMENT_ID], str(time_taken_process)), _INFO, doc_id=doc[_DOCUMENT_ID], url=doc[_URL] if _URL in doc else None, extra=extra) return doc @@ -841,7 +846,8 @@ def convert_json_content(self, doc, json_content_extractor): 'the json or not a dict with keys \'value\', \'key\' and/or \'qualifiers\' ' \ 'document'.format(input_path) self.log(msg, _ERROR) - print msg + print + msg if self.global_error_handling == _RAISE_ERROR: raise ValueError(msg) if len(val_list) > 0: @@ -866,13 +872,8 @@ def extract_as_is(self, d, config=None): result = self.pseudo_extraction_results(d[_TEXT], key=d[_KEY] if _KEY in d else None, qualifiers=d[_QUALIFIERS] if _QUALIFIERS in d else None) if config and _POST_FILTER in config: - if config[_FIELD_NAME] == 'event_date': - print d[_TEXT] post_filters = config[_POST_FILTER] result = self.run_post_filters_results(result, post_filters, field_name=config[_FIELD_NAME]) - if config[_FIELD_NAME] == 'event_date': - if result: - print result return self._relevant_text_from_context(d[_TEXT], result, config[_FIELD_NAME]) else: return None @@ -1314,7 +1315,8 @@ def assert_data_extraction_guard(self, guards, doc, json_path_result): elif guard['type'] == 'path': matches = jpath_parser.find(json_path_result) else: - print 'guard type "{}" is not a valid type.'.format(guard['type']) + print + 'guard type "{}" is not a valid type.'.format(guard['type']) continue # if len(matches) == 0: # return False @@ -1323,7 +1325,8 @@ def assert_data_extraction_guard(self, guards, doc, json_path_result): if not re.match(regex, match.value): return False except Exception as e: - print 'could not apply guard: {}'.format(guard) + print + 'could not apply guard: {}'.format(guard) return True def run_readability(self, content_extraction, html, re_extractor): @@ -1572,7 +1575,8 @@ def _extract_using_regex(text, regex, include_context, flags): result = regex_extractor.extract(text, regex, include_context, flags) return result if result and len(result) > 0 else None except Exception as e: - print e + print + e return None def extract_using_custom_spacy(self, d, config, field_rules=None): @@ -1854,7 +1858,8 @@ def run_user_filters(self, d, filters, field_name): if not result: result = Core.string_to_lambda(text_filter)(d[_TEXT]) except Exception as e: - print 'Error {} in {}'.format(e, 'run_user_filters') + print + 'Error {} in {}'.format(e, 'run_user_filters') return result def run_post_filters_results(self, results, post_filters, field_name=None): @@ -1874,7 +1879,8 @@ def run_post_filters_results(self, results, post_filters, field_name=None): result['value'] = val out_results.append(result) except: - print 'Warn: No function {} defined in core.py'.format(post_filter) + print + 'Warn: No function {} defined in core.py'.format(post_filter) # lets try lambda functions for result in results: val = Core.string_to_lambda(post_filter)(result['value']) @@ -1888,7 +1894,8 @@ def string_to_lambda(s): try: return lambda x: eval(s) except: - print 'Error while converting {} to lambda'.format(s) + print + 'Error while converting {} to lambda'.format(s) return None @staticmethod @@ -2350,13 +2357,15 @@ def create_city_state_country_triple(self, d, config): except Exception as e: exc_type, exc_value, exc_traceback = sys.exc_info() lines = traceback.format_exception(exc_type, exc_value, exc_traceback) - print ''.join(lines) + print + ''.join(lines) self.log('Exception in create_city_state_country_triple()', _EXCEPTION, url=d[_URL], doc_id=d[_DOCUMENT_ID]) return None @staticmethod def print_p(x): - print json.dumps(x, indent=2) + print + json.dumps(x, indent=2) def filter_results(self, d, config): if _KNOWLEDGE_GRAPH not in d: diff --git a/etk/unit_tests/ground_truth/default_spacy_output.jl b/etk/unit_tests/ground_truth/default_spacy_output.jl index bbf6695f..f1d4a511 100644 --- a/etk/unit_tests/ground_truth/default_spacy_output.jl +++ b/etk/unit_tests/ground_truth/default_spacy_output.jl @@ -1,20 +1,20 @@ -{"url": "http://www.ce_news_article.org/2016/01/01/201601010124.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 373, "end": 374, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 15, "end": 16, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing symbol "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 202, "end": 203, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 28, "end": 29, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing symbol "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 215, "end": 216, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 72, "end": 73, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 85, "end": 86, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "method": "rearrange_description"}], "key": "description", "value": " \n The Presidency has denied speculations that the Buhari administration has banned Hijab, the Muslim women's dressing symbol of modesty. \n Giving a clarification on the pronouncement of the President on Media Chat on Wednesday, the Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said the speculations were unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone. \n Mr. Shehu, while admitting thatHijab is being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, said the President would not take any decision on the issue without due consultation with all the stakeholders. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said. \n According to him, the increasing abuse of the Hijabby terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 343, "end": 344, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Presidency Denies Plan to Ban Hijab - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 12, "end": 13, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 40, "end": 44, "input": "tokens", "text": "Media Chat on Wednesday , the Senior Special Assistant to the President on Media "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}, {"source": {"segment": "content_relaxed", "context": {"start": 53, "end": 57, "input": "tokens", "text": "Media Chat on Wednesday , the Senior Special Assistant to the President on Media "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}], "key": "the senior special assistant", "value": "the Senior Special Assistant"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 113, "end": 114, "input": "tokens", "text": "which violates the teachings of Islam , said the President would "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}, {"source": {"segment": "content_relaxed", "context": {"start": 126, "end": 127, "input": "tokens", "text": "which violates the teachings of Islam , said the President would "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}], "key": "islam", "value": "Islam"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 230, "end": 232, "input": "tokens", "text": ". \n Copyright \n 2016 Premium Times . All rights reserved . "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}], "key": "premium times", "value": "Premium Times"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 239, "end": 242, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Presidency Denies Plan to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Presidency Denies Plan to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 11, "end": 13, "input": "tokens", "text": ": Presidency Denies Plan to Ban Hijab \n The Presidency has denied "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ban Hijab"}], "key": "ban hijab", "value": "Ban Hijab"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 6, "end": 10, "input": "tokens", "text": ": Presidency Denies Plan to Ban Hijab - allAfrica . com "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ban Hijab - allAfrica"}], "key": "ban hijab - allafrica", "value": "Ban Hijab - allAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 8, "end": 9, "input": "tokens", "text": "has denied speculations that the Buhari administration has banned Hijab , "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 64, "end": 65, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 21, "end": 22, "input": "tokens", "text": "has denied speculations that the Buhari administration has banned Hijab , "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 77, "end": 78, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 52, "end": 54, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 65, "end": 67, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}], "key": "garba shehu", "value": "Garba Shehu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 89, "end": 90, "input": "tokens", "text": "everyone . \n Mr . Shehu , while admitting thatHijab is "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 102, "end": 103, "input": "tokens", "text": "everyone . \n Mr . Shehu , while admitting thatHijab is "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 176, "end": 177, "input": "tokens", "text": "the increasing abuse of the Hijabby terrorists to perpetrate criminal mass "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijabby"}, {"source": {"segment": "content_relaxed", "context": {"start": 189, "end": 190, "input": "tokens", "text": "the increasing abuse of the Hijabby terrorists to perpetrate criminal mass "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijabby"}], "key": "hijabby", "value": "Hijabby"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 25, "end": 26, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}]}, "content_extraction": {"content_relaxed": {"text": " \n 1 January 2016 \n Nigeria: Presidency Denies Plan to Ban Hijab \n The Presidency has denied speculations that the Buhari administration has banned Hijab, the Muslim women's dressing symbol of modesty. \n Giving a clarification on the pronouncement of the President on Media Chat on Wednesday, the Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said the speculations were unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone. \n Mr. Shehu, while admitting thatHijab is being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, said the President would not take any decision on the issue without due consultation with all the stakeholders. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said. \n According to him, the increasing abuse of the Hijabby terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n Copyright \n 2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "1", "january", "2016", "\n", "nigeria", ":", "presidency", "denies", "plan", "to", "ban", "hijab", "\n", "the", "presidency", "has", "denied", "speculations", "that", "the", "buhari", "administration", "has", "banned", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "on", "media", "chat", "on", "wednesday", ",", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "the", "speculations", "were", "unfounded", ",", "and", "that", "the", "buhari", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "\n", "mr", ".", "shehu", ",", "while", "admitting", "thathijab", "is", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "islam", ",", "said", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "\n", "according", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "hijabby", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n", "copyright", "\n", "2016", "premium", "times", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "1", "January", "2016", "\n", "Nigeria", ":", "Presidency", "Denies", "Plan", "to", "Ban", "Hijab", "\n", "The", "Presidency", "has", "denied", "speculations", "that", "the", "Buhari", "administration", "has", "banned", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "on", "Media", "Chat", "on", "Wednesday", ",", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "the", "speculations", "were", "unfounded", ",", "and", "that", "the", "Buhari", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "\n", "Mr", ".", "Shehu", ",", "while", "admitting", "thatHijab", "is", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "Islam", ",", "said", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "\n", "According", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "Hijabby", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n", "Copyright", "\n", "2016", "Premium", "Times", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 373, "end": 374, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "AllAfrica", "context": {"start": 373, "end": 374, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 21, "end": 22, "input": "tokens", "text": "has denied speculations that the Buhari administration has banned Hijab , "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Buhari", "context": {"start": 21, "end": 22, "input": "tokens", "text": "has denied speculations that the Buhari administration has banned Hijab , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 25, "end": 26, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Hijab", "context": {"start": 25, "end": 26, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 65, "end": 67, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Garba Shehu", "context": {"start": 65, "end": 67, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 77, "end": 78, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Buhari", "context": {"start": 77, "end": 78, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 102, "end": 103, "input": "tokens", "text": "everyone . \n Mr . Shehu , while admitting thatHijab is "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Shehu", "context": {"start": 102, "end": 103, "input": "tokens", "text": "everyone . \n Mr . Shehu , while admitting thatHijab is "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 189, "end": 190, "input": "tokens", "text": "the increasing abuse of the Hijabby terrorists to perpetrate criminal mass "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Hijabby", "context": {"start": 189, "end": 190, "input": "tokens", "text": "the increasing abuse of the Hijabby terrorists to perpetrate criminal mass "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 343, "end": 344, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "AllAfrica", "context": {"start": 343, "end": 344, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 53, "end": 57, "input": "tokens", "text": "Media Chat on Wednesday , the Senior Special Assistant to the President on Media "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "the Senior Special Assistant", "context": {"start": 53, "end": 57, "input": "tokens", "text": "Media Chat on Wednesday , the Senior Special Assistant to the President on Media "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 126, "end": 127, "input": "tokens", "text": "which violates the teachings of Islam , said the President would "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Islam", "context": {"start": 126, "end": 127, "input": "tokens", "text": "which violates the teachings of Islam , said the President would "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 230, "end": 232, "input": "tokens", "text": ". \n Copyright \n 2016 Premium Times . All rights reserved . "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Premium Times", "context": {"start": 230, "end": 232, "input": "tokens", "text": ". \n Copyright \n 2016 Premium Times . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Distributed", "context": {"start": 237, "end": 238, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 239, "end": 242, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "AllAfrica Global Media", "context": {"start": 239, "end": 242, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Presidency Denies Plan to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Presidency Denies Plan to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 11, "end": 13, "input": "tokens", "text": ": Presidency Denies Plan to Ban Hijab \n The Presidency has denied "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Ban Hijab", "context": {"start": 11, "end": 13, "input": "tokens", "text": ": Presidency Denies Plan to Ban Hijab \n The Presidency has denied "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 28, "end": 29, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing symbol "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Muslim", "context": {"start": 28, "end": 29, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing symbol "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 85, "end": 86, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Muslims", "context": {"start": 85, "end": 86, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 215, "end": 216, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Muslim", "context": {"start": 215, "end": 216, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/01/201601010124.html"}, "content_strict": {"text": " \n The Presidency has denied speculations that the Buhari administration has banned Hijab, the Muslim women's dressing symbol of modesty. \n Giving a clarification on the pronouncement of the President on Media Chat on Wednesday, the Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said the speculations were unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone. \n Mr. Shehu, while admitting thatHijab is being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, said the President would not take any decision on the issue without due consultation with all the stakeholders. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said. \n According to him, the increasing abuse of the Hijabby terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n ", "simple_tokens": ["\n", "the", "presidency", "has", "denied", "speculations", "that", "the", "buhari", "administration", "has", "banned", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "on", "media", "chat", "on", "wednesday", ",", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "the", "speculations", "were", "unfounded", ",", "and", "that", "the", "buhari", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "\n", "mr", ".", "shehu", ",", "while", "admitting", "thathijab", "is", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "islam", ",", "said", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "\n", "according", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "hijabby", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n"], "simple_tokens_original_case": ["\n", "The", "Presidency", "has", "denied", "speculations", "that", "the", "Buhari", "administration", "has", "banned", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "on", "Media", "Chat", "on", "Wednesday", ",", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "the", "speculations", "were", "unfounded", ",", "and", "that", "the", "Buhari", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "\n", "Mr", ".", "Shehu", ",", "while", "admitting", "thatHijab", "is", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "Islam", ",", "said", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "\n", "According", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "Hijabby", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 12, "end": 13, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Hijab", "context": {"start": 12, "end": 13, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}}, {"origin": {"segment": "content_strict", "context": {"start": 40, "end": 44, "input": "tokens", "text": "Media Chat on Wednesday , the Senior Special Assistant to the President on Media "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "the Senior Special Assistant", "context": {"start": 40, "end": 44, "input": "tokens", "text": "Media Chat on Wednesday , the Senior Special Assistant to the President on Media "}}, {"origin": {"segment": "content_strict", "context": {"start": 113, "end": 114, "input": "tokens", "text": "which violates the teachings of Islam , said the President would "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Islam", "context": {"start": 113, "end": 114, "input": "tokens", "text": "which violates the teachings of Islam , said the President would "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 15, "end": 16, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing symbol "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Muslim", "context": {"start": 15, "end": 16, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing symbol "}}, {"origin": {"segment": "content_strict", "context": {"start": 72, "end": 73, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Muslims", "context": {"start": 72, "end": 73, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}}, {"origin": {"segment": "content_strict", "context": {"start": 202, "end": 203, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Muslim", "context": {"start": 202, "end": 203, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 8, "end": 9, "input": "tokens", "text": "has denied speculations that the Buhari administration has banned Hijab , "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Buhari", "context": {"start": 8, "end": 9, "input": "tokens", "text": "has denied speculations that the Buhari administration has banned Hijab , "}}, {"origin": {"segment": "content_strict", "context": {"start": 52, "end": 54, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Garba Shehu", "context": {"start": 52, "end": 54, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}}, {"origin": {"segment": "content_strict", "context": {"start": 64, "end": 65, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Buhari", "context": {"start": 64, "end": 65, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}}, {"origin": {"segment": "content_strict", "context": {"start": 89, "end": 90, "input": "tokens", "text": "everyone . \n Mr . Shehu , while admitting thatHijab is "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Shehu", "context": {"start": 89, "end": 90, "input": "tokens", "text": "everyone . \n Mr . Shehu , while admitting thatHijab is "}}, {"origin": {"segment": "content_strict", "context": {"start": 176, "end": 177, "input": "tokens", "text": "the increasing abuse of the Hijabby terrorists to perpetrate criminal mass "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Hijabby", "context": {"start": 176, "end": 177, "input": "tokens", "text": "the increasing abuse of the Hijabby terrorists to perpetrate criminal mass "}}]}}}}, "title": {"text": " Nigeria: Presidency Denies Plan to Ban Hijab - allAfrica.com ", "simple_tokens": ["nigeria", ":", "presidency", "denies", "plan", "to", "ban", "hijab", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Presidency", "Denies", "Plan", "to", "Ban", "Hijab", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Presidency Denies Plan to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Presidency Denies Plan to "}}, {"origin": {"segment": "title", "context": {"start": 6, "end": 10, "input": "tokens", "text": ": Presidency Denies Plan to Ban Hijab - allAfrica . com "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "value": "Ban Hijab - allAfrica", "context": {"start": 6, "end": 10, "input": "tokens", "text": ": Presidency Denies Plan to Ban Hijab - allAfrica . com "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:06.589694", "@etk_process_time": 0.4175839424133301, "@etk_start_time": "2017-11-15T01:34:06.172110"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Presidency Denies Plan to Ban Hijab - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: Presidency Denies Plan to Ban Hijab\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n

\n The Presidency has denied speculations that the Buhari administration has banned Hijab, the Muslim women's dressing symbol of modesty.\n

\n

\n Giving a clarification on the pronouncement of the President on Media Chat on Wednesday, the Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said the speculations were unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone.\n

\n

\n Mr. Shehu, while admitting thatHijab is being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, said the President would not take any decision on the issue without due consultation with all the stakeholders.\n

\n
\n
\n

\n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said.\n

\n

\n According to him, the increasing abuse of the Hijabby terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4", "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"} -{"url": "http://www.ce_news_article.org/2016/01/01/201601010132.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1701, "end": 1702, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 3, "end": 4, "input": "tokens", "text": "\n By Senator Iroegbu in Abuja , Wole Ayodele "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Iroegbu"}, {"source": {"segment": "content_relaxed", "context": {"start": 23, "end": 24, "input": "tokens", "text": ", Taraba \n By Senator Iroegbu in Abuja , Wole Ayodele "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Iroegbu"}], "key": "iroegbu", "value": "Iroegbu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 7, "end": 9, "input": "tokens", "text": "Senator Iroegbu in Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Wole Ayodele"}, {"source": {"segment": "content_relaxed", "context": {"start": 27, "end": 29, "input": "tokens", "text": "Senator Iroegbu in Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Wole Ayodele"}], "key": "wole ayodele", "value": "Wole Ayodele"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 12, "end": 14, "input": "tokens", "text": "Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Emmanuel Ugwu"}, {"source": {"segment": "content_relaxed", "context": {"start": 32, "end": 34, "input": "tokens", "text": "Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Emmanuel Ugwu"}], "key": "emmanuel ugwu", "value": "Emmanuel Ugwu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 30, "end": 32, "input": "tokens", "text": "on Thursday affirmed Mr . Darius Ishaku of the Peoples Democratic Party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Darius Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 50, "end": 52, "input": "tokens", "text": "on Thursday affirmed Mr . Darius Ishaku of the Peoples Democratic Party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Darius Ishaku"}], "key": "darius ishaku", "value": "Darius Ishaku"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 43, "end": 45, "input": "tokens", "text": "PDP ) and Mr . Alex Otti of the All Progressives Grand "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alex Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 63, "end": 65, "input": "tokens", "text": "PDP ) and Mr . Alex Otti of the All Progressives Grand "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alex Otti"}], "key": "alex otti", "value": "Alex Otti"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 161, "end": 162, "input": "tokens", "text": "the tribunal . \n Justice Aboki , who read the unanimous "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aboki"}, {"source": {"segment": "content_relaxed", "context": {"start": 181, "end": 182, "input": "tokens", "text": "the tribunal . \n Justice Aboki , who read the unanimous "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aboki"}], "key": "aboki", "value": "Aboki"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 204, "end": 206, "input": "tokens", "text": ", also known as \" Mama Taraba \" , winner of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mama Taraba"}, {"source": {"segment": "content_relaxed", "context": {"start": 224, "end": 226, "input": "tokens", "text": ", also known as \" Mama Taraba \" , winner of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mama Taraba"}], "key": "mama taraba", "value": "Mama Taraba"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 664, "end": 665, "input": "tokens", "text": "Dissatisfied with the judgment , Ishaku filed an appeal , asking "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_strict", "context": {"start": 830, "end": 831, "input": "tokens", "text": "state who overwhelmingly voted for Ishaku as their governor . \n "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_strict", "context": {"start": 869, "end": 870, "input": "tokens", "text": "of Taraba who overwhelmingly voted Ishaku as their governor have been "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 684, "end": 685, "input": "tokens", "text": "Dissatisfied with the judgment , Ishaku filed an appeal , asking "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 850, "end": 851, "input": "tokens", "text": "state who overwhelmingly voted for Ishaku as their governor . \n "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 889, "end": 890, "input": "tokens", "text": "of Taraba who overwhelmingly voted Ishaku as their governor have been "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}], "key": "ishaku", "value": "Ishaku"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 692, "end": 693, "input": "tokens", "text": "' s ruling yesterday , Jalingo , the Taraba State capital "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jalingo"}, {"source": {"segment": "content_relaxed", "context": {"start": 712, "end": 713, "input": "tokens", "text": "' s ruling yesterday , Jalingo , the Taraba State capital "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jalingo"}], "key": "jalingo", "value": "Jalingo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 731, "end": 733, "input": "tokens", "text": "the streets , particularly around Hammaruwa Way , ATC , Mile 6 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hammaruwa Way"}, {"source": {"segment": "content_relaxed", "context": {"start": 751, "end": 753, "input": "tokens", "text": "the streets , particularly around Hammaruwa Way , ATC , Mile 6 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hammaruwa Way"}], "key": "hammaruwa way", "value": "Hammaruwa Way"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 789, "end": 791, "input": "tokens", "text": "the major roads . \n Enyetere Ambituni , one of the jubilant "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Enyetere Ambituni"}, {"source": {"segment": "content_relaxed", "context": {"start": 809, "end": 811, "input": "tokens", "text": "the major roads . \n Enyetere Ambituni , one of the jubilant "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Enyetere Ambituni"}], "key": "enyetere ambituni", "value": "Enyetere Ambituni"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 897, "end": 899, "input": "tokens", "text": "State Governor , Dr . Okezie Ikpeazu , and declared the governorship "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okezie Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 917, "end": 919, "input": "tokens", "text": "State Governor , Dr . Okezie Ikpeazu , and declared the governorship "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okezie Ikpeazu"}], "key": "okezie ikpeazu", "value": "Okezie Ikpeazu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 921, "end": 922, "input": "tokens", "text": "election conducted in April . Otti had gone to the appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_strict", "context": {"start": 1197, "end": 1198, "input": "tokens", "text": "flags , singing and praising Otti for his tenacity . \n "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 941, "end": 942, "input": "tokens", "text": "election conducted in April . Otti had gone to the appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 1217, "end": 1218, "input": "tokens", "text": "flags , singing and praising Otti for his tenacity . \n "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}], "key": "otti", "value": "Otti"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 966, "end": 968, "input": "tokens", "text": "from Obingwa , Osisioma and Isiala Ngwa North Local Government Areas that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Isiala Ngwa"}, {"source": {"segment": "content_relaxed", "context": {"start": 986, "end": 988, "input": "tokens", "text": "from Obingwa , Osisioma and Isiala Ngwa North Local Government Areas that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Isiala Ngwa"}], "key": "isiala ngwa", "value": "Isiala Ngwa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1056, "end": 1057, "input": "tokens", "text": "In the governorship poll , Ikpeazu had emerged winner with 264 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_strict", "context": {"start": 1380, "end": 1381, "input": "tokens", "text": "Petitions Tribunal \" . \n Ikpeazu said though he was yet "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1076, "end": 1077, "input": "tokens", "text": "In the governorship poll , Ikpeazu had emerged winner with 264 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1400, "end": 1401, "input": "tokens", "text": "Petitions Tribunal \" . \n Ikpeazu said though he was yet "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}], "key": "ikpeazu", "value": "Ikpeazu"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "method": "rearrange_description"}], "key": "description", "value": " \n By Senator Iroegbu in Abuja, Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal Court sitting in Abuja and Owerri on Thursday affirmed Mr. Darius Ishaku of the Peoples Democratic Party (PDP) and Mr. Alex Otti of the All Progressives Grand Alliance (APGA) as winners of the April 11 governorship elections in Taraba and Abia States, respectively. \n The Abuja appellate court, in its judgment, set aside the decision of the state Election Petitions Tribunal, which sacked the Taraba governor from office based on pre-election matters. \n Delivering judgment on the three appeals and cross-appeal that emanated from the judgment of the tribunal, which sat in Abuja because of security concerns in the North-east, a five-member panel of justices headed by Justice Abdul Aboki set aside the ruling of the tribunal. \n Justice Aboki, who read the unanimous judgment, held that it was a gross misdirection for the tribunal to have declared the governorship candidate of the All Progressives Congress (APC), Mrs. Aisha Jumai Alhassan, also known as \"Mama Taraba\", winner of the gubernatorial poll on the basis that she scored the second highest number of votes in the election. \n The court also held that from the evidence of witnesses to the petitioners before the tribunal, Ishaku was validly elected and sponsored by his party, the PDP, to vie for the governorship seat of the state in accordance with the constitution, the Electoral Act and in accordance with the election guidelines as laid down by the Independent National Electoral Commission (INEC). \"Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null, void and set aside in its entirety. \n \"The appellant's appeal is meritorious and is hereby allowed,\" Justice Aboki held. The judge went further to affirm \"Darius Dickson Ishaku as the dully elected governor of Taraba State\". According to the court, APC and its governorship candidate, who were the first and second respondents in the appeal, had no locus standi under the law to challenge the primary election of the PDP, which produced Ishaku as its candidate for the election as none of them is a member of the PDP. \n It also held that INEC superintends the activities of political parties and if there was any breach or failure of the PDP to give the electoral body 21 days notice of its primary as alleged, it should not have been the headache of the APC and its governorship candidate, adding that the only person that could have complained of the conduct of a party's primary election was the person who participated in the said primary election and INEC. \n According to the court, the Electoral Act specifies the procedures for the election and sponsorship of a candidate by a political party and that the right to complain is limited to participants in the primary election. \n The Justice Musa Danladi Abubakar-led tribunal, had in a petition filed by APC and Alhassan, held that the purported nomination of the governorship candidate by PDP breached Section 85 of the Electoral Act and ordered Ishaku to vacate his office. \n Justice Abubakar had in a judgment ordered that Alhassan be sworn in as governor because the PDP did not conduct a valid primary that threw Ishaku up as its standard-bearer. \n The tribunal however held that the APC governorship candidate could not adequately prove her allegation of \"over-voting, irregularities, and non-compliance with the Electoral Act 2010\". \n Dissatisfied with the judgment, Ishaku filed an appeal, asking the appellate court to set aside the judgment of the tribunal. Reacting to the appellate court's ruling yesterday, Jalingo, the Taraba State capital, was thrown into jubilation, as residents marched through major streets of the town in celebration of the judgment. \n Residents in their thousands took to the streets, particularly around Hammaruwa Way, ATC, Mile 6 and Magami in motorcades and moved round the town singing and dancing. \n Traffic was obstructed and halted for several hours in the town as the convoy, which included women and children, and was carrying large loudspeakers obstructed the flow of traffic along the major roads. \n Enyetere Ambituni, one of the jubilant residents, told THISDAY that the judiciary proved once again to be the last hope of the common man and had vindicated the majority of the people of the state who overwhelmingly voted for Ishaku as their governor. \n According to him, \"We are celebrating today because the judiciary has once again shown that it is the last hope of the oppressed. The people of Taraba who overwhelmingly voted Ishaku as their governor have been vindicated.\" \n In Owerri, the Appeal Court also nullified the election of the Abia State Governor, Dr. Okezie Ikpeazu, and declared the governorship candidate of APGA, Otti, as the winner of the governorship election conducted in April. Otti had gone to the appeal court to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of Ikpeazu. \n Just like he did at the tribunal, the APGA candidate contested the controversial results from Obingwa, Osisioma and Isiala Ngwa North Local Government Areas that the returning officer cancelled and later reversed. However, the results from the three local governments turned out to be the determinant in the Appeal Court's judgment delivered by Justice Oyebisi Omoleye. \n The five-member panel unanimously agreed that the controversial results should not have been included in the final results and therefore cancelled them and after doing the mathematics, held that Otti scored the highest number of valid votes. In the governorship poll, Ikpeazu had emerged winner with 264,713 as against 180,882 votes credited to Otti by INEC which was affirmed by the tribunal. \n But after subtracting the scores of the candidates in the three council areas, the appeal panel held that Otti scored a total of 164,332 votes as against 114,444 obtained by Ikpeazu. \n Accordingly, Justice Omoleye held that the APGA candidate was duly elected and should be sworn in as governor of Abia State. Expectedly, when the news of Otti's victory at the appeal court filtered into Umuahia, the capital, there were wild jubilations by supporters of APGA. Scores of jubilant party supporters mounted tricycles and drove along major streets of the capital city waving party flags, singing and praising Otti for his tenacity. \n However, the ruling by the appellate court did not go down well with Ikpeazu, whose aide said that the governor would \"definitely challenge the ruling at the Supreme Court\". \n Also addressing the press yesterday in Umuahia, Ikpeazu faulted the Appeal Court's judgment, saying that it was untenable and would be challenged at the Supreme Court. \n The Abia governor said that he had directed his lawyers to take immediate steps to challenge the judgment at the Supreme Court. \"I wish to state at this point that preliminary reports available to me indicate that the premise upon which the decision of the Court of Appeal was arrived at was at best tenuous,\" he said. \n The governor said that in going to the Supreme Court he has \"utmost confidence in the ability of the justices to correct the anomaly at the Court of Appeal and uphold my victory as had been done earlier by the Election Petitions Tribunal\". \n Ikpeazu said though he was yet to get a full briefing on the reason the Appeal Court nullified his election, his lawyers were still at Owerri doing everything possible to obtain a copy of the judgment. \n \"The next four days are public holidays and the timing of the judgment means that we are losing valuable days to study the judgment and file our appeal,\" he said. \n Ikpeazu assured residents of Abia that his status as governor had not changed, adding that all was well. \"I remain the governor of Abia State until the Supreme Court reaffirms my mandate freely given to me by Abians during the election,\" he said. \n To avoid a breakdown of law and order, Ikpeazu called on security agencies to maintain the peace and ensure that people go about their legitimate businesses without disruption. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 135, "end": 138, "input": "tokens", "text": "of security concerns in the North - east , a five - member "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "North - east"}, {"source": {"segment": "content_relaxed", "context": {"start": 155, "end": 158, "input": "tokens", "text": "of security concerns in the North - east , a five - member "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "North - east"}], "key": "north - east", "value": "North - east"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1671, "end": 1672, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Appeal Court Affirms Otti, Ishaku Duly Elected Governors of Abia, Taraba - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 17, "end": 20, "input": "tokens", "text": "Emmanuel Ugwu in Umuahia \n The Appeal Court sitting in Abuja and Owerri "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Appeal Court"}, {"source": {"segment": "content_strict", "context": {"start": 882, "end": 885, "input": "tokens", "text": "\" \n In Owerri , the Appeal Court also nullified the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_strict", "context": {"start": 997, "end": 1000, "input": "tokens", "text": "to be the determinant in the Appeal Court ' s judgment delivered by "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_strict", "context": {"start": 1248, "end": 1251, "input": "tokens", "text": "in Umuahia , Ikpeazu faulted the Appeal Court ' s judgment , saying "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_strict", "context": {"start": 1394, "end": 1397, "input": "tokens", "text": "full briefing on the reason the Appeal Court nullified his election , his "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 37, "end": 40, "input": "tokens", "text": "Emmanuel Ugwu in Umuahia \n The Appeal Court sitting in Abuja and Owerri "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Appeal Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 902, "end": 905, "input": "tokens", "text": "\" \n In Owerri , the Appeal Court also nullified the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1017, "end": 1020, "input": "tokens", "text": "to be the determinant in the Appeal Court ' s judgment delivered by "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1268, "end": 1271, "input": "tokens", "text": "in Umuahia , Ikpeazu faulted the Appeal Court ' s judgment , saying "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1414, "end": 1417, "input": "tokens", "text": "full briefing on the reason the Appeal Court nullified his election , his "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}], "key": "the appeal court", "value": "The Appeal Court"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 33, "end": 37, "input": "tokens", "text": "Mr . Darius Ishaku of the Peoples Democratic Party ( PDP ) and Mr "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}, {"source": {"segment": "content_relaxed", "context": {"start": 53, "end": 57, "input": "tokens", "text": "Mr . Darius Ishaku of the Peoples Democratic Party ( PDP ) and Mr "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}], "key": "the peoples democratic party", "value": "the Peoples Democratic Party"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 38, "end": 39, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) and Mr . Alex "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 258, "end": 259, "input": "tokens", "text": "by his party , the PDP , to vie for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 398, "end": 399, "input": "tokens", "text": "the primary election of the PDP , which produced Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 418, "end": 419, "input": "tokens", "text": "is a member of the PDP . \n It also held "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 442, "end": 443, "input": "tokens", "text": "breach or failure of the PDP to give the electoral body "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 573, "end": 574, "input": "tokens", "text": "of the governorship candidate by PDP breached Section 85 of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 606, "end": 607, "input": "tokens", "text": "in as governor because the PDP did not conduct a valid "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 58, "end": 59, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) and Mr . Alex "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 278, "end": 279, "input": "tokens", "text": "by his party , the PDP , to vie for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 418, "end": 419, "input": "tokens", "text": "the primary election of the PDP , which produced Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 438, "end": 439, "input": "tokens", "text": "is a member of the PDP . \n It also held "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 462, "end": 463, "input": "tokens", "text": "breach or failure of the PDP to give the electoral body "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 593, "end": 594, "input": "tokens", "text": "of the governorship candidate by PDP breached Section 85 of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 626, "end": 627, "input": "tokens", "text": "in as governor because the PDP did not conduct a valid "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}], "key": "pdp", "value": "PDP"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 49, "end": 51, "input": "tokens", "text": "Otti of the All Progressives Grand Alliance ( APGA ) as winners "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Grand Alliance"}, {"source": {"segment": "content_relaxed", "context": {"start": 69, "end": 71, "input": "tokens", "text": "Otti of the All Progressives Grand Alliance ( APGA ) as winners "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Grand Alliance"}], "key": "grand alliance", "value": "Grand Alliance"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 148, "end": 151, "input": "tokens", "text": "panel of justices headed by Justice Abdul Aboki set aside the ruling of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Justice Abdul Aboki"}, {"source": {"segment": "content_relaxed", "context": {"start": 168, "end": 171, "input": "tokens", "text": "panel of justices headed by Justice Abdul Aboki set aside the ruling of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Justice Abdul Aboki"}], "key": "justice abdul aboki", "value": "Justice Abdul Aboki"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 187, "end": 190, "input": "tokens", "text": "the governorship candidate of the All Progressives Congress ( APC ) , Mrs "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}, {"source": {"segment": "content_relaxed", "context": {"start": 207, "end": 210, "input": "tokens", "text": "the governorship candidate of the All Progressives Congress ( APC ) , Mrs "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}], "key": "all progressives congress", "value": "All Progressives Congress"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 196, "end": 199, "input": "tokens", "text": "APC ) , Mrs . Aisha Jumai Alhassan , also known as \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aisha Jumai Alhassan"}, {"source": {"segment": "content_relaxed", "context": {"start": 216, "end": 219, "input": "tokens", "text": "APC ) , Mrs . Aisha Jumai Alhassan , also known as \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aisha Jumai Alhassan"}], "key": "aisha jumai alhassan", "value": "Aisha Jumai Alhassan"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 247, "end": 248, "input": "tokens", "text": "petitioners before the tribunal , Ishaku was validly elected and sponsored "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 267, "end": 268, "input": "tokens", "text": "petitioners before the tribunal , Ishaku was validly elected and sponsored "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}], "key": "ishaku", "value": "Ishaku"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 275, "end": 278, "input": "tokens", "text": "accordance with the constitution , the Electoral Act and in accordance with the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electoral Act"}, {"source": {"segment": "content_strict", "context": {"start": 510, "end": 513, "input": "tokens", "text": "According to the court , the Electoral Act specifies the procedures for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electoral Act"}, {"source": {"segment": "content_relaxed", "context": {"start": 295, "end": 298, "input": "tokens", "text": "accordance with the constitution , the Electoral Act and in accordance with the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electoral Act"}, {"source": {"segment": "content_relaxed", "context": {"start": 530, "end": 533, "input": "tokens", "text": "According to the court , the Electoral Act specifies the procedures for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electoral Act"}], "key": "the electoral act", "value": "the Electoral Act"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 289, "end": 294, "input": "tokens", "text": "guidelines as laid down by the Independent National Electoral Commission ( INEC ) . \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Independent National Electoral Commission"}, {"source": {"segment": "content_relaxed", "context": {"start": 309, "end": 314, "input": "tokens", "text": "guidelines as laid down by the Independent National Electoral Commission ( INEC ) . \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Independent National Electoral Commission"}], "key": "the independent national electoral commission", "value": "the Independent National Electoral Commission"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 295, "end": 296, "input": "tokens", "text": "Independent National Electoral Commission ( INEC ) . \" Therefore the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_strict", "context": {"start": 425, "end": 426, "input": "tokens", "text": "\n It also held that INEC superintends the activities of political "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_strict", "context": {"start": 502, "end": 503, "input": "tokens", "text": "the said primary election and INEC . \n According to the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_strict", "context": {"start": 1074, "end": 1075, "input": "tokens", "text": "votes credited to Otti by INEC which was affirmed by the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 315, "end": 316, "input": "tokens", "text": "Independent National Electoral Commission ( INEC ) . \" Therefore the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 445, "end": 446, "input": "tokens", "text": "\n It also held that INEC superintends the activities of political "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 522, "end": 523, "input": "tokens", "text": "the said primary election and INEC . \n According to the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 1094, "end": 1095, "input": "tokens", "text": "votes credited to Otti by INEC which was affirmed by the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}], "key": "inec", "value": "INEC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 303, "end": 310, "input": "tokens", "text": "\" Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Taraba State Governorship Election Petitions Tribunal"}, {"source": {"segment": "content_relaxed", "context": {"start": 323, "end": 330, "input": "tokens", "text": "\" Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Taraba State Governorship Election Petitions Tribunal"}], "key": "the taraba state governorship election petitions tribunal", "value": "the Taraba State Governorship Election Petitions Tribunal"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 358, "end": 360, "input": "tokens", "text": "the dully elected governor of Taraba State \" . According to the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba State"}, {"source": {"segment": "content_relaxed", "context": {"start": 378, "end": 380, "input": "tokens", "text": "the dully elected governor of Taraba State \" . According to the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba State"}], "key": "taraba state", "value": "Taraba State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 367, "end": 368, "input": "tokens", "text": "According to the court , APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 466, "end": 467, "input": "tokens", "text": "been the headache of the APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 559, "end": 560, "input": "tokens", "text": "in a petition filed by APC and Alhassan , held that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 630, "end": 631, "input": "tokens", "text": "tribunal however held that the APC governorship candidate could not adequately "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 387, "end": 388, "input": "tokens", "text": "According to the court , APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 486, "end": 487, "input": "tokens", "text": "been the headache of the APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 579, "end": 580, "input": "tokens", "text": "in a petition filed by APC and Alhassan , held that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 650, "end": 651, "input": "tokens", "text": "tribunal however held that the APC governorship candidate could not adequately "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}], "key": "apc", "value": "APC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 544, "end": 549, "input": "tokens", "text": "the primary election . \n The Justice Musa Danladi Abubakar - led tribunal , had "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Justice Musa Danladi Abubakar"}, {"source": {"segment": "content_relaxed", "context": {"start": 564, "end": 569, "input": "tokens", "text": "the primary election . \n The Justice Musa Danladi Abubakar - led tribunal , had "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Justice Musa Danladi Abubakar"}], "key": "the justice musa danladi abubakar", "value": "The Justice Musa Danladi Abubakar"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 561, "end": 562, "input": "tokens", "text": "petition filed by APC and Alhassan , held that the purported "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alhassan"}, {"source": {"segment": "content_strict", "context": {"start": 598, "end": 599, "input": "tokens", "text": "in a judgment ordered that Alhassan be sworn in as governor "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alhassan"}, {"source": {"segment": "content_relaxed", "context": {"start": 581, "end": 582, "input": "tokens", "text": "petition filed by APC and Alhassan , held that the purported "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alhassan"}, {"source": {"segment": "content_relaxed", "context": {"start": 618, "end": 619, "input": "tokens", "text": "in a judgment ordered that Alhassan be sworn in as governor "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alhassan"}], "key": "alhassan", "value": "Alhassan"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 694, "end": 697, "input": "tokens", "text": "ruling yesterday , Jalingo , the Taraba State capital , was thrown into "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Taraba State"}, {"source": {"segment": "content_relaxed", "context": {"start": 714, "end": 717, "input": "tokens", "text": "ruling yesterday , Jalingo , the Taraba State capital , was thrown into "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Taraba State"}], "key": "the taraba state", "value": "the Taraba State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 734, "end": 735, "input": "tokens", "text": "particularly around Hammaruwa Way , ATC , Mile 6 and Magami "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "ATC"}, {"source": {"segment": "content_relaxed", "context": {"start": 754, "end": 755, "input": "tokens", "text": "particularly around Hammaruwa Way , ATC , Mile 6 and Magami "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "ATC"}], "key": "atc", "value": "ATC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 799, "end": 800, "input": "tokens", "text": "the jubilant residents , told THISDAY that the judiciary proved once "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "THISDAY"}, {"source": {"segment": "content_relaxed", "context": {"start": 819, "end": 820, "input": "tokens", "text": "the jubilant residents , told THISDAY that the judiciary proved once "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "THISDAY"}], "key": "thisday", "value": "THISDAY"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 890, "end": 893, "input": "tokens", "text": "also nullified the election of the Abia State Governor , Dr . Okezie "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Abia State"}, {"source": {"segment": "content_relaxed", "context": {"start": 910, "end": 913, "input": "tokens", "text": "also nullified the election of the Abia State Governor , Dr . Okezie "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Abia State"}], "key": "the abia state", "value": "the Abia State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 906, "end": 907, "input": "tokens", "text": "declared the governorship candidate of APGA , Otti , as the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_strict", "context": {"start": 955, "end": 956, "input": "tokens", "text": "at the tribunal , the APGA candidate contested the controversial results "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_strict", "context": {"start": 1128, "end": 1129, "input": "tokens", "text": "Justice Omoleye held that the APGA candidate was duly elected and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_strict", "context": {"start": 1172, "end": 1173, "input": "tokens", "text": "wild jubilations by supporters of APGA . Scores of jubilant party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_relaxed", "context": {"start": 926, "end": 927, "input": "tokens", "text": "declared the governorship candidate of APGA , Otti , as the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_relaxed", "context": {"start": 975, "end": 976, "input": "tokens", "text": "at the tribunal , the APGA candidate contested the controversial results "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_relaxed", "context": {"start": 1148, "end": 1149, "input": "tokens", "text": "Justice Omoleye held that the APGA candidate was duly elected and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_relaxed", "context": {"start": 1192, "end": 1193, "input": "tokens", "text": "wild jubilations by supporters of APGA . Scores of jubilant party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}], "key": "apga", "value": "APGA"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 933, "end": 938, "input": "tokens", "text": "to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Governorship Election Petitions Tribunal"}, {"source": {"segment": "content_relaxed", "context": {"start": 953, "end": 958, "input": "tokens", "text": "to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Governorship Election Petitions Tribunal"}], "key": "the governorship election petitions tribunal", "value": "the Governorship Election Petitions Tribunal"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1005, "end": 1008, "input": "tokens", "text": "' s judgment delivered by Justice Oyebisi Omoleye . \n The five - "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Justice Oyebisi Omoleye"}, {"source": {"segment": "content_relaxed", "context": {"start": 1025, "end": 1028, "input": "tokens", "text": "' s judgment delivered by Justice Oyebisi Omoleye . \n The five - "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Justice Oyebisi Omoleye"}], "key": "justice oyebisi omoleye", "value": "Justice Oyebisi Omoleye"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1042, "end": 1043, "input": "tokens", "text": "the mathematics , held that Otti scored the highest number of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_strict", "context": {"start": 1072, "end": 1073, "input": "tokens", "text": ", 882 votes credited to Otti by INEC which was affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_strict", "context": {"start": 1102, "end": 1103, "input": "tokens", "text": "the appeal panel held that Otti scored a total of 164 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_strict", "context": {"start": 1150, "end": 1151, "input": "tokens", "text": ", when the news of Otti ' s victory at the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 1062, "end": 1063, "input": "tokens", "text": "the mathematics , held that Otti scored the highest number of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 1092, "end": 1093, "input": "tokens", "text": ", 882 votes credited to Otti by INEC which was affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 1122, "end": 1123, "input": "tokens", "text": "the appeal panel held that Otti scored a total of 164 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 1170, "end": 1171, "input": "tokens", "text": ", when the news of Otti ' s victory at the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}], "key": "otti", "value": "Otti"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1118, "end": 1119, "input": "tokens", "text": "114 , 444 obtained by Ikpeazu . \n Accordingly , Justice "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_strict", "context": {"start": 1217, "end": 1218, "input": "tokens", "text": "not go down well with Ikpeazu , whose aide said that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1138, "end": 1139, "input": "tokens", "text": "114 , 444 obtained by Ikpeazu . \n Accordingly , Justice "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1237, "end": 1238, "input": "tokens", "text": "not go down well with Ikpeazu , whose aide said that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}], "key": "ikpeazu", "value": "Ikpeazu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1232, "end": 1235, "input": "tokens", "text": "definitely challenge the ruling at the Supreme Court \" . \n Also addressing "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_strict", "context": {"start": 1265, "end": 1268, "input": "tokens", "text": "and would be challenged at the Supreme Court . \n The Abia governor "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_strict", "context": {"start": 1289, "end": 1292, "input": "tokens", "text": "to challenge the judgment at the Supreme Court . \" I wish to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_strict", "context": {"start": 1340, "end": 1343, "input": "tokens", "text": "said that in going to the Supreme Court he has \" utmost confidence "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_strict", "context": {"start": 1483, "end": 1486, "input": "tokens", "text": "governor of Abia State until the Supreme Court reaffirms my mandate freely given "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1252, "end": 1255, "input": "tokens", "text": "definitely challenge the ruling at the Supreme Court \" . \n Also addressing "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1285, "end": 1288, "input": "tokens", "text": "and would be challenged at the Supreme Court . \n The Abia governor "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1309, "end": 1312, "input": "tokens", "text": "to challenge the judgment at the Supreme Court . \" I wish to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1360, "end": 1363, "input": "tokens", "text": "said that in going to the Supreme Court he has \" utmost confidence "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1503, "end": 1506, "input": "tokens", "text": "governor of Abia State until the Supreme Court reaffirms my mandate freely given "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}], "key": "the supreme court", "value": "the Supreme Court"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1316, "end": 1320, "input": "tokens", "text": "upon which the decision of the Court of Appeal was arrived at was at "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Court of Appeal"}, {"source": {"segment": "content_strict", "context": {"start": 1359, "end": 1363, "input": "tokens", "text": "to correct the anomaly at the Court of Appeal and uphold my victory as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Court of Appeal"}, {"source": {"segment": "content_relaxed", "context": {"start": 1336, "end": 1340, "input": "tokens", "text": "upon which the decision of the Court of Appeal was arrived at was at "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Court of Appeal"}, {"source": {"segment": "content_relaxed", "context": {"start": 1379, "end": 1383, "input": "tokens", "text": "to correct the anomaly at the Court of Appeal and uphold my victory as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Court of Appeal"}], "key": "the court of appeal", "value": "the Court of Appeal"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1373, "end": 1377, "input": "tokens", "text": "had been done earlier by the Election Petitions Tribunal \" . \n Ikpeazu said "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Election Petitions Tribunal"}, {"source": {"segment": "content_relaxed", "context": {"start": 1393, "end": 1397, "input": "tokens", "text": "had been done earlier by the Election Petitions Tribunal \" . \n Ikpeazu said "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Election Petitions Tribunal"}], "key": "the election petitions tribunal", "value": "the Election Petitions Tribunal"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Appeal Court Affirms Otti , Ishaku Duly "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Appeal Court"}, {"source": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Appeal Court Affirms Otti , Ishaku Duly "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Appeal Court"}], "key": "appeal court", "value": "Appeal Court"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 12, "end": 16, "input": "tokens", "text": "Appeal Court Affirms Otti , Ishaku Duly Elected Governors of Abia , Taraba \n "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku Duly Elected Governors"}, {"source": {"segment": "title", "context": {"start": 7, "end": 11, "input": "tokens", "text": "Appeal Court Affirms Otti , Ishaku Duly Elected Governors of Abia , Taraba - "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku Duly Elected Governors"}], "key": "ishaku duly elected governors", "value": "Ishaku Duly Elected Governors"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1565, "end": 1566, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1567, "end": 1570, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n By Senator Iroegbu in Abuja , Wole Ayodele in Jalingo "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_strict", "context": {"start": 22, "end": 23, "input": "tokens", "text": "The Appeal Court sitting in Abuja and Owerri on Thursday affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_strict", "context": {"start": 128, "end": 129, "input": "tokens", "text": "tribunal , which sat in Abuja because of security concerns in "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 25, "end": 26, "input": "tokens", "text": "\n By Senator Iroegbu in Abuja , Wole Ayodele in Jalingo "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 42, "end": 43, "input": "tokens", "text": "The Appeal Court sitting in Abuja and Owerri on Thursday affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 148, "end": 149, "input": "tokens", "text": "tribunal , which sat in Abuja because of security concerns in "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jalingo"}, {"source": {"segment": "content_relaxed", "context": {"start": 30, "end": 31, "input": "tokens", "text": "Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jalingo"}], "key": "jalingo", "value": "Jalingo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 15, "end": 16, "input": "tokens", "text": "Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal Court sitting "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Umuahia"}, {"source": {"segment": "content_strict", "context": {"start": 1160, "end": 1161, "input": "tokens", "text": "the appeal court filtered into Umuahia , the capital , there "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Umuahia"}, {"source": {"segment": "content_strict", "context": {"start": 1244, "end": 1245, "input": "tokens", "text": "addressing the press yesterday in Umuahia , Ikpeazu faulted the Appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 35, "end": 36, "input": "tokens", "text": "Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal Court sitting "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 1180, "end": 1181, "input": "tokens", "text": "the appeal court filtered into Umuahia , the capital , there "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 1264, "end": 1265, "input": "tokens", "text": "addressing the press yesterday in Umuahia , Ikpeazu faulted the Appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Umuahia"}], "key": "umuahia", "value": "Umuahia"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 24, "end": 25, "input": "tokens", "text": "Court sitting in Abuja and Owerri on Thursday affirmed Mr . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}, {"source": {"segment": "content_strict", "context": {"start": 880, "end": 881, "input": "tokens", "text": "vindicated . \" \n In Owerri , the Appeal Court also "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}, {"source": {"segment": "content_strict", "context": {"start": 1406, "end": 1407, "input": "tokens", "text": "his lawyers were still at Owerri doing everything possible to obtain "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}, {"source": {"segment": "content_relaxed", "context": {"start": 44, "end": 45, "input": "tokens", "text": "Court sitting in Abuja and Owerri on Thursday affirmed Mr . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}, {"source": {"segment": "content_relaxed", "context": {"start": 900, "end": 901, "input": "tokens", "text": "vindicated . \" \n In Owerri , the Appeal Court also "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}, {"source": {"segment": "content_relaxed", "context": {"start": 1426, "end": 1427, "input": "tokens", "text": "his lawyers were still at Owerri doing everything possible to obtain "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}], "key": "owerri", "value": "Owerri"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 63, "end": 64, "input": "tokens", "text": "April 11 governorship elections in Taraba and Abia States , respectively "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_strict", "context": {"start": 94, "end": 95, "input": "tokens", "text": "Tribunal , which sacked the Taraba governor from office based on "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_strict", "context": {"start": 865, "end": 866, "input": "tokens", "text": "oppressed . The people of Taraba who overwhelmingly voted Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_relaxed", "context": {"start": 19, "end": 20, "input": "tokens", "text": "Elected Governors of Abia , Taraba \n By Senator Iroegbu in "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_relaxed", "context": {"start": 83, "end": 84, "input": "tokens", "text": "April 11 governorship elections in Taraba and Abia States , respectively "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_relaxed", "context": {"start": 114, "end": 115, "input": "tokens", "text": "Tribunal , which sacked the Taraba governor from office based on "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_relaxed", "context": {"start": 885, "end": 886, "input": "tokens", "text": "oppressed . The people of Taraba who overwhelmingly voted Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "title", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Elected Governors of Abia , Taraba - allAfrica . com "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}], "key": "taraba", "value": "Taraba"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 65, "end": 67, "input": "tokens", "text": "governorship elections in Taraba and Abia States , respectively . \n The "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia States"}, {"source": {"segment": "content_relaxed", "context": {"start": 85, "end": 87, "input": "tokens", "text": "governorship elections in Taraba and Abia States , respectively . \n The "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia States"}], "key": "abia states", "value": "Abia States"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 402, "end": 403, "input": "tokens", "text": "the PDP , which produced Ishaku as its candidate for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_strict", "context": {"start": 583, "end": 584, "input": "tokens", "text": "the Electoral Act and ordered Ishaku to vacate his office . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 422, "end": 423, "input": "tokens", "text": "the PDP , which produced Ishaku as its candidate for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 603, "end": 604, "input": "tokens", "text": "the Electoral Act and ordered Ishaku to vacate his office . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}], "key": "ishaku", "value": "Ishaku"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 739, "end": 740, "input": "tokens", "text": "ATC , Mile 6 and Magami in motorcades and moved round "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magami"}, {"source": {"segment": "content_relaxed", "context": {"start": 759, "end": 760, "input": "tokens", "text": "ATC , Mile 6 and Magami in motorcades and moved round "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magami"}], "key": "magami", "value": "Magami"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 895, "end": 896, "input": "tokens", "text": "the Abia State Governor , Dr . Okezie Ikpeazu , and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_relaxed", "context": {"start": 915, "end": 916, "input": "tokens", "text": "the Abia State Governor , Dr . Okezie Ikpeazu , and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}], "key": "dr", "value": "Dr"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 908, "end": 909, "input": "tokens", "text": "governorship candidate of APGA , Otti , as the winner of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 928, "end": 929, "input": "tokens", "text": "governorship candidate of APGA , Otti , as the winner of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}], "key": "otti", "value": "Otti"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 943, "end": 944, "input": "tokens", "text": "which upheld the election of Ikpeazu . \n Just like he "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_strict", "context": {"start": 1246, "end": 1247, "input": "tokens", "text": "press yesterday in Umuahia , Ikpeazu faulted the Appeal Court ' "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_strict", "context": {"start": 1513, "end": 1514, "input": "tokens", "text": "of law and order , Ikpeazu called on security agencies to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 963, "end": 964, "input": "tokens", "text": "which upheld the election of Ikpeazu . \n Just like he "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1266, "end": 1267, "input": "tokens", "text": "press yesterday in Umuahia , Ikpeazu faulted the Appeal Court ' "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1533, "end": 1534, "input": "tokens", "text": "of law and order , Ikpeazu called on security agencies to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}], "key": "ikpeazu", "value": "Ikpeazu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 962, "end": 963, "input": "tokens", "text": "contested the controversial results from Obingwa , Osisioma and Isiala Ngwa "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obingwa"}, {"source": {"segment": "content_relaxed", "context": {"start": 982, "end": 983, "input": "tokens", "text": "contested the controversial results from Obingwa , Osisioma and Isiala Ngwa "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obingwa"}], "key": "obingwa", "value": "Obingwa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 964, "end": 965, "input": "tokens", "text": "controversial results from Obingwa , Osisioma and Isiala Ngwa North Local "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Osisioma"}, {"source": {"segment": "content_relaxed", "context": {"start": 984, "end": 985, "input": "tokens", "text": "controversial results from Obingwa , Osisioma and Isiala Ngwa North Local "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Osisioma"}], "key": "osisioma", "value": "Osisioma"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1141, "end": 1143, "input": "tokens", "text": "sworn in as governor of Abia State . Expectedly , when the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia State"}, {"source": {"segment": "content_strict", "context": {"start": 1480, "end": 1482, "input": "tokens", "text": "I remain the governor of Abia State until the Supreme Court reaffirms "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia State"}, {"source": {"segment": "content_relaxed", "context": {"start": 1161, "end": 1163, "input": "tokens", "text": "sworn in as governor of Abia State . Expectedly , when the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia State"}, {"source": {"segment": "content_relaxed", "context": {"start": 1500, "end": 1502, "input": "tokens", "text": "I remain the governor of Abia State until the Supreme Court reaffirms "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia State"}], "key": "abia state", "value": "Abia State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Appeal Court Affirms Otti "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Appeal Court Affirms Otti "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 17, "end": 18, "input": "tokens", "text": "Ishaku Duly Elected Governors of Abia , Taraba \n By Senator "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia"}, {"source": {"segment": "title", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Ishaku Duly Elected Governors of Abia , Taraba - allAfrica . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia"}], "key": "abia", "value": "Abia"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1494, "end": 1495, "input": "tokens", "text": "freely given to me by Abians during the election , \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abians"}, {"source": {"segment": "content_relaxed", "context": {"start": 1514, "end": 1515, "input": "tokens", "text": "freely given to me by Abians during the election , \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abians"}], "key": "abians", "value": "Abians"}]}, "content_extraction": {"content_relaxed": {"text": " \n 1 January 2016 \n Nigeria: Appeal Court Affirms Otti, Ishaku Duly Elected Governors of Abia, Taraba \n By Senator Iroegbu in Abuja, Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal Court sitting in Abuja and Owerri on Thursday affirmed Mr. Darius Ishaku of the Peoples Democratic Party (PDP) and Mr. Alex Otti of the All Progressives Grand Alliance (APGA) as winners of the April 11 governorship elections in Taraba and Abia States, respectively. \n The Abuja appellate court, in its judgment, set aside the decision of the state Election Petitions Tribunal, which sacked the Taraba governor from office based on pre-election matters. \n Delivering judgment on the three appeals and cross-appeal that emanated from the judgment of the tribunal, which sat in Abuja because of security concerns in the North-east, a five-member panel of justices headed by Justice Abdul Aboki set aside the ruling of the tribunal. \n Justice Aboki, who read the unanimous judgment, held that it was a gross misdirection for the tribunal to have declared the governorship candidate of the All Progressives Congress (APC), Mrs. Aisha Jumai Alhassan, also known as \"Mama Taraba\", winner of the gubernatorial poll on the basis that she scored the second highest number of votes in the election. \n The court also held that from the evidence of witnesses to the petitioners before the tribunal, Ishaku was validly elected and sponsored by his party, the PDP, to vie for the governorship seat of the state in accordance with the constitution, the Electoral Act and in accordance with the election guidelines as laid down by the Independent National Electoral Commission (INEC). \"Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null, void and set aside in its entirety. \n \"The appellant's appeal is meritorious and is hereby allowed,\" Justice Aboki held. The judge went further to affirm \"Darius Dickson Ishaku as the dully elected governor of Taraba State\". According to the court, APC and its governorship candidate, who were the first and second respondents in the appeal, had no locus standi under the law to challenge the primary election of the PDP, which produced Ishaku as its candidate for the election as none of them is a member of the PDP. \n It also held that INEC superintends the activities of political parties and if there was any breach or failure of the PDP to give the electoral body 21 days notice of its primary as alleged, it should not have been the headache of the APC and its governorship candidate, adding that the only person that could have complained of the conduct of a party's primary election was the person who participated in the said primary election and INEC. \n According to the court, the Electoral Act specifies the procedures for the election and sponsorship of a candidate by a political party and that the right to complain is limited to participants in the primary election. \n The Justice Musa Danladi Abubakar-led tribunal, had in a petition filed by APC and Alhassan, held that the purported nomination of the governorship candidate by PDP breached Section 85 of the Electoral Act and ordered Ishaku to vacate his office. \n Justice Abubakar had in a judgment ordered that Alhassan be sworn in as governor because the PDP did not conduct a valid primary that threw Ishaku up as its standard-bearer. \n The tribunal however held that the APC governorship candidate could not adequately prove her allegation of \"over-voting, irregularities, and non-compliance with the Electoral Act 2010\". \n Dissatisfied with the judgment, Ishaku filed an appeal, asking the appellate court to set aside the judgment of the tribunal. Reacting to the appellate court's ruling yesterday, Jalingo, the Taraba State capital, was thrown into jubilation, as residents marched through major streets of the town in celebration of the judgment. \n Residents in their thousands took to the streets, particularly around Hammaruwa Way, ATC, Mile 6 and Magami in motorcades and moved round the town singing and dancing. \n Traffic was obstructed and halted for several hours in the town as the convoy, which included women and children, and was carrying large loudspeakers obstructed the flow of traffic along the major roads. \n Enyetere Ambituni, one of the jubilant residents, told THISDAY that the judiciary proved once again to be the last hope of the common man and had vindicated the majority of the people of the state who overwhelmingly voted for Ishaku as their governor. \n According to him, \"We are celebrating today because the judiciary has once again shown that it is the last hope of the oppressed. The people of Taraba who overwhelmingly voted Ishaku as their governor have been vindicated.\" \n In Owerri, the Appeal Court also nullified the election of the Abia State Governor, Dr. Okezie Ikpeazu, and declared the governorship candidate of APGA, Otti, as the winner of the governorship election conducted in April. Otti had gone to the appeal court to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of Ikpeazu. \n Just like he did at the tribunal, the APGA candidate contested the controversial results from Obingwa, Osisioma and Isiala Ngwa North Local Government Areas that the returning officer cancelled and later reversed. However, the results from the three local governments turned out to be the determinant in the Appeal Court's judgment delivered by Justice Oyebisi Omoleye. \n The five-member panel unanimously agreed that the controversial results should not have been included in the final results and therefore cancelled them and after doing the mathematics, held that Otti scored the highest number of valid votes. In the governorship poll, Ikpeazu had emerged winner with 264,713 as against 180,882 votes credited to Otti by INEC which was affirmed by the tribunal. \n But after subtracting the scores of the candidates in the three council areas, the appeal panel held that Otti scored a total of 164,332 votes as against 114,444 obtained by Ikpeazu. \n Accordingly, Justice Omoleye held that the APGA candidate was duly elected and should be sworn in as governor of Abia State. Expectedly, when the news of Otti's victory at the appeal court filtered into Umuahia, the capital, there were wild jubilations by supporters of APGA. Scores of jubilant party supporters mounted tricycles and drove along major streets of the capital city waving party flags, singing and praising Otti for his tenacity. \n However, the ruling by the appellate court did not go down well with Ikpeazu, whose aide said that the governor would \"definitely challenge the ruling at the Supreme Court\". \n Also addressing the press yesterday in Umuahia, Ikpeazu faulted the Appeal Court's judgment, saying that it was untenable and would be challenged at the Supreme Court. \n The Abia governor said that he had directed his lawyers to take immediate steps to challenge the judgment at the Supreme Court. \"I wish to state at this point that preliminary reports available to me indicate that the premise upon which the decision of the Court of Appeal was arrived at was at best tenuous,\" he said. \n The governor said that in going to the Supreme Court he has \"utmost confidence in the ability of the justices to correct the anomaly at the Court of Appeal and uphold my victory as had been done earlier by the Election Petitions Tribunal\". \n Ikpeazu said though he was yet to get a full briefing on the reason the Appeal Court nullified his election, his lawyers were still at Owerri doing everything possible to obtain a copy of the judgment. \n \"The next four days are public holidays and the timing of the judgment means that we are losing valuable days to study the judgment and file our appeal,\" he said. \n Ikpeazu assured residents of Abia that his status as governor had not changed, adding that all was well. \"I remain the governor of Abia State until the Supreme Court reaffirms my mandate freely given to me by Abians during the election,\" he said. \n To avoid a breakdown of law and order, Ikpeazu called on security agencies to maintain the peace and ensure that people go about their legitimate businesses without disruption. \n Copyright \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "1", "january", "2016", "\n", "nigeria", ":", "appeal", "court", "affirms", "otti", ",", "ishaku", "duly", "elected", "governors", "of", "abia", ",", "taraba", "\n", "by", "senator", "iroegbu", "in", "abuja", ",", "wole", "ayodele", "in", "jalingo", "and", "emmanuel", "ugwu", "in", "umuahia", "\n", "the", "appeal", "court", "sitting", "in", "abuja", "and", "owerri", "on", "thursday", "affirmed", "mr", ".", "darius", "ishaku", "of", "the", "peoples", "democratic", "party", "(", "pdp", ")", "and", "mr", ".", "alex", "otti", "of", "the", "all", "progressives", "grand", "alliance", "(", "apga", ")", "as", "winners", "of", "the", "april", "11", "governorship", "elections", "in", "taraba", "and", "abia", "states", ",", "respectively", ".", "\n", "the", "abuja", "appellate", "court", ",", "in", "its", "judgment", ",", "set", "aside", "the", "decision", "of", "the", "state", "election", "petitions", "tribunal", ",", "which", "sacked", "the", "taraba", "governor", "from", "office", "based", "on", "pre", "-", "election", "matters", ".", "\n", "delivering", "judgment", "on", "the", "three", "appeals", "and", "cross", "-", "appeal", "that", "emanated", "from", "the", "judgment", "of", "the", "tribunal", ",", "which", "sat", "in", "abuja", "because", "of", "security", "concerns", "in", "the", "north", "-", "east", ",", "a", "five", "-", "member", "panel", "of", "justices", "headed", "by", "justice", "abdul", "aboki", "set", "aside", "the", "ruling", "of", "the", "tribunal", ".", "\n", "justice", "aboki", ",", "who", "read", "the", "unanimous", "judgment", ",", "held", "that", "it", "was", "a", "gross", "misdirection", "for", "the", "tribunal", "to", "have", "declared", "the", "governorship", "candidate", "of", "the", "all", "progressives", "congress", "(", "apc", ")", ",", "mrs", ".", "aisha", "jumai", "alhassan", ",", "also", "known", "as", "\"", "mama", "taraba", "\"", ",", "winner", "of", "the", "gubernatorial", "poll", "on", "the", "basis", "that", "she", "scored", "the", "second", "highest", "number", "of", "votes", "in", "the", "election", ".", "\n", "the", "court", "also", "held", "that", "from", "the", "evidence", "of", "witnesses", "to", "the", "petitioners", "before", "the", "tribunal", ",", "ishaku", "was", "validly", "elected", "and", "sponsored", "by", "his", "party", ",", "the", "pdp", ",", "to", "vie", "for", "the", "governorship", "seat", "of", "the", "state", "in", "accordance", "with", "the", "constitution", ",", "the", "electoral", "act", "and", "in", "accordance", "with", "the", "election", "guidelines", "as", "laid", "down", "by", "the", "independent", "national", "electoral", "commission", "(", "inec", ")", ".", "\"", "therefore", "the", "judgment", "of", "the", "taraba", "state", "governorship", "election", "petitions", "tribunal", "is", "hereby", "declared", "null", ",", "void", "and", "set", "aside", "in", "its", "entirety", ".", "\n", "\"", "the", "appellant", "'", "s", "appeal", "is", "meritorious", "and", "is", "hereby", "allowed", ",", "\"", "justice", "aboki", "held", ".", "the", "judge", "went", "further", "to", "affirm", "\"", "darius", "dickson", "ishaku", "as", "the", "dully", "elected", "governor", "of", "taraba", "state", "\"", ".", "according", "to", "the", "court", ",", "apc", "and", "its", "governorship", "candidate", ",", "who", "were", "the", "first", "and", "second", "respondents", "in", "the", "appeal", ",", "had", "no", "locus", "standi", "under", "the", "law", "to", "challenge", "the", "primary", "election", "of", "the", "pdp", ",", "which", "produced", "ishaku", "as", "its", "candidate", "for", "the", "election", "as", "none", "of", "them", "is", "a", "member", "of", "the", "pdp", ".", "\n", "it", "also", "held", "that", "inec", "superintends", "the", "activities", "of", "political", "parties", "and", "if", "there", "was", "any", "breach", "or", "failure", "of", "the", "pdp", "to", "give", "the", "electoral", "body", "21", "days", "notice", "of", "its", "primary", "as", "alleged", ",", "it", "should", "not", "have", "been", "the", "headache", "of", "the", "apc", "and", "its", "governorship", "candidate", ",", "adding", "that", "the", "only", "person", "that", "could", "have", "complained", "of", "the", "conduct", "of", "a", "party", "'", "s", "primary", "election", "was", "the", "person", "who", "participated", "in", "the", "said", "primary", "election", "and", "inec", ".", "\n", "according", "to", "the", "court", ",", "the", "electoral", "act", "specifies", "the", "procedures", "for", "the", "election", "and", "sponsorship", "of", "a", "candidate", "by", "a", "political", "party", "and", "that", "the", "right", "to", "complain", "is", "limited", "to", "participants", "in", "the", "primary", "election", ".", "\n", "the", "justice", "musa", "danladi", "abubakar", "-", "led", "tribunal", ",", "had", "in", "a", "petition", "filed", "by", "apc", "and", "alhassan", ",", "held", "that", "the", "purported", "nomination", "of", "the", "governorship", "candidate", "by", "pdp", "breached", "section", "85", "of", "the", "electoral", "act", "and", "ordered", "ishaku", "to", "vacate", "his", "office", ".", "\n", "justice", "abubakar", "had", "in", "a", "judgment", "ordered", "that", "alhassan", "be", "sworn", "in", "as", "governor", "because", "the", "pdp", "did", "not", "conduct", "a", "valid", "primary", "that", "threw", "ishaku", "up", "as", "its", "standard", "-", "bearer", ".", "\n", "the", "tribunal", "however", "held", "that", "the", "apc", "governorship", "candidate", "could", "not", "adequately", "prove", "her", "allegation", "of", "\"", "over", "-", "voting", ",", "irregularities", ",", "and", "non", "-", "compliance", "with", "the", "electoral", "act", "2010", "\"", ".", "\n", "dissatisfied", "with", "the", "judgment", ",", "ishaku", "filed", "an", "appeal", ",", "asking", "the", "appellate", "court", "to", "set", "aside", "the", "judgment", "of", "the", "tribunal", ".", "reacting", "to", "the", "appellate", "court", "'", "s", "ruling", "yesterday", ",", "jalingo", ",", "the", "taraba", "state", "capital", ",", "was", "thrown", "into", "jubilation", ",", "as", "residents", "marched", "through", "major", "streets", "of", "the", "town", "in", "celebration", "of", "the", "judgment", ".", "\n", "residents", "in", "their", "thousands", "took", "to", "the", "streets", ",", "particularly", "around", "hammaruwa", "way", ",", "atc", ",", "mile", "6", "and", "magami", "in", "motorcades", "and", "moved", "round", "the", "town", "singing", "and", "dancing", ".", "\n", "traffic", "was", "obstructed", "and", "halted", "for", "several", "hours", "in", "the", "town", "as", "the", "convoy", ",", "which", "included", "women", "and", "children", ",", "and", "was", "carrying", "large", "loudspeakers", "obstructed", "the", "flow", "of", "traffic", "along", "the", "major", "roads", ".", "\n", "enyetere", "ambituni", ",", "one", "of", "the", "jubilant", "residents", ",", "told", "thisday", "that", "the", "judiciary", "proved", "once", "again", "to", "be", "the", "last", "hope", "of", "the", "common", "man", "and", "had", "vindicated", "the", "majority", "of", "the", "people", "of", "the", "state", "who", "overwhelmingly", "voted", "for", "ishaku", "as", "their", "governor", ".", "\n", "according", "to", "him", ",", "\"", "we", "are", "celebrating", "today", "because", "the", "judiciary", "has", "once", "again", "shown", "that", "it", "is", "the", "last", "hope", "of", "the", "oppressed", ".", "the", "people", "of", "taraba", "who", "overwhelmingly", "voted", "ishaku", "as", "their", "governor", "have", "been", "vindicated", ".", "\"", "\n", "in", "owerri", ",", "the", "appeal", "court", "also", "nullified", "the", "election", "of", "the", "abia", "state", "governor", ",", "dr", ".", "okezie", "ikpeazu", ",", "and", "declared", "the", "governorship", "candidate", "of", "apga", ",", "otti", ",", "as", "the", "winner", "of", "the", "governorship", "election", "conducted", "in", "april", ".", "otti", "had", "gone", "to", "the", "appeal", "court", "to", "challenge", "the", "verdict", "of", "the", "governorship", "election", "petitions", "tribunal", "which", "upheld", "the", "election", "of", "ikpeazu", ".", "\n", "just", "like", "he", "did", "at", "the", "tribunal", ",", "the", "apga", "candidate", "contested", "the", "controversial", "results", "from", "obingwa", ",", "osisioma", "and", "isiala", "ngwa", "north", "local", "government", "areas", "that", "the", "returning", "officer", "cancelled", "and", "later", "reversed", ".", "however", ",", "the", "results", "from", "the", "three", "local", "governments", "turned", "out", "to", "be", "the", "determinant", "in", "the", "appeal", "court", "'", "s", "judgment", "delivered", "by", "justice", "oyebisi", "omoleye", ".", "\n", "the", "five", "-", "member", "panel", "unanimously", "agreed", "that", "the", "controversial", "results", "should", "not", "have", "been", "included", "in", "the", "final", "results", "and", "therefore", "cancelled", "them", "and", "after", "doing", "the", "mathematics", ",", "held", "that", "otti", "scored", "the", "highest", "number", "of", "valid", "votes", ".", "in", "the", "governorship", "poll", ",", "ikpeazu", "had", "emerged", "winner", "with", "264", ",", "713", "as", "against", "180", ",", "882", "votes", "credited", "to", "otti", "by", "inec", "which", "was", "affirmed", "by", "the", "tribunal", ".", "\n", "but", "after", "subtracting", "the", "scores", "of", "the", "candidates", "in", "the", "three", "council", "areas", ",", "the", "appeal", "panel", "held", "that", "otti", "scored", "a", "total", "of", "164", ",", "332", "votes", "as", "against", "114", ",", "444", "obtained", "by", "ikpeazu", ".", "\n", "accordingly", ",", "justice", "omoleye", "held", "that", "the", "apga", "candidate", "was", "duly", "elected", "and", "should", "be", "sworn", "in", "as", "governor", "of", "abia", "state", ".", "expectedly", ",", "when", "the", "news", "of", "otti", "'", "s", "victory", "at", "the", "appeal", "court", "filtered", "into", "umuahia", ",", "the", "capital", ",", "there", "were", "wild", "jubilations", "by", "supporters", "of", "apga", ".", "scores", "of", "jubilant", "party", "supporters", "mounted", "tricycles", "and", "drove", "along", "major", "streets", "of", "the", "capital", "city", "waving", "party", "flags", ",", "singing", "and", "praising", "otti", "for", "his", "tenacity", ".", "\n", "however", ",", "the", "ruling", "by", "the", "appellate", "court", "did", "not", "go", "down", "well", "with", "ikpeazu", ",", "whose", "aide", "said", "that", "the", "governor", "would", "\"", "definitely", "challenge", "the", "ruling", "at", "the", "supreme", "court", "\"", ".", "\n", "also", "addressing", "the", "press", "yesterday", "in", "umuahia", ",", "ikpeazu", "faulted", "the", "appeal", "court", "'", "s", "judgment", ",", "saying", "that", "it", "was", "untenable", "and", "would", "be", "challenged", "at", "the", "supreme", "court", ".", "\n", "the", "abia", "governor", "said", "that", "he", "had", "directed", "his", "lawyers", "to", "take", "immediate", "steps", "to", "challenge", "the", "judgment", "at", "the", "supreme", "court", ".", "\"", "i", "wish", "to", "state", "at", "this", "point", "that", "preliminary", "reports", "available", "to", "me", "indicate", "that", "the", "premise", "upon", "which", "the", "decision", "of", "the", "court", "of", "appeal", "was", "arrived", "at", "was", "at", "best", "tenuous", ",", "\"", "he", "said", ".", "\n", "the", "governor", "said", "that", "in", "going", "to", "the", "supreme", "court", "he", "has", "\"", "utmost", "confidence", "in", "the", "ability", "of", "the", "justices", "to", "correct", "the", "anomaly", "at", "the", "court", "of", "appeal", "and", "uphold", "my", "victory", "as", "had", "been", "done", "earlier", "by", "the", "election", "petitions", "tribunal", "\"", ".", "\n", "ikpeazu", "said", "though", "he", "was", "yet", "to", "get", "a", "full", "briefing", "on", "the", "reason", "the", "appeal", "court", "nullified", "his", "election", ",", "his", "lawyers", "were", "still", "at", "owerri", "doing", "everything", "possible", "to", "obtain", "a", "copy", "of", "the", "judgment", ".", "\n", "\"", "the", "next", "four", "days", "are", "public", "holidays", "and", "the", "timing", "of", "the", "judgment", "means", "that", "we", "are", "losing", "valuable", "days", "to", "study", "the", "judgment", "and", "file", "our", "appeal", ",", "\"", "he", "said", ".", "\n", "ikpeazu", "assured", "residents", "of", "abia", "that", "his", "status", "as", "governor", "had", "not", "changed", ",", "adding", "that", "all", "was", "well", ".", "\"", "i", "remain", "the", "governor", "of", "abia", "state", "until", "the", "supreme", "court", "reaffirms", "my", "mandate", "freely", "given", "to", "me", "by", "abians", "during", "the", "election", ",", "\"", "he", "said", ".", "\n", "to", "avoid", "a", "breakdown", "of", "law", "and", "order", ",", "ikpeazu", "called", "on", "security", "agencies", "to", "maintain", "the", "peace", "and", "ensure", "that", "people", "go", "about", "their", "legitimate", "businesses", "without", "disruption", ".", "\n", "copyright", "\n", "2016", "this", "day", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "1", "January", "2016", "\n", "Nigeria", ":", "Appeal", "Court", "Affirms", "Otti", ",", "Ishaku", "Duly", "Elected", "Governors", "of", "Abia", ",", "Taraba", "\n", "By", "Senator", "Iroegbu", "in", "Abuja", ",", "Wole", "Ayodele", "in", "Jalingo", "and", "Emmanuel", "Ugwu", "in", "Umuahia", "\n", "The", "Appeal", "Court", "sitting", "in", "Abuja", "and", "Owerri", "on", "Thursday", "affirmed", "Mr", ".", "Darius", "Ishaku", "of", "the", "Peoples", "Democratic", "Party", "(", "PDP", ")", "and", "Mr", ".", "Alex", "Otti", "of", "the", "All", "Progressives", "Grand", "Alliance", "(", "APGA", ")", "as", "winners", "of", "the", "April", "11", "governorship", "elections", "in", "Taraba", "and", "Abia", "States", ",", "respectively", ".", "\n", "The", "Abuja", "appellate", "court", ",", "in", "its", "judgment", ",", "set", "aside", "the", "decision", "of", "the", "state", "Election", "Petitions", "Tribunal", ",", "which", "sacked", "the", "Taraba", "governor", "from", "office", "based", "on", "pre", "-", "election", "matters", ".", "\n", "Delivering", "judgment", "on", "the", "three", "appeals", "and", "cross", "-", "appeal", "that", "emanated", "from", "the", "judgment", "of", "the", "tribunal", ",", "which", "sat", "in", "Abuja", "because", "of", "security", "concerns", "in", "the", "North", "-", "east", ",", "a", "five", "-", "member", "panel", "of", "justices", "headed", "by", "Justice", "Abdul", "Aboki", "set", "aside", "the", "ruling", "of", "the", "tribunal", ".", "\n", "Justice", "Aboki", ",", "who", "read", "the", "unanimous", "judgment", ",", "held", "that", "it", "was", "a", "gross", "misdirection", "for", "the", "tribunal", "to", "have", "declared", "the", "governorship", "candidate", "of", "the", "All", "Progressives", "Congress", "(", "APC", ")", ",", "Mrs", ".", "Aisha", "Jumai", "Alhassan", ",", "also", "known", "as", "\"", "Mama", "Taraba", "\"", ",", "winner", "of", "the", "gubernatorial", "poll", "on", "the", "basis", "that", "she", "scored", "the", "second", "highest", "number", "of", "votes", "in", "the", "election", ".", "\n", "The", "court", "also", "held", "that", "from", "the", "evidence", "of", "witnesses", "to", "the", "petitioners", "before", "the", "tribunal", ",", "Ishaku", "was", "validly", "elected", "and", "sponsored", "by", "his", "party", ",", "the", "PDP", ",", "to", "vie", "for", "the", "governorship", "seat", "of", "the", "state", "in", "accordance", "with", "the", "constitution", ",", "the", "Electoral", "Act", "and", "in", "accordance", "with", "the", "election", "guidelines", "as", "laid", "down", "by", "the", "Independent", "National", "Electoral", "Commission", "(", "INEC", ")", ".", "\"", "Therefore", "the", "judgment", "of", "the", "Taraba", "State", "Governorship", "Election", "Petitions", "Tribunal", "is", "hereby", "declared", "null", ",", "void", "and", "set", "aside", "in", "its", "entirety", ".", "\n", "\"", "The", "appellant", "'", "s", "appeal", "is", "meritorious", "and", "is", "hereby", "allowed", ",", "\"", "Justice", "Aboki", "held", ".", "The", "judge", "went", "further", "to", "affirm", "\"", "Darius", "Dickson", "Ishaku", "as", "the", "dully", "elected", "governor", "of", "Taraba", "State", "\"", ".", "According", "to", "the", "court", ",", "APC", "and", "its", "governorship", "candidate", ",", "who", "were", "the", "first", "and", "second", "respondents", "in", "the", "appeal", ",", "had", "no", "locus", "standi", "under", "the", "law", "to", "challenge", "the", "primary", "election", "of", "the", "PDP", ",", "which", "produced", "Ishaku", "as", "its", "candidate", "for", "the", "election", "as", "none", "of", "them", "is", "a", "member", "of", "the", "PDP", ".", "\n", "It", "also", "held", "that", "INEC", "superintends", "the", "activities", "of", "political", "parties", "and", "if", "there", "was", "any", "breach", "or", "failure", "of", "the", "PDP", "to", "give", "the", "electoral", "body", "21", "days", "notice", "of", "its", "primary", "as", "alleged", ",", "it", "should", "not", "have", "been", "the", "headache", "of", "the", "APC", "and", "its", "governorship", "candidate", ",", "adding", "that", "the", "only", "person", "that", "could", "have", "complained", "of", "the", "conduct", "of", "a", "party", "'", "s", "primary", "election", "was", "the", "person", "who", "participated", "in", "the", "said", "primary", "election", "and", "INEC", ".", "\n", "According", "to", "the", "court", ",", "the", "Electoral", "Act", "specifies", "the", "procedures", "for", "the", "election", "and", "sponsorship", "of", "a", "candidate", "by", "a", "political", "party", "and", "that", "the", "right", "to", "complain", "is", "limited", "to", "participants", "in", "the", "primary", "election", ".", "\n", "The", "Justice", "Musa", "Danladi", "Abubakar", "-", "led", "tribunal", ",", "had", "in", "a", "petition", "filed", "by", "APC", "and", "Alhassan", ",", "held", "that", "the", "purported", "nomination", "of", "the", "governorship", "candidate", "by", "PDP", "breached", "Section", "85", "of", "the", "Electoral", "Act", "and", "ordered", "Ishaku", "to", "vacate", "his", "office", ".", "\n", "Justice", "Abubakar", "had", "in", "a", "judgment", "ordered", "that", "Alhassan", "be", "sworn", "in", "as", "governor", "because", "the", "PDP", "did", "not", "conduct", "a", "valid", "primary", "that", "threw", "Ishaku", "up", "as", "its", "standard", "-", "bearer", ".", "\n", "The", "tribunal", "however", "held", "that", "the", "APC", "governorship", "candidate", "could", "not", "adequately", "prove", "her", "allegation", "of", "\"", "over", "-", "voting", ",", "irregularities", ",", "and", "non", "-", "compliance", "with", "the", "Electoral", "Act", "2010", "\"", ".", "\n", "Dissatisfied", "with", "the", "judgment", ",", "Ishaku", "filed", "an", "appeal", ",", "asking", "the", "appellate", "court", "to", "set", "aside", "the", "judgment", "of", "the", "tribunal", ".", "Reacting", "to", "the", "appellate", "court", "'", "s", "ruling", "yesterday", ",", "Jalingo", ",", "the", "Taraba", "State", "capital", ",", "was", "thrown", "into", "jubilation", ",", "as", "residents", "marched", "through", "major", "streets", "of", "the", "town", "in", "celebration", "of", "the", "judgment", ".", "\n", "Residents", "in", "their", "thousands", "took", "to", "the", "streets", ",", "particularly", "around", "Hammaruwa", "Way", ",", "ATC", ",", "Mile", "6", "and", "Magami", "in", "motorcades", "and", "moved", "round", "the", "town", "singing", "and", "dancing", ".", "\n", "Traffic", "was", "obstructed", "and", "halted", "for", "several", "hours", "in", "the", "town", "as", "the", "convoy", ",", "which", "included", "women", "and", "children", ",", "and", "was", "carrying", "large", "loudspeakers", "obstructed", "the", "flow", "of", "traffic", "along", "the", "major", "roads", ".", "\n", "Enyetere", "Ambituni", ",", "one", "of", "the", "jubilant", "residents", ",", "told", "THISDAY", "that", "the", "judiciary", "proved", "once", "again", "to", "be", "the", "last", "hope", "of", "the", "common", "man", "and", "had", "vindicated", "the", "majority", "of", "the", "people", "of", "the", "state", "who", "overwhelmingly", "voted", "for", "Ishaku", "as", "their", "governor", ".", "\n", "According", "to", "him", ",", "\"", "We", "are", "celebrating", "today", "because", "the", "judiciary", "has", "once", "again", "shown", "that", "it", "is", "the", "last", "hope", "of", "the", "oppressed", ".", "The", "people", "of", "Taraba", "who", "overwhelmingly", "voted", "Ishaku", "as", "their", "governor", "have", "been", "vindicated", ".", "\"", "\n", "In", "Owerri", ",", "the", "Appeal", "Court", "also", "nullified", "the", "election", "of", "the", "Abia", "State", "Governor", ",", "Dr", ".", "Okezie", "Ikpeazu", ",", "and", "declared", "the", "governorship", "candidate", "of", "APGA", ",", "Otti", ",", "as", "the", "winner", "of", "the", "governorship", "election", "conducted", "in", "April", ".", "Otti", "had", "gone", "to", "the", "appeal", "court", "to", "challenge", "the", "verdict", "of", "the", "Governorship", "Election", "Petitions", "Tribunal", "which", "upheld", "the", "election", "of", "Ikpeazu", ".", "\n", "Just", "like", "he", "did", "at", "the", "tribunal", ",", "the", "APGA", "candidate", "contested", "the", "controversial", "results", "from", "Obingwa", ",", "Osisioma", "and", "Isiala", "Ngwa", "North", "Local", "Government", "Areas", "that", "the", "returning", "officer", "cancelled", "and", "later", "reversed", ".", "However", ",", "the", "results", "from", "the", "three", "local", "governments", "turned", "out", "to", "be", "the", "determinant", "in", "the", "Appeal", "Court", "'", "s", "judgment", "delivered", "by", "Justice", "Oyebisi", "Omoleye", ".", "\n", "The", "five", "-", "member", "panel", "unanimously", "agreed", "that", "the", "controversial", "results", "should", "not", "have", "been", "included", "in", "the", "final", "results", "and", "therefore", "cancelled", "them", "and", "after", "doing", "the", "mathematics", ",", "held", "that", "Otti", "scored", "the", "highest", "number", "of", "valid", "votes", ".", "In", "the", "governorship", "poll", ",", "Ikpeazu", "had", "emerged", "winner", "with", "264", ",", "713", "as", "against", "180", ",", "882", "votes", "credited", "to", "Otti", "by", "INEC", "which", "was", "affirmed", "by", "the", "tribunal", ".", "\n", "But", "after", "subtracting", "the", "scores", "of", "the", "candidates", "in", "the", "three", "council", "areas", ",", "the", "appeal", "panel", "held", "that", "Otti", "scored", "a", "total", "of", "164", ",", "332", "votes", "as", "against", "114", ",", "444", "obtained", "by", "Ikpeazu", ".", "\n", "Accordingly", ",", "Justice", "Omoleye", "held", "that", "the", "APGA", "candidate", "was", "duly", "elected", "and", "should", "be", "sworn", "in", "as", "governor", "of", "Abia", "State", ".", "Expectedly", ",", "when", "the", "news", "of", "Otti", "'", "s", "victory", "at", "the", "appeal", "court", "filtered", "into", "Umuahia", ",", "the", "capital", ",", "there", "were", "wild", "jubilations", "by", "supporters", "of", "APGA", ".", "Scores", "of", "jubilant", "party", "supporters", "mounted", "tricycles", "and", "drove", "along", "major", "streets", "of", "the", "capital", "city", "waving", "party", "flags", ",", "singing", "and", "praising", "Otti", "for", "his", "tenacity", ".", "\n", "However", ",", "the", "ruling", "by", "the", "appellate", "court", "did", "not", "go", "down", "well", "with", "Ikpeazu", ",", "whose", "aide", "said", "that", "the", "governor", "would", "\"", "definitely", "challenge", "the", "ruling", "at", "the", "Supreme", "Court", "\"", ".", "\n", "Also", "addressing", "the", "press", "yesterday", "in", "Umuahia", ",", "Ikpeazu", "faulted", "the", "Appeal", "Court", "'", "s", "judgment", ",", "saying", "that", "it", "was", "untenable", "and", "would", "be", "challenged", "at", "the", "Supreme", "Court", ".", "\n", "The", "Abia", "governor", "said", "that", "he", "had", "directed", "his", "lawyers", "to", "take", "immediate", "steps", "to", "challenge", "the", "judgment", "at", "the", "Supreme", "Court", ".", "\"", "I", "wish", "to", "state", "at", "this", "point", "that", "preliminary", "reports", "available", "to", "me", "indicate", "that", "the", "premise", "upon", "which", "the", "decision", "of", "the", "Court", "of", "Appeal", "was", "arrived", "at", "was", "at", "best", "tenuous", ",", "\"", "he", "said", ".", "\n", "The", "governor", "said", "that", "in", "going", "to", "the", "Supreme", "Court", "he", "has", "\"", "utmost", "confidence", "in", "the", "ability", "of", "the", "justices", "to", "correct", "the", "anomaly", "at", "the", "Court", "of", "Appeal", "and", "uphold", "my", "victory", "as", "had", "been", "done", "earlier", "by", "the", "Election", "Petitions", "Tribunal", "\"", ".", "\n", "Ikpeazu", "said", "though", "he", "was", "yet", "to", "get", "a", "full", "briefing", "on", "the", "reason", "the", "Appeal", "Court", "nullified", "his", "election", ",", "his", "lawyers", "were", "still", "at", "Owerri", "doing", "everything", "possible", "to", "obtain", "a", "copy", "of", "the", "judgment", ".", "\n", "\"", "The", "next", "four", "days", "are", "public", "holidays", "and", "the", "timing", "of", "the", "judgment", "means", "that", "we", "are", "losing", "valuable", "days", "to", "study", "the", "judgment", "and", "file", "our", "appeal", ",", "\"", "he", "said", ".", "\n", "Ikpeazu", "assured", "residents", "of", "Abia", "that", "his", "status", "as", "governor", "had", "not", "changed", ",", "adding", "that", "all", "was", "well", ".", "\"", "I", "remain", "the", "governor", "of", "Abia", "State", "until", "the", "Supreme", "Court", "reaffirms", "my", "mandate", "freely", "given", "to", "me", "by", "Abians", "during", "the", "election", ",", "\"", "he", "said", ".", "\n", "To", "avoid", "a", "breakdown", "of", "law", "and", "order", ",", "Ikpeazu", "called", "on", "security", "agencies", "to", "maintain", "the", "peace", "and", "ensure", "that", "people", "go", "about", "their", "legitimate", "businesses", "without", "disruption", ".", "\n", "Copyright", "\n", "2016", "This", "Day", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 1701, "end": 1702, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "AllAfrica", "context": {"start": 1701, "end": 1702, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 23, "end": 24, "input": "tokens", "text": ", Taraba \n By Senator Iroegbu in Abuja , Wole Ayodele "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Iroegbu", "context": {"start": 23, "end": 24, "input": "tokens", "text": ", Taraba \n By Senator Iroegbu in Abuja , Wole Ayodele "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 27, "end": 29, "input": "tokens", "text": "Senator Iroegbu in Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Wole Ayodele", "context": {"start": 27, "end": 29, "input": "tokens", "text": "Senator Iroegbu in Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 32, "end": 34, "input": "tokens", "text": "Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Emmanuel Ugwu", "context": {"start": 32, "end": 34, "input": "tokens", "text": "Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 50, "end": 52, "input": "tokens", "text": "on Thursday affirmed Mr . Darius Ishaku of the Peoples Democratic Party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Darius Ishaku", "context": {"start": 50, "end": 52, "input": "tokens", "text": "on Thursday affirmed Mr . Darius Ishaku of the Peoples Democratic Party "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 63, "end": 65, "input": "tokens", "text": "PDP ) and Mr . Alex Otti of the All Progressives Grand "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Alex Otti", "context": {"start": 63, "end": 65, "input": "tokens", "text": "PDP ) and Mr . Alex Otti of the All Progressives Grand "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 181, "end": 182, "input": "tokens", "text": "the tribunal . \n Justice Aboki , who read the unanimous "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Aboki", "context": {"start": 181, "end": 182, "input": "tokens", "text": "the tribunal . \n Justice Aboki , who read the unanimous "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 224, "end": 226, "input": "tokens", "text": ", also known as \" Mama Taraba \" , winner of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Mama Taraba", "context": {"start": 224, "end": 226, "input": "tokens", "text": ", also known as \" Mama Taraba \" , winner of the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 684, "end": 685, "input": "tokens", "text": "Dissatisfied with the judgment , Ishaku filed an appeal , asking "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 684, "end": 685, "input": "tokens", "text": "Dissatisfied with the judgment , Ishaku filed an appeal , asking "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 712, "end": 713, "input": "tokens", "text": "' s ruling yesterday , Jalingo , the Taraba State capital "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Jalingo", "context": {"start": 712, "end": 713, "input": "tokens", "text": "' s ruling yesterday , Jalingo , the Taraba State capital "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 751, "end": 753, "input": "tokens", "text": "the streets , particularly around Hammaruwa Way , ATC , Mile 6 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Hammaruwa Way", "context": {"start": 751, "end": 753, "input": "tokens", "text": "the streets , particularly around Hammaruwa Way , ATC , Mile 6 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 809, "end": 811, "input": "tokens", "text": "the major roads . \n Enyetere Ambituni , one of the jubilant "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Enyetere Ambituni", "context": {"start": 809, "end": 811, "input": "tokens", "text": "the major roads . \n Enyetere Ambituni , one of the jubilant "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 850, "end": 851, "input": "tokens", "text": "state who overwhelmingly voted for Ishaku as their governor . \n "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 850, "end": 851, "input": "tokens", "text": "state who overwhelmingly voted for Ishaku as their governor . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 889, "end": 890, "input": "tokens", "text": "of Taraba who overwhelmingly voted Ishaku as their governor have been "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 889, "end": 890, "input": "tokens", "text": "of Taraba who overwhelmingly voted Ishaku as their governor have been "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 917, "end": 919, "input": "tokens", "text": "State Governor , Dr . Okezie Ikpeazu , and declared the governorship "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Okezie Ikpeazu", "context": {"start": 917, "end": 919, "input": "tokens", "text": "State Governor , Dr . Okezie Ikpeazu , and declared the governorship "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 941, "end": 942, "input": "tokens", "text": "election conducted in April . Otti had gone to the appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 941, "end": 942, "input": "tokens", "text": "election conducted in April . Otti had gone to the appeal "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 986, "end": 988, "input": "tokens", "text": "from Obingwa , Osisioma and Isiala Ngwa North Local Government Areas that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Isiala Ngwa", "context": {"start": 986, "end": 988, "input": "tokens", "text": "from Obingwa , Osisioma and Isiala Ngwa North Local Government Areas that "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1076, "end": 1077, "input": "tokens", "text": "In the governorship poll , Ikpeazu had emerged winner with 264 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1076, "end": 1077, "input": "tokens", "text": "In the governorship poll , Ikpeazu had emerged winner with 264 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1217, "end": 1218, "input": "tokens", "text": "flags , singing and praising Otti for his tenacity . \n "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 1217, "end": 1218, "input": "tokens", "text": "flags , singing and praising Otti for his tenacity . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1400, "end": 1401, "input": "tokens", "text": "Petitions Tribunal \" . \n Ikpeazu said though he was yet "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1400, "end": 1401, "input": "tokens", "text": "Petitions Tribunal \" . \n Ikpeazu said though he was yet "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 155, "end": 158, "input": "tokens", "text": "of security concerns in the North - east , a five - member "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "North - east", "context": {"start": 155, "end": 158, "input": "tokens", "text": "of security concerns in the North - east , a five - member "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1671, "end": 1672, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "AllAfrica", "context": {"start": 1671, "end": 1672, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Appeal Court Affirms Otti , Ishaku Duly "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Appeal Court", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Appeal Court Affirms Otti , Ishaku Duly "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 12, "end": 16, "input": "tokens", "text": "Appeal Court Affirms Otti , Ishaku Duly Elected Governors of Abia , Taraba \n "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku Duly Elected Governors", "context": {"start": 12, "end": 16, "input": "tokens", "text": "Appeal Court Affirms Otti , Ishaku Duly Elected Governors of Abia , Taraba \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 37, "end": 40, "input": "tokens", "text": "Emmanuel Ugwu in Umuahia \n The Appeal Court sitting in Abuja and Owerri "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "The Appeal Court", "context": {"start": 37, "end": 40, "input": "tokens", "text": "Emmanuel Ugwu in Umuahia \n The Appeal Court sitting in Abuja and Owerri "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 53, "end": 57, "input": "tokens", "text": "Mr . Darius Ishaku of the Peoples Democratic Party ( PDP ) and Mr "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Peoples Democratic Party", "context": {"start": 53, "end": 57, "input": "tokens", "text": "Mr . Darius Ishaku of the Peoples Democratic Party ( PDP ) and Mr "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 58, "end": 59, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) and Mr . Alex "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 58, "end": 59, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) and Mr . Alex "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 69, "end": 71, "input": "tokens", "text": "Otti of the All Progressives Grand Alliance ( APGA ) as winners "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Grand Alliance", "context": {"start": 69, "end": 71, "input": "tokens", "text": "Otti of the All Progressives Grand Alliance ( APGA ) as winners "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 168, "end": 171, "input": "tokens", "text": "panel of justices headed by Justice Abdul Aboki set aside the ruling of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Justice Abdul Aboki", "context": {"start": 168, "end": 171, "input": "tokens", "text": "panel of justices headed by Justice Abdul Aboki set aside the ruling of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 207, "end": 210, "input": "tokens", "text": "the governorship candidate of the All Progressives Congress ( APC ) , Mrs "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "All Progressives Congress", "context": {"start": 207, "end": 210, "input": "tokens", "text": "the governorship candidate of the All Progressives Congress ( APC ) , Mrs "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 216, "end": 219, "input": "tokens", "text": "APC ) , Mrs . Aisha Jumai Alhassan , also known as \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Aisha Jumai Alhassan", "context": {"start": 216, "end": 219, "input": "tokens", "text": "APC ) , Mrs . Aisha Jumai Alhassan , also known as \" "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 267, "end": 268, "input": "tokens", "text": "petitioners before the tribunal , Ishaku was validly elected and sponsored "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 267, "end": 268, "input": "tokens", "text": "petitioners before the tribunal , Ishaku was validly elected and sponsored "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 278, "end": 279, "input": "tokens", "text": "by his party , the PDP , to vie for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 278, "end": 279, "input": "tokens", "text": "by his party , the PDP , to vie for the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 295, "end": 298, "input": "tokens", "text": "accordance with the constitution , the Electoral Act and in accordance with the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Electoral Act", "context": {"start": 295, "end": 298, "input": "tokens", "text": "accordance with the constitution , the Electoral Act and in accordance with the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 309, "end": 314, "input": "tokens", "text": "guidelines as laid down by the Independent National Electoral Commission ( INEC ) . \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Independent National Electoral Commission", "context": {"start": 309, "end": 314, "input": "tokens", "text": "guidelines as laid down by the Independent National Electoral Commission ( INEC ) . \" "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 315, "end": 316, "input": "tokens", "text": "Independent National Electoral Commission ( INEC ) . \" Therefore the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "INEC", "context": {"start": 315, "end": 316, "input": "tokens", "text": "Independent National Electoral Commission ( INEC ) . \" Therefore the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 323, "end": 330, "input": "tokens", "text": "\" Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Taraba State Governorship Election Petitions Tribunal", "context": {"start": 323, "end": 330, "input": "tokens", "text": "\" Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 378, "end": 380, "input": "tokens", "text": "the dully elected governor of Taraba State \" . According to the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Taraba State", "context": {"start": 378, "end": 380, "input": "tokens", "text": "the dully elected governor of Taraba State \" . According to the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 387, "end": 388, "input": "tokens", "text": "According to the court , APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APC", "context": {"start": 387, "end": 388, "input": "tokens", "text": "According to the court , APC and its governorship candidate , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 418, "end": 419, "input": "tokens", "text": "the primary election of the PDP , which produced Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 418, "end": 419, "input": "tokens", "text": "the primary election of the PDP , which produced Ishaku as "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 438, "end": 439, "input": "tokens", "text": "is a member of the PDP . \n It also held "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 438, "end": 439, "input": "tokens", "text": "is a member of the PDP . \n It also held "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 445, "end": 446, "input": "tokens", "text": "\n It also held that INEC superintends the activities of political "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "INEC", "context": {"start": 445, "end": 446, "input": "tokens", "text": "\n It also held that INEC superintends the activities of political "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 462, "end": 463, "input": "tokens", "text": "breach or failure of the PDP to give the electoral body "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 462, "end": 463, "input": "tokens", "text": "breach or failure of the PDP to give the electoral body "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 486, "end": 487, "input": "tokens", "text": "been the headache of the APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APC", "context": {"start": 486, "end": 487, "input": "tokens", "text": "been the headache of the APC and its governorship candidate , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 522, "end": 523, "input": "tokens", "text": "the said primary election and INEC . \n According to the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "INEC", "context": {"start": 522, "end": 523, "input": "tokens", "text": "the said primary election and INEC . \n According to the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 530, "end": 533, "input": "tokens", "text": "According to the court , the Electoral Act specifies the procedures for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Electoral Act", "context": {"start": 530, "end": 533, "input": "tokens", "text": "According to the court , the Electoral Act specifies the procedures for the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 564, "end": 569, "input": "tokens", "text": "the primary election . \n The Justice Musa Danladi Abubakar - led tribunal , had "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "The Justice Musa Danladi Abubakar", "context": {"start": 564, "end": 569, "input": "tokens", "text": "the primary election . \n The Justice Musa Danladi Abubakar - led tribunal , had "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 579, "end": 580, "input": "tokens", "text": "in a petition filed by APC and Alhassan , held that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APC", "context": {"start": 579, "end": 580, "input": "tokens", "text": "in a petition filed by APC and Alhassan , held that "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 581, "end": 582, "input": "tokens", "text": "petition filed by APC and Alhassan , held that the purported "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Alhassan", "context": {"start": 581, "end": 582, "input": "tokens", "text": "petition filed by APC and Alhassan , held that the purported "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 593, "end": 594, "input": "tokens", "text": "of the governorship candidate by PDP breached Section 85 of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 593, "end": 594, "input": "tokens", "text": "of the governorship candidate by PDP breached Section 85 of the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 618, "end": 619, "input": "tokens", "text": "in a judgment ordered that Alhassan be sworn in as governor "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Alhassan", "context": {"start": 618, "end": 619, "input": "tokens", "text": "in a judgment ordered that Alhassan be sworn in as governor "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 626, "end": 627, "input": "tokens", "text": "in as governor because the PDP did not conduct a valid "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 626, "end": 627, "input": "tokens", "text": "in as governor because the PDP did not conduct a valid "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 650, "end": 651, "input": "tokens", "text": "tribunal however held that the APC governorship candidate could not adequately "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APC", "context": {"start": 650, "end": 651, "input": "tokens", "text": "tribunal however held that the APC governorship candidate could not adequately "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 714, "end": 717, "input": "tokens", "text": "ruling yesterday , Jalingo , the Taraba State capital , was thrown into "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Taraba State", "context": {"start": 714, "end": 717, "input": "tokens", "text": "ruling yesterday , Jalingo , the Taraba State capital , was thrown into "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 754, "end": 755, "input": "tokens", "text": "particularly around Hammaruwa Way , ATC , Mile 6 and Magami "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "ATC", "context": {"start": 754, "end": 755, "input": "tokens", "text": "particularly around Hammaruwa Way , ATC , Mile 6 and Magami "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 819, "end": 820, "input": "tokens", "text": "the jubilant residents , told THISDAY that the judiciary proved once "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "THISDAY", "context": {"start": 819, "end": 820, "input": "tokens", "text": "the jubilant residents , told THISDAY that the judiciary proved once "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 902, "end": 905, "input": "tokens", "text": "\" \n In Owerri , the Appeal Court also nullified the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Appeal Court", "context": {"start": 902, "end": 905, "input": "tokens", "text": "\" \n In Owerri , the Appeal Court also nullified the election of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 910, "end": 913, "input": "tokens", "text": "also nullified the election of the Abia State Governor , Dr . Okezie "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Abia State", "context": {"start": 910, "end": 913, "input": "tokens", "text": "also nullified the election of the Abia State Governor , Dr . Okezie "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 926, "end": 927, "input": "tokens", "text": "declared the governorship candidate of APGA , Otti , as the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APGA", "context": {"start": 926, "end": 927, "input": "tokens", "text": "declared the governorship candidate of APGA , Otti , as the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 953, "end": 958, "input": "tokens", "text": "to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Governorship Election Petitions Tribunal", "context": {"start": 953, "end": 958, "input": "tokens", "text": "to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 975, "end": 976, "input": "tokens", "text": "at the tribunal , the APGA candidate contested the controversial results "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APGA", "context": {"start": 975, "end": 976, "input": "tokens", "text": "at the tribunal , the APGA candidate contested the controversial results "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1017, "end": 1020, "input": "tokens", "text": "to be the determinant in the Appeal Court ' s judgment delivered by "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Appeal Court", "context": {"start": 1017, "end": 1020, "input": "tokens", "text": "to be the determinant in the Appeal Court ' s judgment delivered by "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1025, "end": 1028, "input": "tokens", "text": "' s judgment delivered by Justice Oyebisi Omoleye . \n The five - "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Justice Oyebisi Omoleye", "context": {"start": 1025, "end": 1028, "input": "tokens", "text": "' s judgment delivered by Justice Oyebisi Omoleye . \n The five - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1062, "end": 1063, "input": "tokens", "text": "the mathematics , held that Otti scored the highest number of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 1062, "end": 1063, "input": "tokens", "text": "the mathematics , held that Otti scored the highest number of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1092, "end": 1093, "input": "tokens", "text": ", 882 votes credited to Otti by INEC which was affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 1092, "end": 1093, "input": "tokens", "text": ", 882 votes credited to Otti by INEC which was affirmed "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1094, "end": 1095, "input": "tokens", "text": "votes credited to Otti by INEC which was affirmed by the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "INEC", "context": {"start": 1094, "end": 1095, "input": "tokens", "text": "votes credited to Otti by INEC which was affirmed by the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1122, "end": 1123, "input": "tokens", "text": "the appeal panel held that Otti scored a total of 164 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 1122, "end": 1123, "input": "tokens", "text": "the appeal panel held that Otti scored a total of 164 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1138, "end": 1139, "input": "tokens", "text": "114 , 444 obtained by Ikpeazu . \n Accordingly , Justice "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1138, "end": 1139, "input": "tokens", "text": "114 , 444 obtained by Ikpeazu . \n Accordingly , Justice "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1148, "end": 1149, "input": "tokens", "text": "Justice Omoleye held that the APGA candidate was duly elected and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APGA", "context": {"start": 1148, "end": 1149, "input": "tokens", "text": "Justice Omoleye held that the APGA candidate was duly elected and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1170, "end": 1171, "input": "tokens", "text": ", when the news of Otti ' s victory at the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 1170, "end": 1171, "input": "tokens", "text": ", when the news of Otti ' s victory at the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1192, "end": 1193, "input": "tokens", "text": "wild jubilations by supporters of APGA . Scores of jubilant party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APGA", "context": {"start": 1192, "end": 1193, "input": "tokens", "text": "wild jubilations by supporters of APGA . Scores of jubilant party "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1237, "end": 1238, "input": "tokens", "text": "not go down well with Ikpeazu , whose aide said that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1237, "end": 1238, "input": "tokens", "text": "not go down well with Ikpeazu , whose aide said that "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1252, "end": 1255, "input": "tokens", "text": "definitely challenge the ruling at the Supreme Court \" . \n Also addressing "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Supreme Court", "context": {"start": 1252, "end": 1255, "input": "tokens", "text": "definitely challenge the ruling at the Supreme Court \" . \n Also addressing "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1268, "end": 1271, "input": "tokens", "text": "in Umuahia , Ikpeazu faulted the Appeal Court ' s judgment , saying "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Appeal Court", "context": {"start": 1268, "end": 1271, "input": "tokens", "text": "in Umuahia , Ikpeazu faulted the Appeal Court ' s judgment , saying "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1285, "end": 1288, "input": "tokens", "text": "and would be challenged at the Supreme Court . \n The Abia governor "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Supreme Court", "context": {"start": 1285, "end": 1288, "input": "tokens", "text": "and would be challenged at the Supreme Court . \n The Abia governor "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1309, "end": 1312, "input": "tokens", "text": "to challenge the judgment at the Supreme Court . \" I wish to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Supreme Court", "context": {"start": 1309, "end": 1312, "input": "tokens", "text": "to challenge the judgment at the Supreme Court . \" I wish to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1336, "end": 1340, "input": "tokens", "text": "upon which the decision of the Court of Appeal was arrived at was at "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Court of Appeal", "context": {"start": 1336, "end": 1340, "input": "tokens", "text": "upon which the decision of the Court of Appeal was arrived at was at "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1360, "end": 1363, "input": "tokens", "text": "said that in going to the Supreme Court he has \" utmost confidence "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Supreme Court", "context": {"start": 1360, "end": 1363, "input": "tokens", "text": "said that in going to the Supreme Court he has \" utmost confidence "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1379, "end": 1383, "input": "tokens", "text": "to correct the anomaly at the Court of Appeal and uphold my victory as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Court of Appeal", "context": {"start": 1379, "end": 1383, "input": "tokens", "text": "to correct the anomaly at the Court of Appeal and uphold my victory as "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1393, "end": 1397, "input": "tokens", "text": "had been done earlier by the Election Petitions Tribunal \" . \n Ikpeazu said "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Election Petitions Tribunal", "context": {"start": 1393, "end": 1397, "input": "tokens", "text": "had been done earlier by the Election Petitions Tribunal \" . \n Ikpeazu said "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1414, "end": 1417, "input": "tokens", "text": "full briefing on the reason the Appeal Court nullified his election , his "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Appeal Court", "context": {"start": 1414, "end": 1417, "input": "tokens", "text": "full briefing on the reason the Appeal Court nullified his election , his "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1503, "end": 1506, "input": "tokens", "text": "governor of Abia State until the Supreme Court reaffirms my mandate freely given "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Supreme Court", "context": {"start": 1503, "end": 1506, "input": "tokens", "text": "governor of Abia State until the Supreme Court reaffirms my mandate freely given "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1565, "end": 1566, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Distributed", "context": {"start": 1565, "end": 1566, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1567, "end": 1570, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "AllAfrica Global Media", "context": {"start": 1567, "end": 1570, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Appeal Court Affirms Otti "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Appeal Court Affirms Otti "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 17, "end": 18, "input": "tokens", "text": "Ishaku Duly Elected Governors of Abia , Taraba \n By Senator "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abia", "context": {"start": 17, "end": 18, "input": "tokens", "text": "Ishaku Duly Elected Governors of Abia , Taraba \n By Senator "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 19, "end": 20, "input": "tokens", "text": "Elected Governors of Abia , Taraba \n By Senator Iroegbu in "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Taraba", "context": {"start": 19, "end": 20, "input": "tokens", "text": "Elected Governors of Abia , Taraba \n By Senator Iroegbu in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 25, "end": 26, "input": "tokens", "text": "\n By Senator Iroegbu in Abuja , Wole Ayodele in Jalingo "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abuja", "context": {"start": 25, "end": 26, "input": "tokens", "text": "\n By Senator Iroegbu in Abuja , Wole Ayodele in Jalingo "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 30, "end": 31, "input": "tokens", "text": "Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Jalingo", "context": {"start": 30, "end": 31, "input": "tokens", "text": "Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 35, "end": 36, "input": "tokens", "text": "Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal Court sitting "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Umuahia", "context": {"start": 35, "end": 36, "input": "tokens", "text": "Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal Court sitting "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 42, "end": 43, "input": "tokens", "text": "The Appeal Court sitting in Abuja and Owerri on Thursday affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abuja", "context": {"start": 42, "end": 43, "input": "tokens", "text": "The Appeal Court sitting in Abuja and Owerri on Thursday affirmed "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 44, "end": 45, "input": "tokens", "text": "Court sitting in Abuja and Owerri on Thursday affirmed Mr . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Owerri", "context": {"start": 44, "end": 45, "input": "tokens", "text": "Court sitting in Abuja and Owerri on Thursday affirmed Mr . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 83, "end": 84, "input": "tokens", "text": "April 11 governorship elections in Taraba and Abia States , respectively "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Taraba", "context": {"start": 83, "end": 84, "input": "tokens", "text": "April 11 governorship elections in Taraba and Abia States , respectively "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 85, "end": 87, "input": "tokens", "text": "governorship elections in Taraba and Abia States , respectively . \n The "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abia States", "context": {"start": 85, "end": 87, "input": "tokens", "text": "governorship elections in Taraba and Abia States , respectively . \n The "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 114, "end": 115, "input": "tokens", "text": "Tribunal , which sacked the Taraba governor from office based on "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Taraba", "context": {"start": 114, "end": 115, "input": "tokens", "text": "Tribunal , which sacked the Taraba governor from office based on "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 148, "end": 149, "input": "tokens", "text": "tribunal , which sat in Abuja because of security concerns in "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abuja", "context": {"start": 148, "end": 149, "input": "tokens", "text": "tribunal , which sat in Abuja because of security concerns in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 422, "end": 423, "input": "tokens", "text": "the PDP , which produced Ishaku as its candidate for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 422, "end": 423, "input": "tokens", "text": "the PDP , which produced Ishaku as its candidate for the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 603, "end": 604, "input": "tokens", "text": "the Electoral Act and ordered Ishaku to vacate his office . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 603, "end": 604, "input": "tokens", "text": "the Electoral Act and ordered Ishaku to vacate his office . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 759, "end": 760, "input": "tokens", "text": "ATC , Mile 6 and Magami in motorcades and moved round "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Magami", "context": {"start": 759, "end": 760, "input": "tokens", "text": "ATC , Mile 6 and Magami in motorcades and moved round "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 885, "end": 886, "input": "tokens", "text": "oppressed . The people of Taraba who overwhelmingly voted Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Taraba", "context": {"start": 885, "end": 886, "input": "tokens", "text": "oppressed . The people of Taraba who overwhelmingly voted Ishaku as "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 900, "end": 901, "input": "tokens", "text": "vindicated . \" \n In Owerri , the Appeal Court also "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Owerri", "context": {"start": 900, "end": 901, "input": "tokens", "text": "vindicated . \" \n In Owerri , the Appeal Court also "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 915, "end": 916, "input": "tokens", "text": "the Abia State Governor , Dr . Okezie Ikpeazu , and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Dr", "context": {"start": 915, "end": 916, "input": "tokens", "text": "the Abia State Governor , Dr . Okezie Ikpeazu , and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 928, "end": 929, "input": "tokens", "text": "governorship candidate of APGA , Otti , as the winner of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 928, "end": 929, "input": "tokens", "text": "governorship candidate of APGA , Otti , as the winner of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 963, "end": 964, "input": "tokens", "text": "which upheld the election of Ikpeazu . \n Just like he "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 963, "end": 964, "input": "tokens", "text": "which upheld the election of Ikpeazu . \n Just like he "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 982, "end": 983, "input": "tokens", "text": "contested the controversial results from Obingwa , Osisioma and Isiala Ngwa "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Obingwa", "context": {"start": 982, "end": 983, "input": "tokens", "text": "contested the controversial results from Obingwa , Osisioma and Isiala Ngwa "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 984, "end": 985, "input": "tokens", "text": "controversial results from Obingwa , Osisioma and Isiala Ngwa North Local "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Osisioma", "context": {"start": 984, "end": 985, "input": "tokens", "text": "controversial results from Obingwa , Osisioma and Isiala Ngwa North Local "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1161, "end": 1163, "input": "tokens", "text": "sworn in as governor of Abia State . Expectedly , when the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abia State", "context": {"start": 1161, "end": 1163, "input": "tokens", "text": "sworn in as governor of Abia State . Expectedly , when the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1180, "end": 1181, "input": "tokens", "text": "the appeal court filtered into Umuahia , the capital , there "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Umuahia", "context": {"start": 1180, "end": 1181, "input": "tokens", "text": "the appeal court filtered into Umuahia , the capital , there "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1264, "end": 1265, "input": "tokens", "text": "addressing the press yesterday in Umuahia , Ikpeazu faulted the Appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Umuahia", "context": {"start": 1264, "end": 1265, "input": "tokens", "text": "addressing the press yesterday in Umuahia , Ikpeazu faulted the Appeal "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1266, "end": 1267, "input": "tokens", "text": "press yesterday in Umuahia , Ikpeazu faulted the Appeal Court ' "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1266, "end": 1267, "input": "tokens", "text": "press yesterday in Umuahia , Ikpeazu faulted the Appeal Court ' "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1426, "end": 1427, "input": "tokens", "text": "his lawyers were still at Owerri doing everything possible to obtain "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Owerri", "context": {"start": 1426, "end": 1427, "input": "tokens", "text": "his lawyers were still at Owerri doing everything possible to obtain "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1500, "end": 1502, "input": "tokens", "text": "I remain the governor of Abia State until the Supreme Court reaffirms "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abia State", "context": {"start": 1500, "end": 1502, "input": "tokens", "text": "I remain the governor of Abia State until the Supreme Court reaffirms "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1533, "end": 1534, "input": "tokens", "text": "of law and order , Ikpeazu called on security agencies to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1533, "end": 1534, "input": "tokens", "text": "of law and order , Ikpeazu called on security agencies to "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 1514, "end": 1515, "input": "tokens", "text": "freely given to me by Abians during the election , \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abians", "context": {"start": 1514, "end": 1515, "input": "tokens", "text": "freely given to me by Abians during the election , \" "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/01/201601010132.html"}, "content_strict": {"text": " \n By Senator Iroegbu in Abuja, Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal Court sitting in Abuja and Owerri on Thursday affirmed Mr. Darius Ishaku of the Peoples Democratic Party (PDP) and Mr. Alex Otti of the All Progressives Grand Alliance (APGA) as winners of the April 11 governorship elections in Taraba and Abia States, respectively. \n The Abuja appellate court, in its judgment, set aside the decision of the state Election Petitions Tribunal, which sacked the Taraba governor from office based on pre-election matters. \n Delivering judgment on the three appeals and cross-appeal that emanated from the judgment of the tribunal, which sat in Abuja because of security concerns in the North-east, a five-member panel of justices headed by Justice Abdul Aboki set aside the ruling of the tribunal. \n Justice Aboki, who read the unanimous judgment, held that it was a gross misdirection for the tribunal to have declared the governorship candidate of the All Progressives Congress (APC), Mrs. Aisha Jumai Alhassan, also known as \"Mama Taraba\", winner of the gubernatorial poll on the basis that she scored the second highest number of votes in the election. \n The court also held that from the evidence of witnesses to the petitioners before the tribunal, Ishaku was validly elected and sponsored by his party, the PDP, to vie for the governorship seat of the state in accordance with the constitution, the Electoral Act and in accordance with the election guidelines as laid down by the Independent National Electoral Commission (INEC). \"Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null, void and set aside in its entirety. \n \"The appellant's appeal is meritorious and is hereby allowed,\" Justice Aboki held. The judge went further to affirm \"Darius Dickson Ishaku as the dully elected governor of Taraba State\". According to the court, APC and its governorship candidate, who were the first and second respondents in the appeal, had no locus standi under the law to challenge the primary election of the PDP, which produced Ishaku as its candidate for the election as none of them is a member of the PDP. \n It also held that INEC superintends the activities of political parties and if there was any breach or failure of the PDP to give the electoral body 21 days notice of its primary as alleged, it should not have been the headache of the APC and its governorship candidate, adding that the only person that could have complained of the conduct of a party's primary election was the person who participated in the said primary election and INEC. \n According to the court, the Electoral Act specifies the procedures for the election and sponsorship of a candidate by a political party and that the right to complain is limited to participants in the primary election. \n The Justice Musa Danladi Abubakar-led tribunal, had in a petition filed by APC and Alhassan, held that the purported nomination of the governorship candidate by PDP breached Section 85 of the Electoral Act and ordered Ishaku to vacate his office. \n Justice Abubakar had in a judgment ordered that Alhassan be sworn in as governor because the PDP did not conduct a valid primary that threw Ishaku up as its standard-bearer. \n The tribunal however held that the APC governorship candidate could not adequately prove her allegation of \"over-voting, irregularities, and non-compliance with the Electoral Act 2010\". \n Dissatisfied with the judgment, Ishaku filed an appeal, asking the appellate court to set aside the judgment of the tribunal. Reacting to the appellate court's ruling yesterday, Jalingo, the Taraba State capital, was thrown into jubilation, as residents marched through major streets of the town in celebration of the judgment. \n Residents in their thousands took to the streets, particularly around Hammaruwa Way, ATC, Mile 6 and Magami in motorcades and moved round the town singing and dancing. \n Traffic was obstructed and halted for several hours in the town as the convoy, which included women and children, and was carrying large loudspeakers obstructed the flow of traffic along the major roads. \n Enyetere Ambituni, one of the jubilant residents, told THISDAY that the judiciary proved once again to be the last hope of the common man and had vindicated the majority of the people of the state who overwhelmingly voted for Ishaku as their governor. \n According to him, \"We are celebrating today because the judiciary has once again shown that it is the last hope of the oppressed. The people of Taraba who overwhelmingly voted Ishaku as their governor have been vindicated.\" \n In Owerri, the Appeal Court also nullified the election of the Abia State Governor, Dr. Okezie Ikpeazu, and declared the governorship candidate of APGA, Otti, as the winner of the governorship election conducted in April. Otti had gone to the appeal court to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of Ikpeazu. \n Just like he did at the tribunal, the APGA candidate contested the controversial results from Obingwa, Osisioma and Isiala Ngwa North Local Government Areas that the returning officer cancelled and later reversed. However, the results from the three local governments turned out to be the determinant in the Appeal Court's judgment delivered by Justice Oyebisi Omoleye. \n The five-member panel unanimously agreed that the controversial results should not have been included in the final results and therefore cancelled them and after doing the mathematics, held that Otti scored the highest number of valid votes. In the governorship poll, Ikpeazu had emerged winner with 264,713 as against 180,882 votes credited to Otti by INEC which was affirmed by the tribunal. \n But after subtracting the scores of the candidates in the three council areas, the appeal panel held that Otti scored a total of 164,332 votes as against 114,444 obtained by Ikpeazu. \n Accordingly, Justice Omoleye held that the APGA candidate was duly elected and should be sworn in as governor of Abia State. Expectedly, when the news of Otti's victory at the appeal court filtered into Umuahia, the capital, there were wild jubilations by supporters of APGA. Scores of jubilant party supporters mounted tricycles and drove along major streets of the capital city waving party flags, singing and praising Otti for his tenacity. \n However, the ruling by the appellate court did not go down well with Ikpeazu, whose aide said that the governor would \"definitely challenge the ruling at the Supreme Court\". \n Also addressing the press yesterday in Umuahia, Ikpeazu faulted the Appeal Court's judgment, saying that it was untenable and would be challenged at the Supreme Court. \n The Abia governor said that he had directed his lawyers to take immediate steps to challenge the judgment at the Supreme Court. \"I wish to state at this point that preliminary reports available to me indicate that the premise upon which the decision of the Court of Appeal was arrived at was at best tenuous,\" he said. \n The governor said that in going to the Supreme Court he has \"utmost confidence in the ability of the justices to correct the anomaly at the Court of Appeal and uphold my victory as had been done earlier by the Election Petitions Tribunal\". \n Ikpeazu said though he was yet to get a full briefing on the reason the Appeal Court nullified his election, his lawyers were still at Owerri doing everything possible to obtain a copy of the judgment. \n \"The next four days are public holidays and the timing of the judgment means that we are losing valuable days to study the judgment and file our appeal,\" he said. \n Ikpeazu assured residents of Abia that his status as governor had not changed, adding that all was well. \"I remain the governor of Abia State until the Supreme Court reaffirms my mandate freely given to me by Abians during the election,\" he said. \n To avoid a breakdown of law and order, Ikpeazu called on security agencies to maintain the peace and ensure that people go about their legitimate businesses without disruption. \n ", "simple_tokens": ["\n", "by", "senator", "iroegbu", "in", "abuja", ",", "wole", "ayodele", "in", "jalingo", "and", "emmanuel", "ugwu", "in", "umuahia", "\n", "the", "appeal", "court", "sitting", "in", "abuja", "and", "owerri", "on", "thursday", "affirmed", "mr", ".", "darius", "ishaku", "of", "the", "peoples", "democratic", "party", "(", "pdp", ")", "and", "mr", ".", "alex", "otti", "of", "the", "all", "progressives", "grand", "alliance", "(", "apga", ")", "as", "winners", "of", "the", "april", "11", "governorship", "elections", "in", "taraba", "and", "abia", "states", ",", "respectively", ".", "\n", "the", "abuja", "appellate", "court", ",", "in", "its", "judgment", ",", "set", "aside", "the", "decision", "of", "the", "state", "election", "petitions", "tribunal", ",", "which", "sacked", "the", "taraba", "governor", "from", "office", "based", "on", "pre", "-", "election", "matters", ".", "\n", "delivering", "judgment", "on", "the", "three", "appeals", "and", "cross", "-", "appeal", "that", "emanated", "from", "the", "judgment", "of", "the", "tribunal", ",", "which", "sat", "in", "abuja", "because", "of", "security", "concerns", "in", "the", "north", "-", "east", ",", "a", "five", "-", "member", "panel", "of", "justices", "headed", "by", "justice", "abdul", "aboki", "set", "aside", "the", "ruling", "of", "the", "tribunal", ".", "\n", "justice", "aboki", ",", "who", "read", "the", "unanimous", "judgment", ",", "held", "that", "it", "was", "a", "gross", "misdirection", "for", "the", "tribunal", "to", "have", "declared", "the", "governorship", "candidate", "of", "the", "all", "progressives", "congress", "(", "apc", ")", ",", "mrs", ".", "aisha", "jumai", "alhassan", ",", "also", "known", "as", "\"", "mama", "taraba", "\"", ",", "winner", "of", "the", "gubernatorial", "poll", "on", "the", "basis", "that", "she", "scored", "the", "second", "highest", "number", "of", "votes", "in", "the", "election", ".", "\n", "the", "court", "also", "held", "that", "from", "the", "evidence", "of", "witnesses", "to", "the", "petitioners", "before", "the", "tribunal", ",", "ishaku", "was", "validly", "elected", "and", "sponsored", "by", "his", "party", ",", "the", "pdp", ",", "to", "vie", "for", "the", "governorship", "seat", "of", "the", "state", "in", "accordance", "with", "the", "constitution", ",", "the", "electoral", "act", "and", "in", "accordance", "with", "the", "election", "guidelines", "as", "laid", "down", "by", "the", "independent", "national", "electoral", "commission", "(", "inec", ")", ".", "\"", "therefore", "the", "judgment", "of", "the", "taraba", "state", "governorship", "election", "petitions", "tribunal", "is", "hereby", "declared", "null", ",", "void", "and", "set", "aside", "in", "its", "entirety", ".", "\n", "\"", "the", "appellant", "'", "s", "appeal", "is", "meritorious", "and", "is", "hereby", "allowed", ",", "\"", "justice", "aboki", "held", ".", "the", "judge", "went", "further", "to", "affirm", "\"", "darius", "dickson", "ishaku", "as", "the", "dully", "elected", "governor", "of", "taraba", "state", "\"", ".", "according", "to", "the", "court", ",", "apc", "and", "its", "governorship", "candidate", ",", "who", "were", "the", "first", "and", "second", "respondents", "in", "the", "appeal", ",", "had", "no", "locus", "standi", "under", "the", "law", "to", "challenge", "the", "primary", "election", "of", "the", "pdp", ",", "which", "produced", "ishaku", "as", "its", "candidate", "for", "the", "election", "as", "none", "of", "them", "is", "a", "member", "of", "the", "pdp", ".", "\n", "it", "also", "held", "that", "inec", "superintends", "the", "activities", "of", "political", "parties", "and", "if", "there", "was", "any", "breach", "or", "failure", "of", "the", "pdp", "to", "give", "the", "electoral", "body", "21", "days", "notice", "of", "its", "primary", "as", "alleged", ",", "it", "should", "not", "have", "been", "the", "headache", "of", "the", "apc", "and", "its", "governorship", "candidate", ",", "adding", "that", "the", "only", "person", "that", "could", "have", "complained", "of", "the", "conduct", "of", "a", "party", "'", "s", "primary", "election", "was", "the", "person", "who", "participated", "in", "the", "said", "primary", "election", "and", "inec", ".", "\n", "according", "to", "the", "court", ",", "the", "electoral", "act", "specifies", "the", "procedures", "for", "the", "election", "and", "sponsorship", "of", "a", "candidate", "by", "a", "political", "party", "and", "that", "the", "right", "to", "complain", "is", "limited", "to", "participants", "in", "the", "primary", "election", ".", "\n", "the", "justice", "musa", "danladi", "abubakar", "-", "led", "tribunal", ",", "had", "in", "a", "petition", "filed", "by", "apc", "and", "alhassan", ",", "held", "that", "the", "purported", "nomination", "of", "the", "governorship", "candidate", "by", "pdp", "breached", "section", "85", "of", "the", "electoral", "act", "and", "ordered", "ishaku", "to", "vacate", "his", "office", ".", "\n", "justice", "abubakar", "had", "in", "a", "judgment", "ordered", "that", "alhassan", "be", "sworn", "in", "as", "governor", "because", "the", "pdp", "did", "not", "conduct", "a", "valid", "primary", "that", "threw", "ishaku", "up", "as", "its", "standard", "-", "bearer", ".", "\n", "the", "tribunal", "however", "held", "that", "the", "apc", "governorship", "candidate", "could", "not", "adequately", "prove", "her", "allegation", "of", "\"", "over", "-", "voting", ",", "irregularities", ",", "and", "non", "-", "compliance", "with", "the", "electoral", "act", "2010", "\"", ".", "\n", "dissatisfied", "with", "the", "judgment", ",", "ishaku", "filed", "an", "appeal", ",", "asking", "the", "appellate", "court", "to", "set", "aside", "the", "judgment", "of", "the", "tribunal", ".", "reacting", "to", "the", "appellate", "court", "'", "s", "ruling", "yesterday", ",", "jalingo", ",", "the", "taraba", "state", "capital", ",", "was", "thrown", "into", "jubilation", ",", "as", "residents", "marched", "through", "major", "streets", "of", "the", "town", "in", "celebration", "of", "the", "judgment", ".", "\n", "residents", "in", "their", "thousands", "took", "to", "the", "streets", ",", "particularly", "around", "hammaruwa", "way", ",", "atc", ",", "mile", "6", "and", "magami", "in", "motorcades", "and", "moved", "round", "the", "town", "singing", "and", "dancing", ".", "\n", "traffic", "was", "obstructed", "and", "halted", "for", "several", "hours", "in", "the", "town", "as", "the", "convoy", ",", "which", "included", "women", "and", "children", ",", "and", "was", "carrying", "large", "loudspeakers", "obstructed", "the", "flow", "of", "traffic", "along", "the", "major", "roads", ".", "\n", "enyetere", "ambituni", ",", "one", "of", "the", "jubilant", "residents", ",", "told", "thisday", "that", "the", "judiciary", "proved", "once", "again", "to", "be", "the", "last", "hope", "of", "the", "common", "man", "and", "had", "vindicated", "the", "majority", "of", "the", "people", "of", "the", "state", "who", "overwhelmingly", "voted", "for", "ishaku", "as", "their", "governor", ".", "\n", "according", "to", "him", ",", "\"", "we", "are", "celebrating", "today", "because", "the", "judiciary", "has", "once", "again", "shown", "that", "it", "is", "the", "last", "hope", "of", "the", "oppressed", ".", "the", "people", "of", "taraba", "who", "overwhelmingly", "voted", "ishaku", "as", "their", "governor", "have", "been", "vindicated", ".", "\"", "\n", "in", "owerri", ",", "the", "appeal", "court", "also", "nullified", "the", "election", "of", "the", "abia", "state", "governor", ",", "dr", ".", "okezie", "ikpeazu", ",", "and", "declared", "the", "governorship", "candidate", "of", "apga", ",", "otti", ",", "as", "the", "winner", "of", "the", "governorship", "election", "conducted", "in", "april", ".", "otti", "had", "gone", "to", "the", "appeal", "court", "to", "challenge", "the", "verdict", "of", "the", "governorship", "election", "petitions", "tribunal", "which", "upheld", "the", "election", "of", "ikpeazu", ".", "\n", "just", "like", "he", "did", "at", "the", "tribunal", ",", "the", "apga", "candidate", "contested", "the", "controversial", "results", "from", "obingwa", ",", "osisioma", "and", "isiala", "ngwa", "north", "local", "government", "areas", "that", "the", "returning", "officer", "cancelled", "and", "later", "reversed", ".", "however", ",", "the", "results", "from", "the", "three", "local", "governments", "turned", "out", "to", "be", "the", "determinant", "in", "the", "appeal", "court", "'", "s", "judgment", "delivered", "by", "justice", "oyebisi", "omoleye", ".", "\n", "the", "five", "-", "member", "panel", "unanimously", "agreed", "that", "the", "controversial", "results", "should", "not", "have", "been", "included", "in", "the", "final", "results", "and", "therefore", "cancelled", "them", "and", "after", "doing", "the", "mathematics", ",", "held", "that", "otti", "scored", "the", "highest", "number", "of", "valid", "votes", ".", "in", "the", "governorship", "poll", ",", "ikpeazu", "had", "emerged", "winner", "with", "264", ",", "713", "as", "against", "180", ",", "882", "votes", "credited", "to", "otti", "by", "inec", "which", "was", "affirmed", "by", "the", "tribunal", ".", "\n", "but", "after", "subtracting", "the", "scores", "of", "the", "candidates", "in", "the", "three", "council", "areas", ",", "the", "appeal", "panel", "held", "that", "otti", "scored", "a", "total", "of", "164", ",", "332", "votes", "as", "against", "114", ",", "444", "obtained", "by", "ikpeazu", ".", "\n", "accordingly", ",", "justice", "omoleye", "held", "that", "the", "apga", "candidate", "was", "duly", "elected", "and", "should", "be", "sworn", "in", "as", "governor", "of", "abia", "state", ".", "expectedly", ",", "when", "the", "news", "of", "otti", "'", "s", "victory", "at", "the", "appeal", "court", "filtered", "into", "umuahia", ",", "the", "capital", ",", "there", "were", "wild", "jubilations", "by", "supporters", "of", "apga", ".", "scores", "of", "jubilant", "party", "supporters", "mounted", "tricycles", "and", "drove", "along", "major", "streets", "of", "the", "capital", "city", "waving", "party", "flags", ",", "singing", "and", "praising", "otti", "for", "his", "tenacity", ".", "\n", "however", ",", "the", "ruling", "by", "the", "appellate", "court", "did", "not", "go", "down", "well", "with", "ikpeazu", ",", "whose", "aide", "said", "that", "the", "governor", "would", "\"", "definitely", "challenge", "the", "ruling", "at", "the", "supreme", "court", "\"", ".", "\n", "also", "addressing", "the", "press", "yesterday", "in", "umuahia", ",", "ikpeazu", "faulted", "the", "appeal", "court", "'", "s", "judgment", ",", "saying", "that", "it", "was", "untenable", "and", "would", "be", "challenged", "at", "the", "supreme", "court", ".", "\n", "the", "abia", "governor", "said", "that", "he", "had", "directed", "his", "lawyers", "to", "take", "immediate", "steps", "to", "challenge", "the", "judgment", "at", "the", "supreme", "court", ".", "\"", "i", "wish", "to", "state", "at", "this", "point", "that", "preliminary", "reports", "available", "to", "me", "indicate", "that", "the", "premise", "upon", "which", "the", "decision", "of", "the", "court", "of", "appeal", "was", "arrived", "at", "was", "at", "best", "tenuous", ",", "\"", "he", "said", ".", "\n", "the", "governor", "said", "that", "in", "going", "to", "the", "supreme", "court", "he", "has", "\"", "utmost", "confidence", "in", "the", "ability", "of", "the", "justices", "to", "correct", "the", "anomaly", "at", "the", "court", "of", "appeal", "and", "uphold", "my", "victory", "as", "had", "been", "done", "earlier", "by", "the", "election", "petitions", "tribunal", "\"", ".", "\n", "ikpeazu", "said", "though", "he", "was", "yet", "to", "get", "a", "full", "briefing", "on", "the", "reason", "the", "appeal", "court", "nullified", "his", "election", ",", "his", "lawyers", "were", "still", "at", "owerri", "doing", "everything", "possible", "to", "obtain", "a", "copy", "of", "the", "judgment", ".", "\n", "\"", "the", "next", "four", "days", "are", "public", "holidays", "and", "the", "timing", "of", "the", "judgment", "means", "that", "we", "are", "losing", "valuable", "days", "to", "study", "the", "judgment", "and", "file", "our", "appeal", ",", "\"", "he", "said", ".", "\n", "ikpeazu", "assured", "residents", "of", "abia", "that", "his", "status", "as", "governor", "had", "not", "changed", ",", "adding", "that", "all", "was", "well", ".", "\"", "i", "remain", "the", "governor", "of", "abia", "state", "until", "the", "supreme", "court", "reaffirms", "my", "mandate", "freely", "given", "to", "me", "by", "abians", "during", "the", "election", ",", "\"", "he", "said", ".", "\n", "to", "avoid", "a", "breakdown", "of", "law", "and", "order", ",", "ikpeazu", "called", "on", "security", "agencies", "to", "maintain", "the", "peace", "and", "ensure", "that", "people", "go", "about", "their", "legitimate", "businesses", "without", "disruption", ".", "\n"], "simple_tokens_original_case": ["\n", "By", "Senator", "Iroegbu", "in", "Abuja", ",", "Wole", "Ayodele", "in", "Jalingo", "and", "Emmanuel", "Ugwu", "in", "Umuahia", "\n", "The", "Appeal", "Court", "sitting", "in", "Abuja", "and", "Owerri", "on", "Thursday", "affirmed", "Mr", ".", "Darius", "Ishaku", "of", "the", "Peoples", "Democratic", "Party", "(", "PDP", ")", "and", "Mr", ".", "Alex", "Otti", "of", "the", "All", "Progressives", "Grand", "Alliance", "(", "APGA", ")", "as", "winners", "of", "the", "April", "11", "governorship", "elections", "in", "Taraba", "and", "Abia", "States", ",", "respectively", ".", "\n", "The", "Abuja", "appellate", "court", ",", "in", "its", "judgment", ",", "set", "aside", "the", "decision", "of", "the", "state", "Election", "Petitions", "Tribunal", ",", "which", "sacked", "the", "Taraba", "governor", "from", "office", "based", "on", "pre", "-", "election", "matters", ".", "\n", "Delivering", "judgment", "on", "the", "three", "appeals", "and", "cross", "-", "appeal", "that", "emanated", "from", "the", "judgment", "of", "the", "tribunal", ",", "which", "sat", "in", "Abuja", "because", "of", "security", "concerns", "in", "the", "North", "-", "east", ",", "a", "five", "-", "member", "panel", "of", "justices", "headed", "by", "Justice", "Abdul", "Aboki", "set", "aside", "the", "ruling", "of", "the", "tribunal", ".", "\n", "Justice", "Aboki", ",", "who", "read", "the", "unanimous", "judgment", ",", "held", "that", "it", "was", "a", "gross", "misdirection", "for", "the", "tribunal", "to", "have", "declared", "the", "governorship", "candidate", "of", "the", "All", "Progressives", "Congress", "(", "APC", ")", ",", "Mrs", ".", "Aisha", "Jumai", "Alhassan", ",", "also", "known", "as", "\"", "Mama", "Taraba", "\"", ",", "winner", "of", "the", "gubernatorial", "poll", "on", "the", "basis", "that", "she", "scored", "the", "second", "highest", "number", "of", "votes", "in", "the", "election", ".", "\n", "The", "court", "also", "held", "that", "from", "the", "evidence", "of", "witnesses", "to", "the", "petitioners", "before", "the", "tribunal", ",", "Ishaku", "was", "validly", "elected", "and", "sponsored", "by", "his", "party", ",", "the", "PDP", ",", "to", "vie", "for", "the", "governorship", "seat", "of", "the", "state", "in", "accordance", "with", "the", "constitution", ",", "the", "Electoral", "Act", "and", "in", "accordance", "with", "the", "election", "guidelines", "as", "laid", "down", "by", "the", "Independent", "National", "Electoral", "Commission", "(", "INEC", ")", ".", "\"", "Therefore", "the", "judgment", "of", "the", "Taraba", "State", "Governorship", "Election", "Petitions", "Tribunal", "is", "hereby", "declared", "null", ",", "void", "and", "set", "aside", "in", "its", "entirety", ".", "\n", "\"", "The", "appellant", "'", "s", "appeal", "is", "meritorious", "and", "is", "hereby", "allowed", ",", "\"", "Justice", "Aboki", "held", ".", "The", "judge", "went", "further", "to", "affirm", "\"", "Darius", "Dickson", "Ishaku", "as", "the", "dully", "elected", "governor", "of", "Taraba", "State", "\"", ".", "According", "to", "the", "court", ",", "APC", "and", "its", "governorship", "candidate", ",", "who", "were", "the", "first", "and", "second", "respondents", "in", "the", "appeal", ",", "had", "no", "locus", "standi", "under", "the", "law", "to", "challenge", "the", "primary", "election", "of", "the", "PDP", ",", "which", "produced", "Ishaku", "as", "its", "candidate", "for", "the", "election", "as", "none", "of", "them", "is", "a", "member", "of", "the", "PDP", ".", "\n", "It", "also", "held", "that", "INEC", "superintends", "the", "activities", "of", "political", "parties", "and", "if", "there", "was", "any", "breach", "or", "failure", "of", "the", "PDP", "to", "give", "the", "electoral", "body", "21", "days", "notice", "of", "its", "primary", "as", "alleged", ",", "it", "should", "not", "have", "been", "the", "headache", "of", "the", "APC", "and", "its", "governorship", "candidate", ",", "adding", "that", "the", "only", "person", "that", "could", "have", "complained", "of", "the", "conduct", "of", "a", "party", "'", "s", "primary", "election", "was", "the", "person", "who", "participated", "in", "the", "said", "primary", "election", "and", "INEC", ".", "\n", "According", "to", "the", "court", ",", "the", "Electoral", "Act", "specifies", "the", "procedures", "for", "the", "election", "and", "sponsorship", "of", "a", "candidate", "by", "a", "political", "party", "and", "that", "the", "right", "to", "complain", "is", "limited", "to", "participants", "in", "the", "primary", "election", ".", "\n", "The", "Justice", "Musa", "Danladi", "Abubakar", "-", "led", "tribunal", ",", "had", "in", "a", "petition", "filed", "by", "APC", "and", "Alhassan", ",", "held", "that", "the", "purported", "nomination", "of", "the", "governorship", "candidate", "by", "PDP", "breached", "Section", "85", "of", "the", "Electoral", "Act", "and", "ordered", "Ishaku", "to", "vacate", "his", "office", ".", "\n", "Justice", "Abubakar", "had", "in", "a", "judgment", "ordered", "that", "Alhassan", "be", "sworn", "in", "as", "governor", "because", "the", "PDP", "did", "not", "conduct", "a", "valid", "primary", "that", "threw", "Ishaku", "up", "as", "its", "standard", "-", "bearer", ".", "\n", "The", "tribunal", "however", "held", "that", "the", "APC", "governorship", "candidate", "could", "not", "adequately", "prove", "her", "allegation", "of", "\"", "over", "-", "voting", ",", "irregularities", ",", "and", "non", "-", "compliance", "with", "the", "Electoral", "Act", "2010", "\"", ".", "\n", "Dissatisfied", "with", "the", "judgment", ",", "Ishaku", "filed", "an", "appeal", ",", "asking", "the", "appellate", "court", "to", "set", "aside", "the", "judgment", "of", "the", "tribunal", ".", "Reacting", "to", "the", "appellate", "court", "'", "s", "ruling", "yesterday", ",", "Jalingo", ",", "the", "Taraba", "State", "capital", ",", "was", "thrown", "into", "jubilation", ",", "as", "residents", "marched", "through", "major", "streets", "of", "the", "town", "in", "celebration", "of", "the", "judgment", ".", "\n", "Residents", "in", "their", "thousands", "took", "to", "the", "streets", ",", "particularly", "around", "Hammaruwa", "Way", ",", "ATC", ",", "Mile", "6", "and", "Magami", "in", "motorcades", "and", "moved", "round", "the", "town", "singing", "and", "dancing", ".", "\n", "Traffic", "was", "obstructed", "and", "halted", "for", "several", "hours", "in", "the", "town", "as", "the", "convoy", ",", "which", "included", "women", "and", "children", ",", "and", "was", "carrying", "large", "loudspeakers", "obstructed", "the", "flow", "of", "traffic", "along", "the", "major", "roads", ".", "\n", "Enyetere", "Ambituni", ",", "one", "of", "the", "jubilant", "residents", ",", "told", "THISDAY", "that", "the", "judiciary", "proved", "once", "again", "to", "be", "the", "last", "hope", "of", "the", "common", "man", "and", "had", "vindicated", "the", "majority", "of", "the", "people", "of", "the", "state", "who", "overwhelmingly", "voted", "for", "Ishaku", "as", "their", "governor", ".", "\n", "According", "to", "him", ",", "\"", "We", "are", "celebrating", "today", "because", "the", "judiciary", "has", "once", "again", "shown", "that", "it", "is", "the", "last", "hope", "of", "the", "oppressed", ".", "The", "people", "of", "Taraba", "who", "overwhelmingly", "voted", "Ishaku", "as", "their", "governor", "have", "been", "vindicated", ".", "\"", "\n", "In", "Owerri", ",", "the", "Appeal", "Court", "also", "nullified", "the", "election", "of", "the", "Abia", "State", "Governor", ",", "Dr", ".", "Okezie", "Ikpeazu", ",", "and", "declared", "the", "governorship", "candidate", "of", "APGA", ",", "Otti", ",", "as", "the", "winner", "of", "the", "governorship", "election", "conducted", "in", "April", ".", "Otti", "had", "gone", "to", "the", "appeal", "court", "to", "challenge", "the", "verdict", "of", "the", "Governorship", "Election", "Petitions", "Tribunal", "which", "upheld", "the", "election", "of", "Ikpeazu", ".", "\n", "Just", "like", "he", "did", "at", "the", "tribunal", ",", "the", "APGA", "candidate", "contested", "the", "controversial", "results", "from", "Obingwa", ",", "Osisioma", "and", "Isiala", "Ngwa", "North", "Local", "Government", "Areas", "that", "the", "returning", "officer", "cancelled", "and", "later", "reversed", ".", "However", ",", "the", "results", "from", "the", "three", "local", "governments", "turned", "out", "to", "be", "the", "determinant", "in", "the", "Appeal", "Court", "'", "s", "judgment", "delivered", "by", "Justice", "Oyebisi", "Omoleye", ".", "\n", "The", "five", "-", "member", "panel", "unanimously", "agreed", "that", "the", "controversial", "results", "should", "not", "have", "been", "included", "in", "the", "final", "results", "and", "therefore", "cancelled", "them", "and", "after", "doing", "the", "mathematics", ",", "held", "that", "Otti", "scored", "the", "highest", "number", "of", "valid", "votes", ".", "In", "the", "governorship", "poll", ",", "Ikpeazu", "had", "emerged", "winner", "with", "264", ",", "713", "as", "against", "180", ",", "882", "votes", "credited", "to", "Otti", "by", "INEC", "which", "was", "affirmed", "by", "the", "tribunal", ".", "\n", "But", "after", "subtracting", "the", "scores", "of", "the", "candidates", "in", "the", "three", "council", "areas", ",", "the", "appeal", "panel", "held", "that", "Otti", "scored", "a", "total", "of", "164", ",", "332", "votes", "as", "against", "114", ",", "444", "obtained", "by", "Ikpeazu", ".", "\n", "Accordingly", ",", "Justice", "Omoleye", "held", "that", "the", "APGA", "candidate", "was", "duly", "elected", "and", "should", "be", "sworn", "in", "as", "governor", "of", "Abia", "State", ".", "Expectedly", ",", "when", "the", "news", "of", "Otti", "'", "s", "victory", "at", "the", "appeal", "court", "filtered", "into", "Umuahia", ",", "the", "capital", ",", "there", "were", "wild", "jubilations", "by", "supporters", "of", "APGA", ".", "Scores", "of", "jubilant", "party", "supporters", "mounted", "tricycles", "and", "drove", "along", "major", "streets", "of", "the", "capital", "city", "waving", "party", "flags", ",", "singing", "and", "praising", "Otti", "for", "his", "tenacity", ".", "\n", "However", ",", "the", "ruling", "by", "the", "appellate", "court", "did", "not", "go", "down", "well", "with", "Ikpeazu", ",", "whose", "aide", "said", "that", "the", "governor", "would", "\"", "definitely", "challenge", "the", "ruling", "at", "the", "Supreme", "Court", "\"", ".", "\n", "Also", "addressing", "the", "press", "yesterday", "in", "Umuahia", ",", "Ikpeazu", "faulted", "the", "Appeal", "Court", "'", "s", "judgment", ",", "saying", "that", "it", "was", "untenable", "and", "would", "be", "challenged", "at", "the", "Supreme", "Court", ".", "\n", "The", "Abia", "governor", "said", "that", "he", "had", "directed", "his", "lawyers", "to", "take", "immediate", "steps", "to", "challenge", "the", "judgment", "at", "the", "Supreme", "Court", ".", "\"", "I", "wish", "to", "state", "at", "this", "point", "that", "preliminary", "reports", "available", "to", "me", "indicate", "that", "the", "premise", "upon", "which", "the", "decision", "of", "the", "Court", "of", "Appeal", "was", "arrived", "at", "was", "at", "best", "tenuous", ",", "\"", "he", "said", ".", "\n", "The", "governor", "said", "that", "in", "going", "to", "the", "Supreme", "Court", "he", "has", "\"", "utmost", "confidence", "in", "the", "ability", "of", "the", "justices", "to", "correct", "the", "anomaly", "at", "the", "Court", "of", "Appeal", "and", "uphold", "my", "victory", "as", "had", "been", "done", "earlier", "by", "the", "Election", "Petitions", "Tribunal", "\"", ".", "\n", "Ikpeazu", "said", "though", "he", "was", "yet", "to", "get", "a", "full", "briefing", "on", "the", "reason", "the", "Appeal", "Court", "nullified", "his", "election", ",", "his", "lawyers", "were", "still", "at", "Owerri", "doing", "everything", "possible", "to", "obtain", "a", "copy", "of", "the", "judgment", ".", "\n", "\"", "The", "next", "four", "days", "are", "public", "holidays", "and", "the", "timing", "of", "the", "judgment", "means", "that", "we", "are", "losing", "valuable", "days", "to", "study", "the", "judgment", "and", "file", "our", "appeal", ",", "\"", "he", "said", ".", "\n", "Ikpeazu", "assured", "residents", "of", "Abia", "that", "his", "status", "as", "governor", "had", "not", "changed", ",", "adding", "that", "all", "was", "well", ".", "\"", "I", "remain", "the", "governor", "of", "Abia", "State", "until", "the", "Supreme", "Court", "reaffirms", "my", "mandate", "freely", "given", "to", "me", "by", "Abians", "during", "the", "election", ",", "\"", "he", "said", ".", "\n", "To", "avoid", "a", "breakdown", "of", "law", "and", "order", ",", "Ikpeazu", "called", "on", "security", "agencies", "to", "maintain", "the", "peace", "and", "ensure", "that", "people", "go", "about", "their", "legitimate", "businesses", "without", "disruption", ".", "\n"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n By Senator Iroegbu in Abuja , Wole Ayodele in Jalingo "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abuja", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n By Senator Iroegbu in Abuja , Wole Ayodele in Jalingo "}}, {"origin": {"segment": "content_strict", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Jalingo", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia "}}, {"origin": {"segment": "content_strict", "context": {"start": 15, "end": 16, "input": "tokens", "text": "Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal Court sitting "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Umuahia", "context": {"start": 15, "end": 16, "input": "tokens", "text": "Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal Court sitting "}}, {"origin": {"segment": "content_strict", "context": {"start": 22, "end": 23, "input": "tokens", "text": "The Appeal Court sitting in Abuja and Owerri on Thursday affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abuja", "context": {"start": 22, "end": 23, "input": "tokens", "text": "The Appeal Court sitting in Abuja and Owerri on Thursday affirmed "}}, {"origin": {"segment": "content_strict", "context": {"start": 24, "end": 25, "input": "tokens", "text": "Court sitting in Abuja and Owerri on Thursday affirmed Mr . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Owerri", "context": {"start": 24, "end": 25, "input": "tokens", "text": "Court sitting in Abuja and Owerri on Thursday affirmed Mr . "}}, {"origin": {"segment": "content_strict", "context": {"start": 63, "end": 64, "input": "tokens", "text": "April 11 governorship elections in Taraba and Abia States , respectively "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Taraba", "context": {"start": 63, "end": 64, "input": "tokens", "text": "April 11 governorship elections in Taraba and Abia States , respectively "}}, {"origin": {"segment": "content_strict", "context": {"start": 65, "end": 67, "input": "tokens", "text": "governorship elections in Taraba and Abia States , respectively . \n The "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abia States", "context": {"start": 65, "end": 67, "input": "tokens", "text": "governorship elections in Taraba and Abia States , respectively . \n The "}}, {"origin": {"segment": "content_strict", "context": {"start": 94, "end": 95, "input": "tokens", "text": "Tribunal , which sacked the Taraba governor from office based on "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Taraba", "context": {"start": 94, "end": 95, "input": "tokens", "text": "Tribunal , which sacked the Taraba governor from office based on "}}, {"origin": {"segment": "content_strict", "context": {"start": 128, "end": 129, "input": "tokens", "text": "tribunal , which sat in Abuja because of security concerns in "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abuja", "context": {"start": 128, "end": 129, "input": "tokens", "text": "tribunal , which sat in Abuja because of security concerns in "}}, {"origin": {"segment": "content_strict", "context": {"start": 402, "end": 403, "input": "tokens", "text": "the PDP , which produced Ishaku as its candidate for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 402, "end": 403, "input": "tokens", "text": "the PDP , which produced Ishaku as its candidate for the "}}, {"origin": {"segment": "content_strict", "context": {"start": 583, "end": 584, "input": "tokens", "text": "the Electoral Act and ordered Ishaku to vacate his office . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 583, "end": 584, "input": "tokens", "text": "the Electoral Act and ordered Ishaku to vacate his office . "}}, {"origin": {"segment": "content_strict", "context": {"start": 739, "end": 740, "input": "tokens", "text": "ATC , Mile 6 and Magami in motorcades and moved round "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Magami", "context": {"start": 739, "end": 740, "input": "tokens", "text": "ATC , Mile 6 and Magami in motorcades and moved round "}}, {"origin": {"segment": "content_strict", "context": {"start": 865, "end": 866, "input": "tokens", "text": "oppressed . The people of Taraba who overwhelmingly voted Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Taraba", "context": {"start": 865, "end": 866, "input": "tokens", "text": "oppressed . The people of Taraba who overwhelmingly voted Ishaku as "}}, {"origin": {"segment": "content_strict", "context": {"start": 880, "end": 881, "input": "tokens", "text": "vindicated . \" \n In Owerri , the Appeal Court also "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Owerri", "context": {"start": 880, "end": 881, "input": "tokens", "text": "vindicated . \" \n In Owerri , the Appeal Court also "}}, {"origin": {"segment": "content_strict", "context": {"start": 895, "end": 896, "input": "tokens", "text": "the Abia State Governor , Dr . Okezie Ikpeazu , and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Dr", "context": {"start": 895, "end": 896, "input": "tokens", "text": "the Abia State Governor , Dr . Okezie Ikpeazu , and "}}, {"origin": {"segment": "content_strict", "context": {"start": 908, "end": 909, "input": "tokens", "text": "governorship candidate of APGA , Otti , as the winner of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 908, "end": 909, "input": "tokens", "text": "governorship candidate of APGA , Otti , as the winner of "}}, {"origin": {"segment": "content_strict", "context": {"start": 943, "end": 944, "input": "tokens", "text": "which upheld the election of Ikpeazu . \n Just like he "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 943, "end": 944, "input": "tokens", "text": "which upheld the election of Ikpeazu . \n Just like he "}}, {"origin": {"segment": "content_strict", "context": {"start": 962, "end": 963, "input": "tokens", "text": "contested the controversial results from Obingwa , Osisioma and Isiala Ngwa "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Obingwa", "context": {"start": 962, "end": 963, "input": "tokens", "text": "contested the controversial results from Obingwa , Osisioma and Isiala Ngwa "}}, {"origin": {"segment": "content_strict", "context": {"start": 964, "end": 965, "input": "tokens", "text": "controversial results from Obingwa , Osisioma and Isiala Ngwa North Local "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Osisioma", "context": {"start": 964, "end": 965, "input": "tokens", "text": "controversial results from Obingwa , Osisioma and Isiala Ngwa North Local "}}, {"origin": {"segment": "content_strict", "context": {"start": 1141, "end": 1143, "input": "tokens", "text": "sworn in as governor of Abia State . Expectedly , when the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abia State", "context": {"start": 1141, "end": 1143, "input": "tokens", "text": "sworn in as governor of Abia State . Expectedly , when the "}}, {"origin": {"segment": "content_strict", "context": {"start": 1160, "end": 1161, "input": "tokens", "text": "the appeal court filtered into Umuahia , the capital , there "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Umuahia", "context": {"start": 1160, "end": 1161, "input": "tokens", "text": "the appeal court filtered into Umuahia , the capital , there "}}, {"origin": {"segment": "content_strict", "context": {"start": 1244, "end": 1245, "input": "tokens", "text": "addressing the press yesterday in Umuahia , Ikpeazu faulted the Appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Umuahia", "context": {"start": 1244, "end": 1245, "input": "tokens", "text": "addressing the press yesterday in Umuahia , Ikpeazu faulted the Appeal "}}, {"origin": {"segment": "content_strict", "context": {"start": 1246, "end": 1247, "input": "tokens", "text": "press yesterday in Umuahia , Ikpeazu faulted the Appeal Court ' "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1246, "end": 1247, "input": "tokens", "text": "press yesterday in Umuahia , Ikpeazu faulted the Appeal Court ' "}}, {"origin": {"segment": "content_strict", "context": {"start": 1406, "end": 1407, "input": "tokens", "text": "his lawyers were still at Owerri doing everything possible to obtain "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Owerri", "context": {"start": 1406, "end": 1407, "input": "tokens", "text": "his lawyers were still at Owerri doing everything possible to obtain "}}, {"origin": {"segment": "content_strict", "context": {"start": 1480, "end": 1482, "input": "tokens", "text": "I remain the governor of Abia State until the Supreme Court reaffirms "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abia State", "context": {"start": 1480, "end": 1482, "input": "tokens", "text": "I remain the governor of Abia State until the Supreme Court reaffirms "}}, {"origin": {"segment": "content_strict", "context": {"start": 1513, "end": 1514, "input": "tokens", "text": "of law and order , Ikpeazu called on security agencies to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1513, "end": 1514, "input": "tokens", "text": "of law and order , Ikpeazu called on security agencies to "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 17, "end": 20, "input": "tokens", "text": "Emmanuel Ugwu in Umuahia \n The Appeal Court sitting in Abuja and Owerri "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "The Appeal Court", "context": {"start": 17, "end": 20, "input": "tokens", "text": "Emmanuel Ugwu in Umuahia \n The Appeal Court sitting in Abuja and Owerri "}}, {"origin": {"segment": "content_strict", "context": {"start": 33, "end": 37, "input": "tokens", "text": "Mr . Darius Ishaku of the Peoples Democratic Party ( PDP ) and Mr "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Peoples Democratic Party", "context": {"start": 33, "end": 37, "input": "tokens", "text": "Mr . Darius Ishaku of the Peoples Democratic Party ( PDP ) and Mr "}}, {"origin": {"segment": "content_strict", "context": {"start": 38, "end": 39, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) and Mr . Alex "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 38, "end": 39, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) and Mr . Alex "}}, {"origin": {"segment": "content_strict", "context": {"start": 49, "end": 51, "input": "tokens", "text": "Otti of the All Progressives Grand Alliance ( APGA ) as winners "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Grand Alliance", "context": {"start": 49, "end": 51, "input": "tokens", "text": "Otti of the All Progressives Grand Alliance ( APGA ) as winners "}}, {"origin": {"segment": "content_strict", "context": {"start": 148, "end": 151, "input": "tokens", "text": "panel of justices headed by Justice Abdul Aboki set aside the ruling of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Justice Abdul Aboki", "context": {"start": 148, "end": 151, "input": "tokens", "text": "panel of justices headed by Justice Abdul Aboki set aside the ruling of "}}, {"origin": {"segment": "content_strict", "context": {"start": 187, "end": 190, "input": "tokens", "text": "the governorship candidate of the All Progressives Congress ( APC ) , Mrs "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "All Progressives Congress", "context": {"start": 187, "end": 190, "input": "tokens", "text": "the governorship candidate of the All Progressives Congress ( APC ) , Mrs "}}, {"origin": {"segment": "content_strict", "context": {"start": 196, "end": 199, "input": "tokens", "text": "APC ) , Mrs . Aisha Jumai Alhassan , also known as \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Aisha Jumai Alhassan", "context": {"start": 196, "end": 199, "input": "tokens", "text": "APC ) , Mrs . Aisha Jumai Alhassan , also known as \" "}}, {"origin": {"segment": "content_strict", "context": {"start": 247, "end": 248, "input": "tokens", "text": "petitioners before the tribunal , Ishaku was validly elected and sponsored "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 247, "end": 248, "input": "tokens", "text": "petitioners before the tribunal , Ishaku was validly elected and sponsored "}}, {"origin": {"segment": "content_strict", "context": {"start": 258, "end": 259, "input": "tokens", "text": "by his party , the PDP , to vie for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 258, "end": 259, "input": "tokens", "text": "by his party , the PDP , to vie for the "}}, {"origin": {"segment": "content_strict", "context": {"start": 275, "end": 278, "input": "tokens", "text": "accordance with the constitution , the Electoral Act and in accordance with the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Electoral Act", "context": {"start": 275, "end": 278, "input": "tokens", "text": "accordance with the constitution , the Electoral Act and in accordance with the "}}, {"origin": {"segment": "content_strict", "context": {"start": 289, "end": 294, "input": "tokens", "text": "guidelines as laid down by the Independent National Electoral Commission ( INEC ) . \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Independent National Electoral Commission", "context": {"start": 289, "end": 294, "input": "tokens", "text": "guidelines as laid down by the Independent National Electoral Commission ( INEC ) . \" "}}, {"origin": {"segment": "content_strict", "context": {"start": 295, "end": 296, "input": "tokens", "text": "Independent National Electoral Commission ( INEC ) . \" Therefore the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "INEC", "context": {"start": 295, "end": 296, "input": "tokens", "text": "Independent National Electoral Commission ( INEC ) . \" Therefore the "}}, {"origin": {"segment": "content_strict", "context": {"start": 303, "end": 310, "input": "tokens", "text": "\" Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Taraba State Governorship Election Petitions Tribunal", "context": {"start": 303, "end": 310, "input": "tokens", "text": "\" Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null , "}}, {"origin": {"segment": "content_strict", "context": {"start": 358, "end": 360, "input": "tokens", "text": "the dully elected governor of Taraba State \" . According to the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Taraba State", "context": {"start": 358, "end": 360, "input": "tokens", "text": "the dully elected governor of Taraba State \" . According to the "}}, {"origin": {"segment": "content_strict", "context": {"start": 367, "end": 368, "input": "tokens", "text": "According to the court , APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APC", "context": {"start": 367, "end": 368, "input": "tokens", "text": "According to the court , APC and its governorship candidate , "}}, {"origin": {"segment": "content_strict", "context": {"start": 398, "end": 399, "input": "tokens", "text": "the primary election of the PDP , which produced Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 398, "end": 399, "input": "tokens", "text": "the primary election of the PDP , which produced Ishaku as "}}, {"origin": {"segment": "content_strict", "context": {"start": 418, "end": 419, "input": "tokens", "text": "is a member of the PDP . \n It also held "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 418, "end": 419, "input": "tokens", "text": "is a member of the PDP . \n It also held "}}, {"origin": {"segment": "content_strict", "context": {"start": 425, "end": 426, "input": "tokens", "text": "\n It also held that INEC superintends the activities of political "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "INEC", "context": {"start": 425, "end": 426, "input": "tokens", "text": "\n It also held that INEC superintends the activities of political "}}, {"origin": {"segment": "content_strict", "context": {"start": 442, "end": 443, "input": "tokens", "text": "breach or failure of the PDP to give the electoral body "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 442, "end": 443, "input": "tokens", "text": "breach or failure of the PDP to give the electoral body "}}, {"origin": {"segment": "content_strict", "context": {"start": 466, "end": 467, "input": "tokens", "text": "been the headache of the APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APC", "context": {"start": 466, "end": 467, "input": "tokens", "text": "been the headache of the APC and its governorship candidate , "}}, {"origin": {"segment": "content_strict", "context": {"start": 502, "end": 503, "input": "tokens", "text": "the said primary election and INEC . \n According to the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "INEC", "context": {"start": 502, "end": 503, "input": "tokens", "text": "the said primary election and INEC . \n According to the "}}, {"origin": {"segment": "content_strict", "context": {"start": 510, "end": 513, "input": "tokens", "text": "According to the court , the Electoral Act specifies the procedures for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Electoral Act", "context": {"start": 510, "end": 513, "input": "tokens", "text": "According to the court , the Electoral Act specifies the procedures for the "}}, {"origin": {"segment": "content_strict", "context": {"start": 544, "end": 549, "input": "tokens", "text": "the primary election . \n The Justice Musa Danladi Abubakar - led tribunal , had "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "The Justice Musa Danladi Abubakar", "context": {"start": 544, "end": 549, "input": "tokens", "text": "the primary election . \n The Justice Musa Danladi Abubakar - led tribunal , had "}}, {"origin": {"segment": "content_strict", "context": {"start": 559, "end": 560, "input": "tokens", "text": "in a petition filed by APC and Alhassan , held that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APC", "context": {"start": 559, "end": 560, "input": "tokens", "text": "in a petition filed by APC and Alhassan , held that "}}, {"origin": {"segment": "content_strict", "context": {"start": 561, "end": 562, "input": "tokens", "text": "petition filed by APC and Alhassan , held that the purported "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Alhassan", "context": {"start": 561, "end": 562, "input": "tokens", "text": "petition filed by APC and Alhassan , held that the purported "}}, {"origin": {"segment": "content_strict", "context": {"start": 573, "end": 574, "input": "tokens", "text": "of the governorship candidate by PDP breached Section 85 of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 573, "end": 574, "input": "tokens", "text": "of the governorship candidate by PDP breached Section 85 of the "}}, {"origin": {"segment": "content_strict", "context": {"start": 598, "end": 599, "input": "tokens", "text": "in a judgment ordered that Alhassan be sworn in as governor "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Alhassan", "context": {"start": 598, "end": 599, "input": "tokens", "text": "in a judgment ordered that Alhassan be sworn in as governor "}}, {"origin": {"segment": "content_strict", "context": {"start": 606, "end": 607, "input": "tokens", "text": "in as governor because the PDP did not conduct a valid "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "PDP", "context": {"start": 606, "end": 607, "input": "tokens", "text": "in as governor because the PDP did not conduct a valid "}}, {"origin": {"segment": "content_strict", "context": {"start": 630, "end": 631, "input": "tokens", "text": "tribunal however held that the APC governorship candidate could not adequately "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APC", "context": {"start": 630, "end": 631, "input": "tokens", "text": "tribunal however held that the APC governorship candidate could not adequately "}}, {"origin": {"segment": "content_strict", "context": {"start": 694, "end": 697, "input": "tokens", "text": "ruling yesterday , Jalingo , the Taraba State capital , was thrown into "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Taraba State", "context": {"start": 694, "end": 697, "input": "tokens", "text": "ruling yesterday , Jalingo , the Taraba State capital , was thrown into "}}, {"origin": {"segment": "content_strict", "context": {"start": 734, "end": 735, "input": "tokens", "text": "particularly around Hammaruwa Way , ATC , Mile 6 and Magami "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "ATC", "context": {"start": 734, "end": 735, "input": "tokens", "text": "particularly around Hammaruwa Way , ATC , Mile 6 and Magami "}}, {"origin": {"segment": "content_strict", "context": {"start": 799, "end": 800, "input": "tokens", "text": "the jubilant residents , told THISDAY that the judiciary proved once "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "THISDAY", "context": {"start": 799, "end": 800, "input": "tokens", "text": "the jubilant residents , told THISDAY that the judiciary proved once "}}, {"origin": {"segment": "content_strict", "context": {"start": 882, "end": 885, "input": "tokens", "text": "\" \n In Owerri , the Appeal Court also nullified the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Appeal Court", "context": {"start": 882, "end": 885, "input": "tokens", "text": "\" \n In Owerri , the Appeal Court also nullified the election of "}}, {"origin": {"segment": "content_strict", "context": {"start": 890, "end": 893, "input": "tokens", "text": "also nullified the election of the Abia State Governor , Dr . Okezie "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Abia State", "context": {"start": 890, "end": 893, "input": "tokens", "text": "also nullified the election of the Abia State Governor , Dr . Okezie "}}, {"origin": {"segment": "content_strict", "context": {"start": 906, "end": 907, "input": "tokens", "text": "declared the governorship candidate of APGA , Otti , as the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APGA", "context": {"start": 906, "end": 907, "input": "tokens", "text": "declared the governorship candidate of APGA , Otti , as the "}}, {"origin": {"segment": "content_strict", "context": {"start": 933, "end": 938, "input": "tokens", "text": "to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Governorship Election Petitions Tribunal", "context": {"start": 933, "end": 938, "input": "tokens", "text": "to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of "}}, {"origin": {"segment": "content_strict", "context": {"start": 955, "end": 956, "input": "tokens", "text": "at the tribunal , the APGA candidate contested the controversial results "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APGA", "context": {"start": 955, "end": 956, "input": "tokens", "text": "at the tribunal , the APGA candidate contested the controversial results "}}, {"origin": {"segment": "content_strict", "context": {"start": 997, "end": 1000, "input": "tokens", "text": "to be the determinant in the Appeal Court ' s judgment delivered by "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Appeal Court", "context": {"start": 997, "end": 1000, "input": "tokens", "text": "to be the determinant in the Appeal Court ' s judgment delivered by "}}, {"origin": {"segment": "content_strict", "context": {"start": 1005, "end": 1008, "input": "tokens", "text": "' s judgment delivered by Justice Oyebisi Omoleye . \n The five - "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Justice Oyebisi Omoleye", "context": {"start": 1005, "end": 1008, "input": "tokens", "text": "' s judgment delivered by Justice Oyebisi Omoleye . \n The five - "}}, {"origin": {"segment": "content_strict", "context": {"start": 1042, "end": 1043, "input": "tokens", "text": "the mathematics , held that Otti scored the highest number of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 1042, "end": 1043, "input": "tokens", "text": "the mathematics , held that Otti scored the highest number of "}}, {"origin": {"segment": "content_strict", "context": {"start": 1072, "end": 1073, "input": "tokens", "text": ", 882 votes credited to Otti by INEC which was affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 1072, "end": 1073, "input": "tokens", "text": ", 882 votes credited to Otti by INEC which was affirmed "}}, {"origin": {"segment": "content_strict", "context": {"start": 1074, "end": 1075, "input": "tokens", "text": "votes credited to Otti by INEC which was affirmed by the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "INEC", "context": {"start": 1074, "end": 1075, "input": "tokens", "text": "votes credited to Otti by INEC which was affirmed by the "}}, {"origin": {"segment": "content_strict", "context": {"start": 1102, "end": 1103, "input": "tokens", "text": "the appeal panel held that Otti scored a total of 164 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 1102, "end": 1103, "input": "tokens", "text": "the appeal panel held that Otti scored a total of 164 "}}, {"origin": {"segment": "content_strict", "context": {"start": 1118, "end": 1119, "input": "tokens", "text": "114 , 444 obtained by Ikpeazu . \n Accordingly , Justice "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1118, "end": 1119, "input": "tokens", "text": "114 , 444 obtained by Ikpeazu . \n Accordingly , Justice "}}, {"origin": {"segment": "content_strict", "context": {"start": 1128, "end": 1129, "input": "tokens", "text": "Justice Omoleye held that the APGA candidate was duly elected and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APGA", "context": {"start": 1128, "end": 1129, "input": "tokens", "text": "Justice Omoleye held that the APGA candidate was duly elected and "}}, {"origin": {"segment": "content_strict", "context": {"start": 1150, "end": 1151, "input": "tokens", "text": ", when the news of Otti ' s victory at the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 1150, "end": 1151, "input": "tokens", "text": ", when the news of Otti ' s victory at the "}}, {"origin": {"segment": "content_strict", "context": {"start": 1172, "end": 1173, "input": "tokens", "text": "wild jubilations by supporters of APGA . Scores of jubilant party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "APGA", "context": {"start": 1172, "end": 1173, "input": "tokens", "text": "wild jubilations by supporters of APGA . Scores of jubilant party "}}, {"origin": {"segment": "content_strict", "context": {"start": 1217, "end": 1218, "input": "tokens", "text": "not go down well with Ikpeazu , whose aide said that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1217, "end": 1218, "input": "tokens", "text": "not go down well with Ikpeazu , whose aide said that "}}, {"origin": {"segment": "content_strict", "context": {"start": 1232, "end": 1235, "input": "tokens", "text": "definitely challenge the ruling at the Supreme Court \" . \n Also addressing "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Supreme Court", "context": {"start": 1232, "end": 1235, "input": "tokens", "text": "definitely challenge the ruling at the Supreme Court \" . \n Also addressing "}}, {"origin": {"segment": "content_strict", "context": {"start": 1248, "end": 1251, "input": "tokens", "text": "in Umuahia , Ikpeazu faulted the Appeal Court ' s judgment , saying "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Appeal Court", "context": {"start": 1248, "end": 1251, "input": "tokens", "text": "in Umuahia , Ikpeazu faulted the Appeal Court ' s judgment , saying "}}, {"origin": {"segment": "content_strict", "context": {"start": 1265, "end": 1268, "input": "tokens", "text": "and would be challenged at the Supreme Court . \n The Abia governor "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Supreme Court", "context": {"start": 1265, "end": 1268, "input": "tokens", "text": "and would be challenged at the Supreme Court . \n The Abia governor "}}, {"origin": {"segment": "content_strict", "context": {"start": 1289, "end": 1292, "input": "tokens", "text": "to challenge the judgment at the Supreme Court . \" I wish to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Supreme Court", "context": {"start": 1289, "end": 1292, "input": "tokens", "text": "to challenge the judgment at the Supreme Court . \" I wish to "}}, {"origin": {"segment": "content_strict", "context": {"start": 1316, "end": 1320, "input": "tokens", "text": "upon which the decision of the Court of Appeal was arrived at was at "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Court of Appeal", "context": {"start": 1316, "end": 1320, "input": "tokens", "text": "upon which the decision of the Court of Appeal was arrived at was at "}}, {"origin": {"segment": "content_strict", "context": {"start": 1340, "end": 1343, "input": "tokens", "text": "said that in going to the Supreme Court he has \" utmost confidence "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Supreme Court", "context": {"start": 1340, "end": 1343, "input": "tokens", "text": "said that in going to the Supreme Court he has \" utmost confidence "}}, {"origin": {"segment": "content_strict", "context": {"start": 1359, "end": 1363, "input": "tokens", "text": "to correct the anomaly at the Court of Appeal and uphold my victory as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Court of Appeal", "context": {"start": 1359, "end": 1363, "input": "tokens", "text": "to correct the anomaly at the Court of Appeal and uphold my victory as "}}, {"origin": {"segment": "content_strict", "context": {"start": 1373, "end": 1377, "input": "tokens", "text": "had been done earlier by the Election Petitions Tribunal \" . \n Ikpeazu said "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Election Petitions Tribunal", "context": {"start": 1373, "end": 1377, "input": "tokens", "text": "had been done earlier by the Election Petitions Tribunal \" . \n Ikpeazu said "}}, {"origin": {"segment": "content_strict", "context": {"start": 1394, "end": 1397, "input": "tokens", "text": "full briefing on the reason the Appeal Court nullified his election , his "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Appeal Court", "context": {"start": 1394, "end": 1397, "input": "tokens", "text": "full briefing on the reason the Appeal Court nullified his election , his "}}, {"origin": {"segment": "content_strict", "context": {"start": 1483, "end": 1486, "input": "tokens", "text": "governor of Abia State until the Supreme Court reaffirms my mandate freely given "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "the Supreme Court", "context": {"start": 1483, "end": 1486, "input": "tokens", "text": "governor of Abia State until the Supreme Court reaffirms my mandate freely given "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 3, "end": 4, "input": "tokens", "text": "\n By Senator Iroegbu in Abuja , Wole Ayodele "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Iroegbu", "context": {"start": 3, "end": 4, "input": "tokens", "text": "\n By Senator Iroegbu in Abuja , Wole Ayodele "}}, {"origin": {"segment": "content_strict", "context": {"start": 7, "end": 9, "input": "tokens", "text": "Senator Iroegbu in Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Wole Ayodele", "context": {"start": 7, "end": 9, "input": "tokens", "text": "Senator Iroegbu in Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu "}}, {"origin": {"segment": "content_strict", "context": {"start": 12, "end": 14, "input": "tokens", "text": "Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Emmanuel Ugwu", "context": {"start": 12, "end": 14, "input": "tokens", "text": "Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia \n The Appeal "}}, {"origin": {"segment": "content_strict", "context": {"start": 30, "end": 32, "input": "tokens", "text": "on Thursday affirmed Mr . Darius Ishaku of the Peoples Democratic Party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Darius Ishaku", "context": {"start": 30, "end": 32, "input": "tokens", "text": "on Thursday affirmed Mr . Darius Ishaku of the Peoples Democratic Party "}}, {"origin": {"segment": "content_strict", "context": {"start": 43, "end": 45, "input": "tokens", "text": "PDP ) and Mr . Alex Otti of the All Progressives Grand "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Alex Otti", "context": {"start": 43, "end": 45, "input": "tokens", "text": "PDP ) and Mr . Alex Otti of the All Progressives Grand "}}, {"origin": {"segment": "content_strict", "context": {"start": 161, "end": 162, "input": "tokens", "text": "the tribunal . \n Justice Aboki , who read the unanimous "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Aboki", "context": {"start": 161, "end": 162, "input": "tokens", "text": "the tribunal . \n Justice Aboki , who read the unanimous "}}, {"origin": {"segment": "content_strict", "context": {"start": 204, "end": 206, "input": "tokens", "text": ", also known as \" Mama Taraba \" , winner of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Mama Taraba", "context": {"start": 204, "end": 206, "input": "tokens", "text": ", also known as \" Mama Taraba \" , winner of the "}}, {"origin": {"segment": "content_strict", "context": {"start": 664, "end": 665, "input": "tokens", "text": "Dissatisfied with the judgment , Ishaku filed an appeal , asking "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 664, "end": 665, "input": "tokens", "text": "Dissatisfied with the judgment , Ishaku filed an appeal , asking "}}, {"origin": {"segment": "content_strict", "context": {"start": 692, "end": 693, "input": "tokens", "text": "' s ruling yesterday , Jalingo , the Taraba State capital "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Jalingo", "context": {"start": 692, "end": 693, "input": "tokens", "text": "' s ruling yesterday , Jalingo , the Taraba State capital "}}, {"origin": {"segment": "content_strict", "context": {"start": 731, "end": 733, "input": "tokens", "text": "the streets , particularly around Hammaruwa Way , ATC , Mile 6 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Hammaruwa Way", "context": {"start": 731, "end": 733, "input": "tokens", "text": "the streets , particularly around Hammaruwa Way , ATC , Mile 6 "}}, {"origin": {"segment": "content_strict", "context": {"start": 789, "end": 791, "input": "tokens", "text": "the major roads . \n Enyetere Ambituni , one of the jubilant "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Enyetere Ambituni", "context": {"start": 789, "end": 791, "input": "tokens", "text": "the major roads . \n Enyetere Ambituni , one of the jubilant "}}, {"origin": {"segment": "content_strict", "context": {"start": 830, "end": 831, "input": "tokens", "text": "state who overwhelmingly voted for Ishaku as their governor . \n "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 830, "end": 831, "input": "tokens", "text": "state who overwhelmingly voted for Ishaku as their governor . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 869, "end": 870, "input": "tokens", "text": "of Taraba who overwhelmingly voted Ishaku as their governor have been "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku", "context": {"start": 869, "end": 870, "input": "tokens", "text": "of Taraba who overwhelmingly voted Ishaku as their governor have been "}}, {"origin": {"segment": "content_strict", "context": {"start": 897, "end": 899, "input": "tokens", "text": "State Governor , Dr . Okezie Ikpeazu , and declared the governorship "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Okezie Ikpeazu", "context": {"start": 897, "end": 899, "input": "tokens", "text": "State Governor , Dr . Okezie Ikpeazu , and declared the governorship "}}, {"origin": {"segment": "content_strict", "context": {"start": 921, "end": 922, "input": "tokens", "text": "election conducted in April . Otti had gone to the appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 921, "end": 922, "input": "tokens", "text": "election conducted in April . Otti had gone to the appeal "}}, {"origin": {"segment": "content_strict", "context": {"start": 966, "end": 968, "input": "tokens", "text": "from Obingwa , Osisioma and Isiala Ngwa North Local Government Areas that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Isiala Ngwa", "context": {"start": 966, "end": 968, "input": "tokens", "text": "from Obingwa , Osisioma and Isiala Ngwa North Local Government Areas that "}}, {"origin": {"segment": "content_strict", "context": {"start": 1056, "end": 1057, "input": "tokens", "text": "In the governorship poll , Ikpeazu had emerged winner with 264 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1056, "end": 1057, "input": "tokens", "text": "In the governorship poll , Ikpeazu had emerged winner with 264 "}}, {"origin": {"segment": "content_strict", "context": {"start": 1197, "end": 1198, "input": "tokens", "text": "flags , singing and praising Otti for his tenacity . \n "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Otti", "context": {"start": 1197, "end": 1198, "input": "tokens", "text": "flags , singing and praising Otti for his tenacity . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 1380, "end": 1381, "input": "tokens", "text": "Petitions Tribunal \" . \n Ikpeazu said though he was yet "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ikpeazu", "context": {"start": 1380, "end": 1381, "input": "tokens", "text": "Petitions Tribunal \" . \n Ikpeazu said though he was yet "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 135, "end": 138, "input": "tokens", "text": "of security concerns in the North - east , a five - member "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "North - east", "context": {"start": 135, "end": 138, "input": "tokens", "text": "of security concerns in the North - east , a five - member "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 1494, "end": 1495, "input": "tokens", "text": "freely given to me by Abians during the election , \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abians", "context": {"start": 1494, "end": 1495, "input": "tokens", "text": "freely given to me by Abians during the election , \" "}}]}}}}, "title": {"text": " Nigeria: Appeal Court Affirms Otti, Ishaku Duly Elected Governors of Abia, Taraba - allAfrica.com ", "simple_tokens": ["nigeria", ":", "appeal", "court", "affirms", "otti", ",", "ishaku", "duly", "elected", "governors", "of", "abia", ",", "taraba", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Appeal", "Court", "Affirms", "Otti", ",", "Ishaku", "Duly", "Elected", "Governors", "of", "Abia", ",", "Taraba", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Appeal Court Affirms Otti "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Appeal Court Affirms Otti "}}, {"origin": {"segment": "title", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Ishaku Duly Elected Governors of Abia , Taraba - allAfrica . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Abia", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Ishaku Duly Elected Governors of Abia , Taraba - allAfrica . "}}, {"origin": {"segment": "title", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Elected Governors of Abia , Taraba - allAfrica . com "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Taraba", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Elected Governors of Abia , Taraba - allAfrica . com "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Appeal Court Affirms Otti , Ishaku Duly "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Appeal Court", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Appeal Court Affirms Otti , Ishaku Duly "}}, {"origin": {"segment": "title", "context": {"start": 7, "end": 11, "input": "tokens", "text": "Appeal Court Affirms Otti , Ishaku Duly Elected Governors of Abia , Taraba - "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "value": "Ishaku Duly Elected Governors", "context": {"start": 7, "end": 11, "input": "tokens", "text": "Appeal Court Affirms Otti , Ishaku Duly Elected Governors of Abia , Taraba - "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:07.643266", "@etk_process_time": 1.052037000656128, "@etk_start_time": "2017-11-15T01:34:06.591229"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Appeal Court Affirms Otti, Ishaku Duly Elected Governors of Abia, Taraba - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: Appeal Court Affirms Otti, Ishaku Duly Elected Governors of Abia, Taraba\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Senator Iroegbu in Abuja, Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia\n \n

\n The Appeal Court sitting in Abuja and Owerri on Thursday affirmed Mr. Darius Ishaku of the Peoples Democratic Party (PDP) and Mr. Alex Otti of the All Progressives Grand Alliance (APGA) as winners of the April 11 governorship elections in Taraba and Abia States, respectively.\n

\n

\n The Abuja appellate court, in its judgment, set aside the decision of the state Election Petitions Tribunal, which sacked the Taraba governor from office based on pre-election matters.\n

\n

\n Delivering judgment on the three appeals and cross-appeal that emanated from the judgment of the tribunal, which sat in Abuja because of security concerns in the North-east, a five-member panel of justices headed by Justice Abdul Aboki set aside the ruling of the tribunal.\n

\n

\n Justice Aboki, who read the unanimous judgment, held that it was a gross misdirection for the tribunal to have declared the governorship candidate of the All Progressives Congress (APC), Mrs. Aisha Jumai Alhassan, also known as \"Mama Taraba\", winner of the gubernatorial poll on the basis that she scored the second highest number of votes in the election.\n

\n

\n The court also held that from the evidence of witnesses to the petitioners before the tribunal, Ishaku was validly elected and sponsored by his party, the PDP, to vie for the governorship seat of the state in accordance with the constitution, the Electoral Act and in accordance with the election guidelines as laid down by the Independent National Electoral Commission (INEC). \"Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null, void and set aside in its entirety.\n

\n

\n \"The appellant's appeal is meritorious and is hereby allowed,\" Justice Aboki held. The judge went further to affirm \"Darius Dickson Ishaku as the dully elected governor of Taraba State\". According to the court, APC and its governorship candidate, who were the first and second respondents in the appeal, had no locus standi under the law to challenge the primary election of the PDP, which produced Ishaku as its candidate for the election as none of them is a member of the PDP.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n It also held that INEC superintends the activities of political parties and if there was any breach or failure of the PDP to give the electoral body 21 days notice of its primary as alleged, it should not have been the headache of the APC and its governorship candidate, adding that the only person that could have complained of the conduct of a party's primary election was the person who participated in the said primary election and INEC.\n

\n

\n According to the court, the Electoral Act specifies the procedures for the election and sponsorship of a candidate by a political party and that the right to complain is limited to participants in the primary election.\n

\n

\n The Justice Musa Danladi Abubakar-led tribunal, had in a petition filed by APC and Alhassan, held that the purported nomination of the governorship candidate by PDP breached Section 85 of the Electoral Act and ordered Ishaku to vacate his office.\n

\n

\n Justice Abubakar had in a judgment ordered that Alhassan be sworn in as governor because the PDP did not conduct a valid primary that threw Ishaku up as its standard-bearer.\n

\n

\n The tribunal however held that the APC governorship candidate could not adequately prove her allegation of \"over-voting, irregularities, and non-compliance with the Electoral Act 2010\".\n

\n

\n Dissatisfied with the judgment, Ishaku filed an appeal, asking the appellate court to set aside the judgment of the tribunal. Reacting to the appellate court's ruling yesterday, Jalingo, the Taraba State capital, was thrown into jubilation, as residents marched through major streets of the town in celebration of the judgment.\n

\n

\n Residents in their thousands took to the streets, particularly around Hammaruwa Way, ATC, Mile 6 and Magami in motorcades and moved round the town singing and dancing.\n

\n

\n Traffic was obstructed and halted for several hours in the town as the convoy, which included women and children, and was carrying large loudspeakers obstructed the flow of traffic along the major roads.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n Enyetere Ambituni, one of the jubilant residents, told THISDAY that the judiciary proved once again to be the last hope of the common man and had vindicated the majority of the people of the state who overwhelmingly voted for Ishaku as their governor.\n

\n
\n
\n
\n
\n

\n According to him, \"We are celebrating today because the judiciary has once again shown that it is the last hope of the oppressed. The people of Taraba who overwhelmingly voted Ishaku as their governor have been vindicated.\"\n

\n

\n In Owerri, the Appeal Court also nullified the election of the Abia State Governor, Dr. Okezie Ikpeazu, and declared the governorship candidate of APGA, Otti, as the winner of the governorship election conducted in April. Otti had gone to the appeal court to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of Ikpeazu.\n

\n

\n Just like he did at the tribunal, the APGA candidate contested the controversial results from Obingwa, Osisioma and Isiala Ngwa North Local Government Areas that the returning officer cancelled and later reversed. However, the results from the three local governments turned out to be the determinant in the Appeal Court's judgment delivered by Justice Oyebisi Omoleye.\n

\n

\n The five-member panel unanimously agreed that the controversial results should not have been included in the final results and therefore cancelled them and after doing the mathematics, held that Otti scored the highest number of valid votes. In the governorship poll, Ikpeazu had emerged winner with 264,713 as against 180,882 votes credited to Otti by INEC which was affirmed by the tribunal.\n

\n

\n But after subtracting the scores of the candidates in the three council areas, the appeal panel held that Otti scored a total of 164,332 votes as against 114,444 obtained by Ikpeazu.\n

\n

\n Accordingly, Justice Omoleye held that the APGA candidate was duly elected and should be sworn in as governor of Abia State. Expectedly, when the news of Otti's victory at the appeal court filtered into Umuahia, the capital, there were wild jubilations by supporters of APGA. Scores of jubilant party supporters mounted tricycles and drove along major streets of the capital city waving party flags, singing and praising Otti for his tenacity.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n However, the ruling by the appellate court did not go down well with Ikpeazu, whose aide said that the governor would \"definitely challenge the ruling at the Supreme Court\".\n

\n

\n Also addressing the press yesterday in Umuahia, Ikpeazu faulted the Appeal Court's judgment, saying that it was untenable and would be challenged at the Supreme Court.\n

\n

\n The Abia governor said that he had directed his lawyers to take immediate steps to challenge the judgment at the Supreme Court. \"I wish to state at this point that preliminary reports available to me indicate that the premise upon which the decision of the Court of Appeal was arrived at was at best tenuous,\" he said.\n

\n

\n The governor said that in going to the Supreme Court he has \"utmost confidence in the ability of the justices to correct the anomaly at the Court of Appeal and uphold my victory as had been done earlier by the Election Petitions Tribunal\".\n

\n

\n Ikpeazu said though he was yet to get a full briefing on the reason the Appeal Court nullified his election, his lawyers were still at Owerri doing everything possible to obtain a copy of the judgment.\n

\n

\n \"The next four days are public holidays and the timing of the judgment means that we are losing valuable days to study the judgment and file our appeal,\" he said.\n

\n

\n Ikpeazu assured residents of Abia that his status as governor had not changed, adding that all was well. \"I remain the governor of Abia State until the Supreme Court reaffirms my mandate freely given to me by Abians during the election,\" he said.\n

\n

\n To avoid a breakdown of law and order, Ikpeazu called on security agencies to maintain the peace and ensure that people go about their legitimate businesses without disruption.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6", "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"} -{"url": "http://www.ce_news_article.org/2016/01/01/201601110125.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 94, "end": 95, "input": "tokens", "text": "arrive at PUs 017 . 026 , 027 & 028 , "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "026"}, {"source": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": "arrive at PUs 017 . 026 , 027 & 028 , "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "026"}], "key": "026", "value": "026"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 533, "end": 534, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 100, "end": 102, "input": "tokens", "text": ", 027 & 028 , Ukubie Ward , Southern Ijaw \n 1 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukubie Ward"}, {"source": {"segment": "content_strict", "context": {"start": 260, "end": 262, "input": "tokens", "text": "/ 16 / 027 , Ukubie Ward , Southern Ijaw \n 01 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukubie Ward"}, {"source": {"segment": "content_relaxed", "context": {"start": 114, "end": 116, "input": "tokens", "text": ", 027 & 028 , Ukubie Ward , Southern Ijaw \n 1 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukubie Ward"}, {"source": {"segment": "content_relaxed", "context": {"start": 274, "end": 276, "input": "tokens", "text": "/ 16 / 027 , Ukubie Ward , Southern Ijaw \n 01 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukubie Ward"}], "key": "ukubie ward", "value": "Ukubie Ward"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "method": "rearrange_description"}], "key": "description", "value": " \n By Ademola \n 1/9/2016 14:37:14 \n Two persons suspected to be agents of one of the political parties involved in Saturday's supplementary governorship election in Bayelsa have been arrested for allegedly snatching a ballot box. \n 1/9/2016 14:34:34 \n Bodiwari Open Square Yenagoa. Election disrupted and material snatched and carted away. \n 1/9/2016 14:32:15 \n Election materials yet to arrive at PUs 017. 026, 027 & 028, Ukubie Ward, Southern Ijaw \n 1/9/2016 14:30:33 \n Sporadic shooting has been reported in Southern Ijaw LGA, as the Bayelsa supplementary election process continues. \n A shooting incident was reported in ward 1, Agoibiri, South Ijaw local government area of Bayelsa State. \n 01/09/2016 14:29 \n Reports say Dozens of Amassoma youths hunting for thugs snatching ballot boxes \n 1/9/2016 14:20:34Shooting reported in Agoibiri, Amatolo areas of Southern Ijaw LGA \n 1/9/2016 13:12:13 Ballot box snatched with result sheets by thugs @ PUs 11 & 15, Gbarain, Yenagoa \n 1/9/2016 12:3:42 \n 11.30am Election materials and @inecnigeria officials yet to arrive PU 06/07/16/027, Ukubie Ward, Southern Ijaw \n 01/09/2016 12:03 \n 11:31am. No materials or officials yet at Ward 6 unit 004, 005 & 013 in Brass \n 01/09/2016 11:26 \n There is a large turn out of voters at Ayama ward 20 in Southern Ijaw. Accreditation and voting are ongoing and very peaceful. \n The exercise is about to commence in Southern Ijaw Local Government Area and some wards in some other local government areas. \n The Independent National Electoral Commission, INEC, had declared the election inconclusive during the December poll. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 196, "end": 199, "input": "tokens", "text": "Agoibiri , Amatolo areas of Southern Ijaw LGA \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw LGA"}, {"source": {"segment": "content_relaxed", "context": {"start": 210, "end": 213, "input": "tokens", "text": "Agoibiri , Amatolo areas of Southern Ijaw LGA \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw LGA"}], "key": "southern ijaw lga", "value": "Southern Ijaw LGA"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 318, "end": 320, "input": "tokens", "text": "at Ayama ward 20 in Southern Ijaw . Accreditation and voting are "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw"}, {"source": {"segment": "content_relaxed", "context": {"start": 332, "end": 334, "input": "tokens", "text": "at Ayama ward 20 in Southern Ijaw . Accreditation and voting are "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw"}], "key": "southern ijaw", "value": "Southern Ijaw"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 338, "end": 343, "input": "tokens", "text": "is about to commence in Southern Ijaw Local Government Area and some wards in some "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw Local Government Area"}, {"source": {"segment": "content_relaxed", "context": {"start": 352, "end": 357, "input": "tokens", "text": "is about to commence in Southern Ijaw Local Government Area and some wards in some "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw Local Government Area"}], "key": "southern ijaw local government area", "value": "Southern Ijaw Local Government Area"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 503, "end": 504, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Bayelsa Governorship Supplementary Election - Live Updates - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 96, "end": 99, "input": "tokens", "text": "PUs 017 . 026 , 027 & 028 , Ukubie Ward , Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "027 & 028"}, {"source": {"segment": "content_relaxed", "context": {"start": 110, "end": 113, "input": "tokens", "text": "PUs 017 . 026 , 027 & 028 , Ukubie Ward , Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "027 & 028"}], "key": "027 & 028", "value": "027 & 028"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 129, "end": 130, "input": "tokens", "text": "Ijaw LGA , as the Bayelsa supplementary election process continues . "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}, {"source": {"segment": "content_relaxed", "context": {"start": 143, "end": 144, "input": "tokens", "text": "Ijaw LGA , as the Bayelsa supplementary election process continues . "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}], "key": "bayelsa", "value": "Bayelsa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 147, "end": 149, "input": "tokens", "text": "ward 1 , Agoibiri , South Ijaw local government area of Bayelsa "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Ijaw"}, {"source": {"segment": "content_relaxed", "context": {"start": 161, "end": 163, "input": "tokens", "text": "ward 1 , Agoibiri , South Ijaw local government area of Bayelsa "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Ijaw"}], "key": "south ijaw", "value": "South Ijaw"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 290, "end": 293, "input": "tokens", "text": "Ward 6 unit 004 , 005 & 013 in Brass \n 01 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "005 & 013"}, {"source": {"segment": "content_relaxed", "context": {"start": 304, "end": 307, "input": "tokens", "text": "Ward 6 unit 004 , 005 & 013 in Brass \n 01 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "005 & 013"}], "key": "005 & 013", "value": "005 & 013"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 314, "end": 315, "input": "tokens", "text": "turn out of voters at Ayama ward 20 in Southern Ijaw "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ayama"}, {"source": {"segment": "content_relaxed", "context": {"start": 328, "end": 329, "input": "tokens", "text": "turn out of voters at Ayama ward 20 in Southern Ijaw "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ayama"}], "key": "ayama", "value": "Ayama"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 354, "end": 359, "input": "tokens", "text": "local government areas . \n The Independent National Electoral Commission , INEC , had declared "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Independent National Electoral Commission"}, {"source": {"segment": "content_relaxed", "context": {"start": 368, "end": 373, "input": "tokens", "text": "local government areas . \n The Independent National Electoral Commission , INEC , had declared "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Independent National Electoral Commission"}], "key": "the independent national electoral commission", "value": "The Independent National Electoral Commission"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 360, "end": 361, "input": "tokens", "text": "Independent National Electoral Commission , INEC , had declared the election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 374, "end": 375, "input": "tokens", "text": "Independent National Electoral Commission , INEC , had declared the election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}], "key": "inec", "value": "INEC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 14, "input": "tokens", "text": "January 2016 \n Nigeria : Bayelsa Governorship Supplementary Election - Live Updates \n By Ademola \n 1 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa Governorship Supplementary Election - Live Updates"}], "key": "bayelsa governorship supplementary election - live updates", "value": "Bayelsa Governorship Supplementary Election - Live Updates"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 390, "end": 392, "input": "tokens", "text": ". \n Copyright \n 2016 Daily Trust . All rights reserved . "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Daily Trust"}], "key": "daily trust", "value": "Daily Trust"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 397, "end": 398, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 399, "end": 402, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 2, "end": 11, "input": "tokens", "text": "Nigeria : Bayelsa Governorship Supplementary Election - Live Updates - allAfrica . com "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa Governorship Supplementary Election - Live Updates - allAfrica"}], "key": "bayelsa governorship supplementary election - live updates - allafrica", "value": "Bayelsa Governorship Supplementary Election - Live Updates - allAfrica"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 3, "input": "tokens", "text": "\n By Ademola \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ademola"}, {"source": {"segment": "content_relaxed", "context": {"start": 16, "end": 17, "input": "tokens", "text": "- Live Updates \n By Ademola \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ademola"}], "key": "ademola", "value": "Ademola"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 36, "end": 37, "input": "tokens", "text": "s supplementary governorship election in Bayelsa have been arrested for allegedly "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}, {"source": {"segment": "content_relaxed", "context": {"start": 50, "end": 51, "input": "tokens", "text": "s supplementary governorship election in Bayelsa have been arrested for allegedly "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}], "key": "bayelsa", "value": "Bayelsa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 145, "end": 146, "input": "tokens", "text": "reported in ward 1 , Agoibiri , South Ijaw local government "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Agoibiri"}, {"source": {"segment": "content_strict", "context": {"start": 191, "end": 192, "input": "tokens", "text": "20 : 34Shooting reported in Agoibiri , Amatolo areas of Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Agoibiri"}, {"source": {"segment": "content_relaxed", "context": {"start": 159, "end": 160, "input": "tokens", "text": "reported in ward 1 , Agoibiri , South Ijaw local government "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Agoibiri"}, {"source": {"segment": "content_relaxed", "context": {"start": 205, "end": 206, "input": "tokens", "text": "20 : 34Shooting reported in Agoibiri , Amatolo areas of Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Agoibiri"}], "key": "agoibiri", "value": "Agoibiri"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 153, "end": 155, "input": "tokens", "text": "Ijaw local government area of Bayelsa State . \n 01 / 09 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 167, "end": 169, "input": "tokens", "text": "Ijaw local government area of Bayelsa State . \n 01 / 09 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}], "key": "bayelsa state", "value": "Bayelsa State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 170, "end": 171, "input": "tokens", "text": "\n Reports say Dozens of Amassoma youths hunting for thugs snatching "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Amassoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 184, "end": 185, "input": "tokens", "text": "\n Reports say Dozens of Amassoma youths hunting for thugs snatching "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Amassoma"}], "key": "amassoma", "value": "Amassoma"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 193, "end": 194, "input": "tokens", "text": "34Shooting reported in Agoibiri , Amatolo areas of Southern Ijaw LGA "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Amatolo"}, {"source": {"segment": "content_relaxed", "context": {"start": 207, "end": 208, "input": "tokens", "text": "34Shooting reported in Agoibiri , Amatolo areas of Southern Ijaw LGA "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Amatolo"}], "key": "amatolo", "value": "Amatolo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 224, "end": 225, "input": "tokens", "text": "PUs 11 & 15 , Gbarain , Yenagoa \n 1 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gbarain"}, {"source": {"segment": "content_relaxed", "context": {"start": 238, "end": 239, "input": "tokens", "text": "PUs 11 & 15 , Gbarain , Yenagoa \n 1 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gbarain"}], "key": "gbarain", "value": "Gbarain"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 226, "end": 227, "input": "tokens", "text": "& 15 , Gbarain , Yenagoa \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yenagoa"}, {"source": {"segment": "content_relaxed", "context": {"start": 240, "end": 241, "input": "tokens", "text": "& 15 , Gbarain , Yenagoa \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yenagoa"}], "key": "yenagoa", "value": "Yenagoa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 9 January 2016 \n Nigeria : Bayelsa Governorship Supplementary Election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bayelsa Governorship Supplementary Election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}]}, "content_extraction": {"content_relaxed": {"text": " \n 9 January 2016 \n Nigeria: Bayelsa Governorship Supplementary Election - Live Updates \n By Ademola \n 1/9/2016 14:37:14 \n Two persons suspected to be agents of one of the political parties involved in Saturday's supplementary governorship election in Bayelsa have been arrested for allegedly snatching a ballot box. \n 1/9/2016 14:34:34 \n Bodiwari Open Square Yenagoa. Election disrupted and material snatched and carted away. \n 1/9/2016 14:32:15 \n Election materials yet to arrive at PUs 017. 026, 027 & 028, Ukubie Ward, Southern Ijaw \n 1/9/2016 14:30:33 \n Sporadic shooting has been reported in Southern Ijaw LGA, as the Bayelsa supplementary election process continues. \n A shooting incident was reported in ward 1, Agoibiri, South Ijaw local government area of Bayelsa State. \n 01/09/2016 14:29 \n Reports say Dozens of Amassoma youths hunting for thugs snatching ballot boxes \n 1/9/2016 14:20:34Shooting reported in Agoibiri, Amatolo areas of Southern Ijaw LGA \n 1/9/2016 13:12:13 Ballot box snatched with result sheets by thugs @ PUs 11 & 15, Gbarain, Yenagoa \n 1/9/2016 12:3:42 \n 11.30am Election materials and @inecnigeria officials yet to arrive PU 06/07/16/027, Ukubie Ward, Southern Ijaw \n 01/09/2016 12:03 \n 11:31am. No materials or officials yet at Ward 6 unit 004, 005 & 013 in Brass \n 01/09/2016 11:26 \n There is a large turn out of voters at Ayama ward 20 in Southern Ijaw. Accreditation and voting are ongoing and very peaceful. \n The exercise is about to commence in Southern Ijaw Local Government Area and some wards in some other local government areas. \n The Independent National Electoral Commission, INEC, had declared the election inconclusive during the December poll. \n Copyright \n 2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "9", "january", "2016", "\n", "nigeria", ":", "bayelsa", "governorship", "supplementary", "election", "-", "live", "updates", "\n", "by", "ademola", "\n", "1", "/", "9", "/", "2016", "14", ":", "37", ":", "14", "\n", "two", "persons", "suspected", "to", "be", "agents", "of", "one", "of", "the", "political", "parties", "involved", "in", "saturday", "'", "s", "supplementary", "governorship", "election", "in", "bayelsa", "have", "been", "arrested", "for", "allegedly", "snatching", "a", "ballot", "box", ".", "\n", "1", "/", "9", "/", "2016", "14", ":", "34", ":", "34", "\n", "bodiwari", "open", "square", "yenagoa", ".", "election", "disrupted", "and", "material", "snatched", "and", "carted", "away", ".", "\n", "1", "/", "9", "/", "2016", "14", ":", "32", ":", "15", "\n", "election", "materials", "yet", "to", "arrive", "at", "pus", "017", ".", "026", ",", "027", "&", "028", ",", "ukubie", "ward", ",", "southern", "ijaw", "\n", "1", "/", "9", "/", "2016", "14", ":", "30", ":", "33", "\n", "sporadic", "shooting", "has", "been", "reported", "in", "southern", "ijaw", "lga", ",", "as", "the", "bayelsa", "supplementary", "election", "process", "continues", ".", "\n", "a", "shooting", "incident", "was", "reported", "in", "ward", "1", ",", "agoibiri", ",", "south", "ijaw", "local", "government", "area", "of", "bayelsa", "state", ".", "\n", "01", "/", "09", "/", "2016", "14", ":", "29", "\n", "reports", "say", "dozens", "of", "amassoma", "youths", "hunting", "for", "thugs", "snatching", "ballot", "boxes", "\n", "1", "/", "9", "/", "2016", "14", ":", "20", ":", "34shooting", "reported", "in", "agoibiri", ",", "amatolo", "areas", "of", "southern", "ijaw", "lga", "\n", "1", "/", "9", "/", "2016", "13", ":", "12", ":", "13", "ballot", "box", "snatched", "with", "result", "sheets", "by", "thugs", "@", "pus", "11", "&", "15", ",", "gbarain", ",", "yenagoa", "\n", "1", "/", "9", "/", "2016", "12", ":", "3", ":", "42", "\n", "11", ".", "30am", "election", "materials", "and", "@", "inecnigeria", "officials", "yet", "to", "arrive", "pu", "06", "/", "07", "/", "16", "/", "027", ",", "ukubie", "ward", ",", "southern", "ijaw", "\n", "01", "/", "09", "/", "2016", "12", ":", "03", "\n", "11", ":", "31am", ".", "no", "materials", "or", "officials", "yet", "at", "ward", "6", "unit", "004", ",", "005", "&", "013", "in", "brass", "\n", "01", "/", "09", "/", "2016", "11", ":", "26", "\n", "there", "is", "a", "large", "turn", "out", "of", "voters", "at", "ayama", "ward", "20", "in", "southern", "ijaw", ".", "accreditation", "and", "voting", "are", "ongoing", "and", "very", "peaceful", ".", "\n", "the", "exercise", "is", "about", "to", "commence", "in", "southern", "ijaw", "local", "government", "area", "and", "some", "wards", "in", "some", "other", "local", "government", "areas", ".", "\n", "the", "independent", "national", "electoral", "commission", ",", "inec", ",", "had", "declared", "the", "election", "inconclusive", "during", "the", "december", "poll", ".", "\n", "copyright", "\n", "2016", "daily", "trust", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "9", "January", "2016", "\n", "Nigeria", ":", "Bayelsa", "Governorship", "Supplementary", "Election", "-", "Live", "Updates", "\n", "By", "Ademola", "\n", "1", "/", "9", "/", "2016", "14", ":", "37", ":", "14", "\n", "Two", "persons", "suspected", "to", "be", "agents", "of", "one", "of", "the", "political", "parties", "involved", "in", "Saturday", "'", "s", "supplementary", "governorship", "election", "in", "Bayelsa", "have", "been", "arrested", "for", "allegedly", "snatching", "a", "ballot", "box", ".", "\n", "1", "/", "9", "/", "2016", "14", ":", "34", ":", "34", "\n", "Bodiwari", "Open", "Square", "Yenagoa", ".", "Election", "disrupted", "and", "material", "snatched", "and", "carted", "away", ".", "\n", "1", "/", "9", "/", "2016", "14", ":", "32", ":", "15", "\n", "Election", "materials", "yet", "to", "arrive", "at", "PUs", "017", ".", "026", ",", "027", "&", "028", ",", "Ukubie", "Ward", ",", "Southern", "Ijaw", "\n", "1", "/", "9", "/", "2016", "14", ":", "30", ":", "33", "\n", "Sporadic", "shooting", "has", "been", "reported", "in", "Southern", "Ijaw", "LGA", ",", "as", "the", "Bayelsa", "supplementary", "election", "process", "continues", ".", "\n", "A", "shooting", "incident", "was", "reported", "in", "ward", "1", ",", "Agoibiri", ",", "South", "Ijaw", "local", "government", "area", "of", "Bayelsa", "State", ".", "\n", "01", "/", "09", "/", "2016", "14", ":", "29", "\n", "Reports", "say", "Dozens", "of", "Amassoma", "youths", "hunting", "for", "thugs", "snatching", "ballot", "boxes", "\n", "1", "/", "9", "/", "2016", "14", ":", "20", ":", "34Shooting", "reported", "in", "Agoibiri", ",", "Amatolo", "areas", "of", "Southern", "Ijaw", "LGA", "\n", "1", "/", "9", "/", "2016", "13", ":", "12", ":", "13", "Ballot", "box", "snatched", "with", "result", "sheets", "by", "thugs", "@", "PUs", "11", "&", "15", ",", "Gbarain", ",", "Yenagoa", "\n", "1", "/", "9", "/", "2016", "12", ":", "3", ":", "42", "\n", "11", ".", "30am", "Election", "materials", "and", "@", "inecnigeria", "officials", "yet", "to", "arrive", "PU", "06", "/", "07", "/", "16", "/", "027", ",", "Ukubie", "Ward", ",", "Southern", "Ijaw", "\n", "01", "/", "09", "/", "2016", "12", ":", "03", "\n", "11", ":", "31am", ".", "No", "materials", "or", "officials", "yet", "at", "Ward", "6", "unit", "004", ",", "005", "&", "013", "in", "Brass", "\n", "01", "/", "09", "/", "2016", "11", ":", "26", "\n", "There", "is", "a", "large", "turn", "out", "of", "voters", "at", "Ayama", "ward", "20", "in", "Southern", "Ijaw", ".", "Accreditation", "and", "voting", "are", "ongoing", "and", "very", "peaceful", ".", "\n", "The", "exercise", "is", "about", "to", "commence", "in", "Southern", "Ijaw", "Local", "Government", "Area", "and", "some", "wards", "in", "some", "other", "local", "government", "areas", ".", "\n", "The", "Independent", "National", "Electoral", "Commission", ",", "INEC", ",", "had", "declared", "the", "election", "inconclusive", "during", "the", "December", "poll", ".", "\n", "Copyright", "\n", "2016", "Daily", "Trust", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 9 January 2016 \n Nigeria : Bayelsa Governorship Supplementary Election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 9 January 2016 \n Nigeria : Bayelsa Governorship Supplementary Election "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 16, "end": 17, "input": "tokens", "text": "- Live Updates \n By Ademola \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Ademola", "context": {"start": 16, "end": 17, "input": "tokens", "text": "- Live Updates \n By Ademola \n 1 / 9 / "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 50, "end": 51, "input": "tokens", "text": "s supplementary governorship election in Bayelsa have been arrested for allegedly "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Bayelsa", "context": {"start": 50, "end": 51, "input": "tokens", "text": "s supplementary governorship election in Bayelsa have been arrested for allegedly "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 159, "end": 160, "input": "tokens", "text": "reported in ward 1 , Agoibiri , South Ijaw local government "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Agoibiri", "context": {"start": 159, "end": 160, "input": "tokens", "text": "reported in ward 1 , Agoibiri , South Ijaw local government "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 167, "end": 169, "input": "tokens", "text": "Ijaw local government area of Bayelsa State . \n 01 / 09 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Bayelsa State", "context": {"start": 167, "end": 169, "input": "tokens", "text": "Ijaw local government area of Bayelsa State . \n 01 / 09 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 184, "end": 185, "input": "tokens", "text": "\n Reports say Dozens of Amassoma youths hunting for thugs snatching "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Amassoma", "context": {"start": 184, "end": 185, "input": "tokens", "text": "\n Reports say Dozens of Amassoma youths hunting for thugs snatching "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 205, "end": 206, "input": "tokens", "text": "20 : 34Shooting reported in Agoibiri , Amatolo areas of Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Agoibiri", "context": {"start": 205, "end": 206, "input": "tokens", "text": "20 : 34Shooting reported in Agoibiri , Amatolo areas of Southern "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 207, "end": 208, "input": "tokens", "text": "34Shooting reported in Agoibiri , Amatolo areas of Southern Ijaw LGA "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Amatolo", "context": {"start": 207, "end": 208, "input": "tokens", "text": "34Shooting reported in Agoibiri , Amatolo areas of Southern Ijaw LGA "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 238, "end": 239, "input": "tokens", "text": "PUs 11 & 15 , Gbarain , Yenagoa \n 1 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Gbarain", "context": {"start": 238, "end": 239, "input": "tokens", "text": "PUs 11 & 15 , Gbarain , Yenagoa \n 1 / "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 240, "end": 241, "input": "tokens", "text": "& 15 , Gbarain , Yenagoa \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Yenagoa", "context": {"start": 240, "end": 241, "input": "tokens", "text": "& 15 , Gbarain , Yenagoa \n 1 / 9 / "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 7, "end": 14, "input": "tokens", "text": "January 2016 \n Nigeria : Bayelsa Governorship Supplementary Election - Live Updates \n By Ademola \n 1 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Bayelsa Governorship Supplementary Election - Live Updates", "context": {"start": 7, "end": 14, "input": "tokens", "text": "January 2016 \n Nigeria : Bayelsa Governorship Supplementary Election - Live Updates \n By Ademola \n 1 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 110, "end": 113, "input": "tokens", "text": "PUs 017 . 026 , 027 & 028 , Ukubie Ward , Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "027 & 028", "context": {"start": 110, "end": 113, "input": "tokens", "text": "PUs 017 . 026 , 027 & 028 , Ukubie Ward , Southern "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 143, "end": 144, "input": "tokens", "text": "Ijaw LGA , as the Bayelsa supplementary election process continues . "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Bayelsa", "context": {"start": 143, "end": 144, "input": "tokens", "text": "Ijaw LGA , as the Bayelsa supplementary election process continues . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 161, "end": 163, "input": "tokens", "text": "ward 1 , Agoibiri , South Ijaw local government area of Bayelsa "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "South Ijaw", "context": {"start": 161, "end": 163, "input": "tokens", "text": "ward 1 , Agoibiri , South Ijaw local government area of Bayelsa "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 304, "end": 307, "input": "tokens", "text": "Ward 6 unit 004 , 005 & 013 in Brass \n 01 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "005 & 013", "context": {"start": 304, "end": 307, "input": "tokens", "text": "Ward 6 unit 004 , 005 & 013 in Brass \n 01 / "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 328, "end": 329, "input": "tokens", "text": "turn out of voters at Ayama ward 20 in Southern Ijaw "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Ayama", "context": {"start": 328, "end": 329, "input": "tokens", "text": "turn out of voters at Ayama ward 20 in Southern Ijaw "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 368, "end": 373, "input": "tokens", "text": "local government areas . \n The Independent National Electoral Commission , INEC , had declared "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "The Independent National Electoral Commission", "context": {"start": 368, "end": 373, "input": "tokens", "text": "local government areas . \n The Independent National Electoral Commission , INEC , had declared "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 374, "end": 375, "input": "tokens", "text": "Independent National Electoral Commission , INEC , had declared the election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "INEC", "context": {"start": 374, "end": 375, "input": "tokens", "text": "Independent National Electoral Commission , INEC , had declared the election "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 390, "end": 392, "input": "tokens", "text": ". \n Copyright \n 2016 Daily Trust . All rights reserved . "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Daily Trust", "context": {"start": 390, "end": 392, "input": "tokens", "text": ". \n Copyright \n 2016 Daily Trust . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 397, "end": 398, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Distributed", "context": {"start": 397, "end": 398, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 399, "end": 402, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "AllAfrica Global Media", "context": {"start": 399, "end": 402, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": "arrive at PUs 017 . 026 , 027 & 028 , "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "026", "context": {"start": 108, "end": 109, "input": "tokens", "text": "arrive at PUs 017 . 026 , 027 & 028 , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 533, "end": 534, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "AllAfrica", "context": {"start": 533, "end": 534, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 114, "end": 116, "input": "tokens", "text": ", 027 & 028 , Ukubie Ward , Southern Ijaw \n 1 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Ukubie Ward", "context": {"start": 114, "end": 116, "input": "tokens", "text": ", 027 & 028 , Ukubie Ward , Southern Ijaw \n 1 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 274, "end": 276, "input": "tokens", "text": "/ 16 / 027 , Ukubie Ward , Southern Ijaw \n 01 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Ukubie Ward", "context": {"start": 274, "end": 276, "input": "tokens", "text": "/ 16 / 027 , Ukubie Ward , Southern Ijaw \n 01 "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 210, "end": 213, "input": "tokens", "text": "Agoibiri , Amatolo areas of Southern Ijaw LGA \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Southern Ijaw LGA", "context": {"start": 210, "end": 213, "input": "tokens", "text": "Agoibiri , Amatolo areas of Southern Ijaw LGA \n 1 / 9 / "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 332, "end": 334, "input": "tokens", "text": "at Ayama ward 20 in Southern Ijaw . Accreditation and voting are "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Southern Ijaw", "context": {"start": 332, "end": 334, "input": "tokens", "text": "at Ayama ward 20 in Southern Ijaw . Accreditation and voting are "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 352, "end": 357, "input": "tokens", "text": "is about to commence in Southern Ijaw Local Government Area and some wards in some "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Southern Ijaw Local Government Area", "context": {"start": 352, "end": 357, "input": "tokens", "text": "is about to commence in Southern Ijaw Local Government Area and some wards in some "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 503, "end": 504, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "AllAfrica", "context": {"start": 503, "end": 504, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/01/201601110125.html"}, "content_strict": {"text": " \n By Ademola \n 1/9/2016 14:37:14 \n Two persons suspected to be agents of one of the political parties involved in Saturday's supplementary governorship election in Bayelsa have been arrested for allegedly snatching a ballot box. \n 1/9/2016 14:34:34 \n Bodiwari Open Square Yenagoa. Election disrupted and material snatched and carted away. \n 1/9/2016 14:32:15 \n Election materials yet to arrive at PUs 017. 026, 027 & 028, Ukubie Ward, Southern Ijaw \n 1/9/2016 14:30:33 \n Sporadic shooting has been reported in Southern Ijaw LGA, as the Bayelsa supplementary election process continues. \n A shooting incident was reported in ward 1, Agoibiri, South Ijaw local government area of Bayelsa State. \n 01/09/2016 14:29 \n Reports say Dozens of Amassoma youths hunting for thugs snatching ballot boxes \n 1/9/2016 14:20:34Shooting reported in Agoibiri, Amatolo areas of Southern Ijaw LGA \n 1/9/2016 13:12:13 Ballot box snatched with result sheets by thugs @ PUs 11 & 15, Gbarain, Yenagoa \n 1/9/2016 12:3:42 \n 11.30am Election materials and @inecnigeria officials yet to arrive PU 06/07/16/027, Ukubie Ward, Southern Ijaw \n 01/09/2016 12:03 \n 11:31am. No materials or officials yet at Ward 6 unit 004, 005 & 013 in Brass \n 01/09/2016 11:26 \n There is a large turn out of voters at Ayama ward 20 in Southern Ijaw. Accreditation and voting are ongoing and very peaceful. \n The exercise is about to commence in Southern Ijaw Local Government Area and some wards in some other local government areas. \n The Independent National Electoral Commission, INEC, had declared the election inconclusive during the December poll. \n ", "simple_tokens": ["\n", "by", "ademola", "\n", "1", "/", "9", "/", "2016", "14", ":", "37", ":", "14", "\n", "two", "persons", "suspected", "to", "be", "agents", "of", "one", "of", "the", "political", "parties", "involved", "in", "saturday", "'", "s", "supplementary", "governorship", "election", "in", "bayelsa", "have", "been", "arrested", "for", "allegedly", "snatching", "a", "ballot", "box", ".", "\n", "1", "/", "9", "/", "2016", "14", ":", "34", ":", "34", "\n", "bodiwari", "open", "square", "yenagoa", ".", "election", "disrupted", "and", "material", "snatched", "and", "carted", "away", ".", "\n", "1", "/", "9", "/", "2016", "14", ":", "32", ":", "15", "\n", "election", "materials", "yet", "to", "arrive", "at", "pus", "017", ".", "026", ",", "027", "&", "028", ",", "ukubie", "ward", ",", "southern", "ijaw", "\n", "1", "/", "9", "/", "2016", "14", ":", "30", ":", "33", "\n", "sporadic", "shooting", "has", "been", "reported", "in", "southern", "ijaw", "lga", ",", "as", "the", "bayelsa", "supplementary", "election", "process", "continues", ".", "\n", "a", "shooting", "incident", "was", "reported", "in", "ward", "1", ",", "agoibiri", ",", "south", "ijaw", "local", "government", "area", "of", "bayelsa", "state", ".", "\n", "01", "/", "09", "/", "2016", "14", ":", "29", "\n", "reports", "say", "dozens", "of", "amassoma", "youths", "hunting", "for", "thugs", "snatching", "ballot", "boxes", "\n", "1", "/", "9", "/", "2016", "14", ":", "20", ":", "34shooting", "reported", "in", "agoibiri", ",", "amatolo", "areas", "of", "southern", "ijaw", "lga", "\n", "1", "/", "9", "/", "2016", "13", ":", "12", ":", "13", "ballot", "box", "snatched", "with", "result", "sheets", "by", "thugs", "@", "pus", "11", "&", "15", ",", "gbarain", ",", "yenagoa", "\n", "1", "/", "9", "/", "2016", "12", ":", "3", ":", "42", "\n", "11", ".", "30am", "election", "materials", "and", "@", "inecnigeria", "officials", "yet", "to", "arrive", "pu", "06", "/", "07", "/", "16", "/", "027", ",", "ukubie", "ward", ",", "southern", "ijaw", "\n", "01", "/", "09", "/", "2016", "12", ":", "03", "\n", "11", ":", "31am", ".", "no", "materials", "or", "officials", "yet", "at", "ward", "6", "unit", "004", ",", "005", "&", "013", "in", "brass", "\n", "01", "/", "09", "/", "2016", "11", ":", "26", "\n", "there", "is", "a", "large", "turn", "out", "of", "voters", "at", "ayama", "ward", "20", "in", "southern", "ijaw", ".", "accreditation", "and", "voting", "are", "ongoing", "and", "very", "peaceful", ".", "\n", "the", "exercise", "is", "about", "to", "commence", "in", "southern", "ijaw", "local", "government", "area", "and", "some", "wards", "in", "some", "other", "local", "government", "areas", ".", "\n", "the", "independent", "national", "electoral", "commission", ",", "inec", ",", "had", "declared", "the", "election", "inconclusive", "during", "the", "december", "poll", ".", "\n"], "simple_tokens_original_case": ["\n", "By", "Ademola", "\n", "1", "/", "9", "/", "2016", "14", ":", "37", ":", "14", "\n", "Two", "persons", "suspected", "to", "be", "agents", "of", "one", "of", "the", "political", "parties", "involved", "in", "Saturday", "'", "s", "supplementary", "governorship", "election", "in", "Bayelsa", "have", "been", "arrested", "for", "allegedly", "snatching", "a", "ballot", "box", ".", "\n", "1", "/", "9", "/", "2016", "14", ":", "34", ":", "34", "\n", "Bodiwari", "Open", "Square", "Yenagoa", ".", "Election", "disrupted", "and", "material", "snatched", "and", "carted", "away", ".", "\n", "1", "/", "9", "/", "2016", "14", ":", "32", ":", "15", "\n", "Election", "materials", "yet", "to", "arrive", "at", "PUs", "017", ".", "026", ",", "027", "&", "028", ",", "Ukubie", "Ward", ",", "Southern", "Ijaw", "\n", "1", "/", "9", "/", "2016", "14", ":", "30", ":", "33", "\n", "Sporadic", "shooting", "has", "been", "reported", "in", "Southern", "Ijaw", "LGA", ",", "as", "the", "Bayelsa", "supplementary", "election", "process", "continues", ".", "\n", "A", "shooting", "incident", "was", "reported", "in", "ward", "1", ",", "Agoibiri", ",", "South", "Ijaw", "local", "government", "area", "of", "Bayelsa", "State", ".", "\n", "01", "/", "09", "/", "2016", "14", ":", "29", "\n", "Reports", "say", "Dozens", "of", "Amassoma", "youths", "hunting", "for", "thugs", "snatching", "ballot", "boxes", "\n", "1", "/", "9", "/", "2016", "14", ":", "20", ":", "34Shooting", "reported", "in", "Agoibiri", ",", "Amatolo", "areas", "of", "Southern", "Ijaw", "LGA", "\n", "1", "/", "9", "/", "2016", "13", ":", "12", ":", "13", "Ballot", "box", "snatched", "with", "result", "sheets", "by", "thugs", "@", "PUs", "11", "&", "15", ",", "Gbarain", ",", "Yenagoa", "\n", "1", "/", "9", "/", "2016", "12", ":", "3", ":", "42", "\n", "11", ".", "30am", "Election", "materials", "and", "@", "inecnigeria", "officials", "yet", "to", "arrive", "PU", "06", "/", "07", "/", "16", "/", "027", ",", "Ukubie", "Ward", ",", "Southern", "Ijaw", "\n", "01", "/", "09", "/", "2016", "12", ":", "03", "\n", "11", ":", "31am", ".", "No", "materials", "or", "officials", "yet", "at", "Ward", "6", "unit", "004", ",", "005", "&", "013", "in", "Brass", "\n", "01", "/", "09", "/", "2016", "11", ":", "26", "\n", "There", "is", "a", "large", "turn", "out", "of", "voters", "at", "Ayama", "ward", "20", "in", "Southern", "Ijaw", ".", "Accreditation", "and", "voting", "are", "ongoing", "and", "very", "peaceful", ".", "\n", "The", "exercise", "is", "about", "to", "commence", "in", "Southern", "Ijaw", "Local", "Government", "Area", "and", "some", "wards", "in", "some", "other", "local", "government", "areas", ".", "\n", "The", "Independent", "National", "Electoral", "Commission", ",", "INEC", ",", "had", "declared", "the", "election", "inconclusive", "during", "the", "December", "poll", ".", "\n"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 2, "end": 3, "input": "tokens", "text": "\n By Ademola \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Ademola", "context": {"start": 2, "end": 3, "input": "tokens", "text": "\n By Ademola \n 1 / 9 / "}}, {"origin": {"segment": "content_strict", "context": {"start": 36, "end": 37, "input": "tokens", "text": "s supplementary governorship election in Bayelsa have been arrested for allegedly "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Bayelsa", "context": {"start": 36, "end": 37, "input": "tokens", "text": "s supplementary governorship election in Bayelsa have been arrested for allegedly "}}, {"origin": {"segment": "content_strict", "context": {"start": 145, "end": 146, "input": "tokens", "text": "reported in ward 1 , Agoibiri , South Ijaw local government "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Agoibiri", "context": {"start": 145, "end": 146, "input": "tokens", "text": "reported in ward 1 , Agoibiri , South Ijaw local government "}}, {"origin": {"segment": "content_strict", "context": {"start": 153, "end": 155, "input": "tokens", "text": "Ijaw local government area of Bayelsa State . \n 01 / 09 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Bayelsa State", "context": {"start": 153, "end": 155, "input": "tokens", "text": "Ijaw local government area of Bayelsa State . \n 01 / 09 "}}, {"origin": {"segment": "content_strict", "context": {"start": 170, "end": 171, "input": "tokens", "text": "\n Reports say Dozens of Amassoma youths hunting for thugs snatching "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Amassoma", "context": {"start": 170, "end": 171, "input": "tokens", "text": "\n Reports say Dozens of Amassoma youths hunting for thugs snatching "}}, {"origin": {"segment": "content_strict", "context": {"start": 191, "end": 192, "input": "tokens", "text": "20 : 34Shooting reported in Agoibiri , Amatolo areas of Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Agoibiri", "context": {"start": 191, "end": 192, "input": "tokens", "text": "20 : 34Shooting reported in Agoibiri , Amatolo areas of Southern "}}, {"origin": {"segment": "content_strict", "context": {"start": 193, "end": 194, "input": "tokens", "text": "34Shooting reported in Agoibiri , Amatolo areas of Southern Ijaw LGA "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Amatolo", "context": {"start": 193, "end": 194, "input": "tokens", "text": "34Shooting reported in Agoibiri , Amatolo areas of Southern Ijaw LGA "}}, {"origin": {"segment": "content_strict", "context": {"start": 224, "end": 225, "input": "tokens", "text": "PUs 11 & 15 , Gbarain , Yenagoa \n 1 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Gbarain", "context": {"start": 224, "end": 225, "input": "tokens", "text": "PUs 11 & 15 , Gbarain , Yenagoa \n 1 / "}}, {"origin": {"segment": "content_strict", "context": {"start": 226, "end": 227, "input": "tokens", "text": "& 15 , Gbarain , Yenagoa \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Yenagoa", "context": {"start": 226, "end": 227, "input": "tokens", "text": "& 15 , Gbarain , Yenagoa \n 1 / 9 / "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 96, "end": 99, "input": "tokens", "text": "PUs 017 . 026 , 027 & 028 , Ukubie Ward , Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "027 & 028", "context": {"start": 96, "end": 99, "input": "tokens", "text": "PUs 017 . 026 , 027 & 028 , Ukubie Ward , Southern "}}, {"origin": {"segment": "content_strict", "context": {"start": 129, "end": 130, "input": "tokens", "text": "Ijaw LGA , as the Bayelsa supplementary election process continues . "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Bayelsa", "context": {"start": 129, "end": 130, "input": "tokens", "text": "Ijaw LGA , as the Bayelsa supplementary election process continues . "}}, {"origin": {"segment": "content_strict", "context": {"start": 147, "end": 149, "input": "tokens", "text": "ward 1 , Agoibiri , South Ijaw local government area of Bayelsa "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "South Ijaw", "context": {"start": 147, "end": 149, "input": "tokens", "text": "ward 1 , Agoibiri , South Ijaw local government area of Bayelsa "}}, {"origin": {"segment": "content_strict", "context": {"start": 290, "end": 293, "input": "tokens", "text": "Ward 6 unit 004 , 005 & 013 in Brass \n 01 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "005 & 013", "context": {"start": 290, "end": 293, "input": "tokens", "text": "Ward 6 unit 004 , 005 & 013 in Brass \n 01 / "}}, {"origin": {"segment": "content_strict", "context": {"start": 314, "end": 315, "input": "tokens", "text": "turn out of voters at Ayama ward 20 in Southern Ijaw "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Ayama", "context": {"start": 314, "end": 315, "input": "tokens", "text": "turn out of voters at Ayama ward 20 in Southern Ijaw "}}, {"origin": {"segment": "content_strict", "context": {"start": 354, "end": 359, "input": "tokens", "text": "local government areas . \n The Independent National Electoral Commission , INEC , had declared "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "The Independent National Electoral Commission", "context": {"start": 354, "end": 359, "input": "tokens", "text": "local government areas . \n The Independent National Electoral Commission , INEC , had declared "}}, {"origin": {"segment": "content_strict", "context": {"start": 360, "end": 361, "input": "tokens", "text": "Independent National Electoral Commission , INEC , had declared the election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "INEC", "context": {"start": 360, "end": 361, "input": "tokens", "text": "Independent National Electoral Commission , INEC , had declared the election "}}]}}, "product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 94, "end": 95, "input": "tokens", "text": "arrive at PUs 017 . 026 , 027 & 028 , "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "026", "context": {"start": 94, "end": 95, "input": "tokens", "text": "arrive at PUs 017 . 026 , 027 & 028 , "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 100, "end": 102, "input": "tokens", "text": ", 027 & 028 , Ukubie Ward , Southern Ijaw \n 1 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Ukubie Ward", "context": {"start": 100, "end": 102, "input": "tokens", "text": ", 027 & 028 , Ukubie Ward , Southern Ijaw \n 1 "}}, {"origin": {"segment": "content_strict", "context": {"start": 260, "end": 262, "input": "tokens", "text": "/ 16 / 027 , Ukubie Ward , Southern Ijaw \n 01 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Ukubie Ward", "context": {"start": 260, "end": 262, "input": "tokens", "text": "/ 16 / 027 , Ukubie Ward , Southern Ijaw \n 01 "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 196, "end": 199, "input": "tokens", "text": "Agoibiri , Amatolo areas of Southern Ijaw LGA \n 1 / 9 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Southern Ijaw LGA", "context": {"start": 196, "end": 199, "input": "tokens", "text": "Agoibiri , Amatolo areas of Southern Ijaw LGA \n 1 / 9 / "}}, {"origin": {"segment": "content_strict", "context": {"start": 318, "end": 320, "input": "tokens", "text": "at Ayama ward 20 in Southern Ijaw . Accreditation and voting are "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Southern Ijaw", "context": {"start": 318, "end": 320, "input": "tokens", "text": "at Ayama ward 20 in Southern Ijaw . Accreditation and voting are "}}, {"origin": {"segment": "content_strict", "context": {"start": 338, "end": 343, "input": "tokens", "text": "is about to commence in Southern Ijaw Local Government Area and some wards in some "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Southern Ijaw Local Government Area", "context": {"start": 338, "end": 343, "input": "tokens", "text": "is about to commence in Southern Ijaw Local Government Area and some wards in some "}}]}}}}, "title": {"text": " Nigeria: Bayelsa Governorship Supplementary Election - Live Updates - allAfrica.com ", "simple_tokens": ["nigeria", ":", "bayelsa", "governorship", "supplementary", "election", "-", "live", "updates", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Bayelsa", "Governorship", "Supplementary", "Election", "-", "Live", "Updates", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bayelsa Governorship Supplementary Election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bayelsa Governorship Supplementary Election "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 2, "end": 11, "input": "tokens", "text": "Nigeria : Bayelsa Governorship Supplementary Election - Live Updates - allAfrica . com "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "value": "Bayelsa Governorship Supplementary Election - Live Updates - allAfrica", "context": {"start": 2, "end": 11, "input": "tokens", "text": "Nigeria : Bayelsa Governorship Supplementary Election - Live Updates - allAfrica . com "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:08.130004", "@etk_process_time": 0.48152899742126465, "@etk_start_time": "2017-11-15T01:34:07.648475"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Bayelsa Governorship Supplementary Election - Live Updates - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 9 January 2016\n
\n \n \n

\n Nigeria: Bayelsa Governorship Supplementary Election - Live Updates\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Ademola\n \n

\n 1/9/2016 14:37:14\n

\n

\n Two persons suspected to be agents of one of the political parties involved in Saturday's supplementary governorship election in Bayelsa have been arrested for allegedly snatching a ballot box.\n

\n

\n 1/9/2016 14:34:34\n

\n

\n Bodiwari Open Square Yenagoa. Election disrupted and material snatched and carted away.\n

\n

\n 1/9/2016 14:32:15\n

\n

\n Election materials yet to arrive at PUs 017. 026, 027 & 028, Ukubie Ward, Southern Ijaw\n

\n

\n 1/9/2016 14:30:33\n

\n

\n Sporadic shooting has been reported in Southern Ijaw LGA, as the Bayelsa supplementary election process continues.\n

\n

\n A shooting incident was reported in ward 1, Agoibiri, South Ijaw local government area of Bayelsa State.\n

\n

\n 01/09/2016 14:29\n

\n

\n Reports say Dozens of Amassoma youths hunting for thugs snatching ballot boxes\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
\n
\n

\n 1/9/2016 14:20:34Shooting reported in Agoibiri, Amatolo areas of Southern Ijaw LGA\n

\n

\n 1/9/2016 13:12:13 Ballot box snatched with result sheets by thugs @ PUs 11 & 15, Gbarain, Yenagoa\n

\n

\n 1/9/2016 12:3:42\n

\n

\n 11.30am Election materials and @inecnigeria officials yet to arrive PU 06/07/16/027, Ukubie Ward, Southern Ijaw\n

\n

\n 01/09/2016 12:03\n

\n

\n 11:31am. No materials or officials yet at Ward 6 unit 004, 005 & 013 in Brass\n

\n

\n 01/09/2016 11:26\n

\n

\n There is a large turn out of voters at Ayama ward 20 in Southern Ijaw. Accreditation and voting are ongoing and very peaceful.\n

\n

\n The exercise is about to commence in Southern Ijaw Local Government Area and some wards in some other local government areas.\n

\n

\n The Independent National Electoral Commission, INEC, had declared the election inconclusive during the December poll.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187", "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"} -{"url": "http://www.ce_news_article.org/2016/01/02/201601020066.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 695, "end": 696, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 75, "end": 77, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 277, "end": 279, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 36, "end": 38, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 90, "end": 92, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 292, "end": 294, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}], "key": "jesus christ", "value": "Jesus Christ"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 64, "end": 66, "input": "tokens", "text": "of Orlu Catholic Diocese , Augustine Ukwuoma , on Friday unveiled the "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Ukwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 79, "end": 81, "input": "tokens", "text": "of Orlu Catholic Diocese , Augustine Ukwuoma , on Friday unveiled the "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Ukwuoma"}], "key": "augustine ukwuoma", "value": "Augustine Ukwuoma"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 115, "end": 118, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ramesses ii Abusimbel"}, {"source": {"segment": "content_relaxed", "context": {"start": 130, "end": 133, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ramesses ii Abusimbel"}], "key": "ramesses ii abusimbel", "value": "Ramesses ii Abusimbel"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 142, "end": 144, "input": "tokens", "text": "Emeritus of Orlu Diocese , Gregory Ochiagha , and more than 100 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gregory Ochiagha"}, {"source": {"segment": "content_relaxed", "context": {"start": 157, "end": 159, "input": "tokens", "text": "Emeritus of Orlu Diocese , Gregory Ochiagha , and more than 100 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gregory Ochiagha"}], "key": "gregory ochiagha", "value": "Gregory Ochiagha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 151, "end": 152, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_strict", "context": {"start": 181, "end": 182, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_relaxed", "context": {"start": 166, "end": 167, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_relaxed", "context": {"start": 196, "end": 197, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}], "key": "st", "value": "St"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 162, "end": 164, "input": "tokens", "text": "on Friday . \n One Obinna Onuoha , who donated the Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 177, "end": 179, "input": "tokens", "text": "on Friday . \n One Obinna Onuoha , who donated the Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}], "key": "obinna onuoha", "value": "Obinna Onuoha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 168, "end": 169, "input": "tokens", "text": "Onuoha , who donated the Jesus statue , had constructed 2 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}, {"source": {"segment": "content_relaxed", "context": {"start": 183, "end": 184, "input": "tokens", "text": "Onuoha , who donated the Jesus statue , had constructed 2 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}], "key": "jesus", "value": "Jesus"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 210, "end": 211, "input": "tokens", "text": "the parents of Mr . Obinna , Geoffrey , and Lolo "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna"}, {"source": {"segment": "content_relaxed", "context": {"start": 225, "end": 226, "input": "tokens", "text": "the parents of Mr . Obinna , Geoffrey , and Lolo "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna"}], "key": "obinna", "value": "Obinna"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 212, "end": 213, "input": "tokens", "text": "of Mr . Obinna , Geoffrey , and Lolo Justina Onuoha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Geoffrey"}, {"source": {"segment": "content_relaxed", "context": {"start": 227, "end": 228, "input": "tokens", "text": "of Mr . Obinna , Geoffrey , and Lolo Justina Onuoha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Geoffrey"}], "key": "geoffrey", "value": "Geoffrey"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 222, "end": 223, "input": "tokens", "text": "Onuoha . \n Mr . Ukwuoma , who described the statue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": "Onuoha . \n Mr . Ukwuoma , who described the statue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}], "key": "ukwuoma", "value": "Ukwuoma"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 235, "end": 236, "input": "tokens", "text": ", commended the Mr . Onuoha family for the gift and "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 382, "end": 383, "input": "tokens", "text": "unity . \n Mr . Onuoha , the Managing Director of "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 496, "end": 497, "input": "tokens", "text": "said . \n Mr . Onuoha , who did not mention "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 250, "end": 251, "input": "tokens", "text": ", commended the Mr . Onuoha family for the gift and "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 397, "end": 398, "input": "tokens", "text": "unity . \n Mr . Onuoha , the Managing Director of "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 511, "end": 512, "input": "tokens", "text": "said . \n Mr . Onuoha , who did not mention "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}], "key": "onuoha", "value": "Onuoha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 303, "end": 304, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop"}, {"source": {"segment": "content_relaxed", "context": {"start": 318, "end": 319, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop"}], "key": "bishop", "value": "Bishop"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 389, "end": 391, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Petroleum Ltd"}, {"source": {"segment": "content_relaxed", "context": {"start": 404, "end": 406, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Petroleum Ltd"}], "key": "petroleum ltd", "value": "Petroleum Ltd"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "method": "rearrange_description"}], "key": "description", "value": " \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n The Bishop of Orlu Catholic Diocese, Augustine Ukwuoma, on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo. \n The statue, made of marble, is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt. \n Mr. Ukwuoma performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday. \n One Obinna Onuoha, who donated the Jesus statue, had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012. \n The unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Mr. Obinna, Geoffrey, and Lolo Justina Onuoha. \n Mr. Ukwuoma, who described the statue as magnificent, commended the Mr. Onuoha family for the gift and their benevolence to the church. \n \"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us. \n \"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said. \n Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society. \n \"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity. \n Mr. Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said he constructed the statue to fulfill a vow he made to God in the year 1997. \n \"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith. \n \"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said. \n Mr. Onuoha, who did not mention the cost of the statue, added, \"It took about three years to construct and erect the Jesus De Saviour statue at Abajah.\" \n (NAN) \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 52, "end": 53, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Tallest Jesus Statue in Africa Unveiled in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tallest Jesus"}, {"source": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Tallest Jesus Statue in Africa Unveiled in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tallest Jesus"}], "key": "tallest jesus", "value": "Tallest Jesus"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 665, "end": 666, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Tallest Jesus Statue in Africa Unveiled in Imo - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}, {"source": {"segment": "content_relaxed", "context": {"start": 19, "end": 21, "input": "tokens", "text": "Imo \n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}, {"source": {"segment": "content_relaxed", "context": {"start": 552, "end": 554, "input": "tokens", "text": ") \n Copyright \n 2016 Premium Times . All rights reserved . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}], "key": "premium times", "value": "Premium Times"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}, {"source": {"segment": "content_relaxed", "context": {"start": 22, "end": 25, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}], "key": "the catholic church", "value": "The Catholic Church"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 60, "end": 65, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}], "key": "the \" jesus de greatest", "value": "the \" Jesus de Greatest"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 57, "end": 62, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Augustine Ukwuoma , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bishop of Orlu Catholic"}, {"source": {"segment": "content_relaxed", "context": {"start": 72, "end": 77, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Augustine Ukwuoma , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bishop of Orlu Catholic"}], "key": "the bishop of orlu catholic", "value": "The Bishop of Orlu Catholic"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 89, "end": 92, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Catholic Parish"}, {"source": {"segment": "content_relaxed", "context": {"start": 104, "end": 107, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Catholic Parish"}], "key": "aloysius catholic parish", "value": "Aloysius Catholic Parish"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 95, "end": 96, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo"}, {"source": {"segment": "content_relaxed", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Statue in Africa Unveiled in Imo \n Photo : \n Premium "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo"}, {"source": {"segment": "content_relaxed", "context": {"start": 110, "end": 111, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo"}], "key": "imo", "value": "Imo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 135, "end": 139, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Gregory Ochiagha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bishop Emeritus of"}, {"source": {"segment": "content_relaxed", "context": {"start": 150, "end": 154, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Gregory Ochiagha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bishop Emeritus of"}], "key": "the bishop emeritus of", "value": "the Bishop Emeritus of"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 153, "end": 156, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Parish Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 168, "end": 171, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Parish Abajah"}], "key": "aloysius parish abajah", "value": "Aloysius Parish Abajah"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 215, "end": 218, "input": "tokens", "text": "Obinna , Geoffrey , and Lolo Justina Onuoha . \n Mr . Ukwuoma "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lolo Justina Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 230, "end": 233, "input": "tokens", "text": "Obinna , Geoffrey , and Lolo Justina Onuoha . \n Mr . Ukwuoma "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lolo Justina Onuoha"}], "key": "lolo justina onuoha", "value": "Lolo Justina Onuoha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 445, "end": 446, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}, {"source": {"segment": "content_relaxed", "context": {"start": 460, "end": 461, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}], "key": "jesus", "value": "Jesus"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 520, "end": 524, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Jesus De Saviour"}, {"source": {"segment": "content_relaxed", "context": {"start": 535, "end": 539, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Jesus De Saviour"}], "key": "the jesus de saviour", "value": "the Jesus De Saviour"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 531, "end": 532, "input": "tokens", "text": "Abajah . \" \n ( NAN ) \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}, {"source": {"segment": "content_relaxed", "context": {"start": 546, "end": 547, "input": "tokens", "text": "Abajah . \" \n ( NAN ) \n Copyright \n 2016 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}], "key": "nan", "value": "NAN"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 559, "end": 560, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 561, "end": 564, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 9, "end": 12, "input": "tokens", "text": "Statue in Africa Unveiled in Imo - allAfrica . com "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo - allAfrica"}], "key": "imo - allafrica", "value": "Imo - allAfrica"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : Tallest Jesus Statue in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 26, "end": 27, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Tallest Jesus Statue in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 93, "end": 94, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_strict", "context": {"start": 526, "end": 527, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n ( NAN "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 541, "end": 542, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n ( NAN "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}], "key": "abajah", "value": "Abajah"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 120, "end": 121, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Mr . Ukwuoma "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}, {"source": {"segment": "content_relaxed", "context": {"start": 135, "end": 136, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Mr . Ukwuoma "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}], "key": "egypt", "value": "Egypt"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 125, "end": 126, "input": "tokens", "text": "Egypt . \n Mr . Ukwuoma performed the ceremony shortly after "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 140, "end": 141, "input": "tokens", "text": "Egypt . \n Mr . Ukwuoma performed the ceremony shortly after "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}], "key": "ukwuoma", "value": "Ukwuoma"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 71, "end": 72, "input": "tokens", "text": ", on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 86, "end": 87, "input": "tokens", "text": ", on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}], "key": "african", "value": "African"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 256, "end": 257, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_strict", "context": {"start": 440, "end": 441, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 271, "end": 272, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 455, "end": 456, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}], "key": "christian", "value": "Christian"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 265, "end": 266, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholics"}, {"source": {"segment": "content_relaxed", "context": {"start": 280, "end": 281, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholics"}], "key": "catholics", "value": "Catholics"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 443, "end": 444, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}, {"source": {"segment": "content_relaxed", "context": {"start": 458, "end": 459, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}], "key": "catholic", "value": "Catholic"}]}, "content_extraction": {"content_relaxed": {"text": " \n 2 January 2016 \n Nigeria: Tallest Jesus Statue in Africa Unveiled in Imo \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n The Bishop of Orlu Catholic Diocese, Augustine Ukwuoma, on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo. \n The statue, made of marble, is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt. \n Mr. Ukwuoma performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday. \n One Obinna Onuoha, who donated the Jesus statue, had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012. \n The unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Mr. Obinna, Geoffrey, and Lolo Justina Onuoha. \n Mr. Ukwuoma, who described the statue as magnificent, commended the Mr. Onuoha family for the gift and their benevolence to the church. \n \"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us. \n \"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said. \n Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society. \n \"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity. \n Mr. Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said he constructed the statue to fulfill a vow he made to God in the year 1997. \n \"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith. \n \"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said. \n Mr. Onuoha, who did not mention the cost of the statue, added, \"It took about three years to construct and erect the Jesus De Saviour statue at Abajah.\" \n (NAN) \n Copyright \n 2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "2", "january", "2016", "\n", "nigeria", ":", "tallest", "jesus", "statue", "in", "africa", "unveiled", "in", "imo", "\n", "photo", ":", "\n", "premium", "times", "\n", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "the", "bishop", "of", "orlu", "catholic", "diocese", ",", "augustine", "ukwuoma", ",", "on", "friday", "unveiled", "the", "african", "tallest", "statue", "of", "jesus", "christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "st", ".", "aloysius", "catholic", "parish", ",", "abajah", ",", "imo", ".", "\n", "the", "statue", ",", "made", "of", "marble", ",", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "ramesses", "ii", "abusimbel", "statue", "in", "egypt", ".", "\n", "mr", ".", "ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "bishop", "emeritus", "of", "orlu", "diocese", ",", "gregory", "ochiagha", ",", "and", "more", "than", "100", "priests", "at", "st", ".", "aloysius", "parish", "abajah", "compound", "on", "friday", ".", "\n", "one", "obinna", "onuoha", ",", "who", "donated", "the", "jesus", "statue", ",", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "st", ".", "aloysius", "in", "the", "year", "2012", ".", "\n", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "mr", ".", "obinna", ",", "geoffrey", ",", "and", "lolo", "justina", "onuoha", ".", "\n", "mr", ".", "ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "mr", ".", "onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\n", "\"", "this", "statue", "is", "a", "great", "symbol", "of", "christian", "faith", ",", "and", "i", "pray", "that", "for", "the", "catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "jesus", "christ", "stands", "for", "us", ".", "\n", "\"", "for", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "jesus", ",", "\"", "the", "bishop", "said", ".", "\n", "speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\n", "\"", "god", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "god", "'", "s", "peace", ",", "love", "and", "unity", ".", "\n", "mr", ".", "onuoha", ",", "the", "managing", "director", "of", "premier", "petroleum", "ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "god", "in", "the", "year", "1997", ".", "\n", "\"", "asking", "why", "i", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "i", "came", "to", "this", "world", ",", "i", "am", "a", "christian", "and", "a", "catholic", "and", "jesus", "statue", "represents", "my", "faith", ".", "\n", "\"", "i", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "i", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "\n", "mr", ".", "onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "jesus", "de", "saviour", "statue", "at", "abajah", ".", "\"", "\n", "(", "nan", ")", "\n", "copyright", "\n", "2016", "premium", "times", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "2", "January", "2016", "\n", "Nigeria", ":", "Tallest", "Jesus", "Statue", "in", "Africa", "Unveiled", "in", "Imo", "\n", "Photo", ":", "\n", "Premium", "Times", "\n", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "The", "Bishop", "of", "Orlu", "Catholic", "Diocese", ",", "Augustine", "Ukwuoma", ",", "on", "Friday", "unveiled", "the", "African", "tallest", "statue", "of", "Jesus", "Christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "St", ".", "Aloysius", "Catholic", "Parish", ",", "Abajah", ",", "Imo", ".", "\n", "The", "statue", ",", "made", "of", "marble", ",", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "Ramesses", "ii", "Abusimbel", "statue", "in", "Egypt", ".", "\n", "Mr", ".", "Ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "Bishop", "Emeritus", "of", "Orlu", "Diocese", ",", "Gregory", "Ochiagha", ",", "and", "more", "than", "100", "priests", "at", "St", ".", "Aloysius", "Parish", "Abajah", "compound", "on", "Friday", ".", "\n", "One", "Obinna", "Onuoha", ",", "who", "donated", "the", "Jesus", "statue", ",", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "St", ".", "Aloysius", "in", "the", "year", "2012", ".", "\n", "The", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "Mr", ".", "Obinna", ",", "Geoffrey", ",", "and", "Lolo", "Justina", "Onuoha", ".", "\n", "Mr", ".", "Ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "Mr", ".", "Onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\n", "\"", "This", "statue", "is", "a", "great", "symbol", "of", "Christian", "faith", ",", "and", "I", "pray", "that", "for", "the", "Catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "Jesus", "Christ", "stands", "for", "us", ".", "\n", "\"", "For", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "Jesus", ",", "\"", "the", "Bishop", "said", ".", "\n", "Speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\n", "\"", "God", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "God", "'", "s", "peace", ",", "love", "and", "unity", ".", "\n", "Mr", ".", "Onuoha", ",", "the", "Managing", "Director", "of", "Premier", "Petroleum", "Ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "God", "in", "the", "year", "1997", ".", "\n", "\"", "Asking", "why", "I", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "I", "came", "to", "this", "world", ",", "I", "am", "a", "Christian", "and", "a", "Catholic", "and", "Jesus", "statue", "represents", "my", "faith", ".", "\n", "\"", "I", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "I", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "\n", "Mr", ".", "Onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "It", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "Jesus", "De", "Saviour", "statue", "at", "Abajah", ".", "\"", "\n", "(", "NAN", ")", "\n", "Copyright", "\n", "2016", "Premium", "Times", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 695, "end": 696, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "AllAfrica", "context": {"start": 695, "end": 696, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 36, "end": 38, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Jesus Christ", "context": {"start": 36, "end": 38, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 79, "end": 81, "input": "tokens", "text": "of Orlu Catholic Diocese , Augustine Ukwuoma , on Friday unveiled the "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Augustine Ukwuoma", "context": {"start": 79, "end": 81, "input": "tokens", "text": "of Orlu Catholic Diocese , Augustine Ukwuoma , on Friday unveiled the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 90, "end": 92, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Jesus Christ", "context": {"start": 90, "end": 92, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 130, "end": 133, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Ramesses ii Abusimbel", "context": {"start": 130, "end": 133, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 157, "end": 159, "input": "tokens", "text": "Emeritus of Orlu Diocese , Gregory Ochiagha , and more than 100 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Gregory Ochiagha", "context": {"start": 157, "end": 159, "input": "tokens", "text": "Emeritus of Orlu Diocese , Gregory Ochiagha , and more than 100 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 166, "end": 167, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "St", "context": {"start": 166, "end": 167, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 177, "end": 179, "input": "tokens", "text": "on Friday . \n One Obinna Onuoha , who donated the Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Obinna Onuoha", "context": {"start": 177, "end": 179, "input": "tokens", "text": "on Friday . \n One Obinna Onuoha , who donated the Jesus "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 183, "end": 184, "input": "tokens", "text": "Onuoha , who donated the Jesus statue , had constructed 2 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Jesus", "context": {"start": 183, "end": 184, "input": "tokens", "text": "Onuoha , who donated the Jesus statue , had constructed 2 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 196, "end": 197, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "St", "context": {"start": 196, "end": 197, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 225, "end": 226, "input": "tokens", "text": "the parents of Mr . Obinna , Geoffrey , and Lolo "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Obinna", "context": {"start": 225, "end": 226, "input": "tokens", "text": "the parents of Mr . Obinna , Geoffrey , and Lolo "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 227, "end": 228, "input": "tokens", "text": "of Mr . Obinna , Geoffrey , and Lolo Justina Onuoha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Geoffrey", "context": {"start": 227, "end": 228, "input": "tokens", "text": "of Mr . Obinna , Geoffrey , and Lolo Justina Onuoha "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": "Onuoha . \n Mr . Ukwuoma , who described the statue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Ukwuoma", "context": {"start": 237, "end": 238, "input": "tokens", "text": "Onuoha . \n Mr . Ukwuoma , who described the statue "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 250, "end": 251, "input": "tokens", "text": ", commended the Mr . Onuoha family for the gift and "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Onuoha", "context": {"start": 250, "end": 251, "input": "tokens", "text": ", commended the Mr . Onuoha family for the gift and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 292, "end": 294, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Jesus Christ", "context": {"start": 292, "end": 294, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 318, "end": 319, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Bishop", "context": {"start": 318, "end": 319, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 397, "end": 398, "input": "tokens", "text": "unity . \n Mr . Onuoha , the Managing Director of "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Onuoha", "context": {"start": 397, "end": 398, "input": "tokens", "text": "unity . \n Mr . Onuoha , the Managing Director of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 404, "end": 406, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Petroleum Ltd", "context": {"start": 404, "end": 406, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 511, "end": 512, "input": "tokens", "text": "said . \n Mr . Onuoha , who did not mention "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Onuoha", "context": {"start": 511, "end": 512, "input": "tokens", "text": "said . \n Mr . Onuoha , who did not mention "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Tallest Jesus Statue in Africa Unveiled in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Tallest Jesus", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Tallest Jesus Statue in Africa Unveiled in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 52, "end": 53, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Africa", "context": {"start": 52, "end": 53, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 665, "end": 666, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "AllAfrica", "context": {"start": 665, "end": 666, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Statue in Africa Unveiled in Imo \n Photo : \n Premium "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Imo", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Statue in Africa Unveiled in Imo \n Photo : \n Premium "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 19, "end": 21, "input": "tokens", "text": "Imo \n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Premium Times", "context": {"start": 19, "end": 21, "input": "tokens", "text": "Imo \n Photo : \n Premium Times \n The Catholic Church in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 22, "end": 25, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "The Catholic Church", "context": {"start": 22, "end": 25, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 60, "end": 65, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "the \" Jesus de Greatest", "context": {"start": 60, "end": 65, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 72, "end": 77, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Augustine Ukwuoma , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "The Bishop of Orlu Catholic", "context": {"start": 72, "end": 77, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Augustine Ukwuoma , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 104, "end": 107, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Aloysius Catholic Parish", "context": {"start": 104, "end": 107, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 110, "end": 111, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Imo", "context": {"start": 110, "end": 111, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 150, "end": 154, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Gregory Ochiagha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "the Bishop Emeritus of", "context": {"start": 150, "end": 154, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Gregory Ochiagha "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 168, "end": 171, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Aloysius Parish Abajah", "context": {"start": 168, "end": 171, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 230, "end": 233, "input": "tokens", "text": "Obinna , Geoffrey , and Lolo Justina Onuoha . \n Mr . Ukwuoma "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Lolo Justina Onuoha", "context": {"start": 230, "end": 233, "input": "tokens", "text": "Obinna , Geoffrey , and Lolo Justina Onuoha . \n Mr . Ukwuoma "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 460, "end": 461, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Jesus", "context": {"start": 460, "end": 461, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 535, "end": 539, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "the Jesus De Saviour", "context": {"start": 535, "end": 539, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 546, "end": 547, "input": "tokens", "text": "Abajah . \" \n ( NAN ) \n Copyright \n 2016 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "NAN", "context": {"start": 546, "end": 547, "input": "tokens", "text": "Abajah . \" \n ( NAN ) \n Copyright \n 2016 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 552, "end": 554, "input": "tokens", "text": ") \n Copyright \n 2016 Premium Times . All rights reserved . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Premium Times", "context": {"start": 552, "end": 554, "input": "tokens", "text": ") \n Copyright \n 2016 Premium Times . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 559, "end": 560, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Distributed", "context": {"start": 559, "end": 560, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 561, "end": 564, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "AllAfrica Global Media", "context": {"start": 561, "end": 564, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : Tallest Jesus Statue in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : Tallest Jesus Statue in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 26, "end": 27, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Nigeria", "context": {"start": 26, "end": 27, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Abajah", "context": {"start": 108, "end": 109, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 135, "end": 136, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Mr . Ukwuoma "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Egypt", "context": {"start": 135, "end": 136, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Mr . Ukwuoma "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 140, "end": 141, "input": "tokens", "text": "Egypt . \n Mr . Ukwuoma performed the ceremony shortly after "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Ukwuoma", "context": {"start": 140, "end": 141, "input": "tokens", "text": "Egypt . \n Mr . Ukwuoma performed the ceremony shortly after "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 541, "end": 542, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n ( NAN "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Abajah", "context": {"start": 541, "end": 542, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n ( NAN "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 86, "end": 87, "input": "tokens", "text": ", on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "African", "context": {"start": 86, "end": 87, "input": "tokens", "text": ", on Friday unveiled the African tallest statue of Jesus Christ "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 271, "end": 272, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Christian", "context": {"start": 271, "end": 272, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 280, "end": 281, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Catholics", "context": {"start": 280, "end": 281, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 455, "end": 456, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Christian", "context": {"start": 455, "end": 456, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 458, "end": 459, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Catholic", "context": {"start": 458, "end": 459, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020066.html"}, "content_strict": {"text": " \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n The Bishop of Orlu Catholic Diocese, Augustine Ukwuoma, on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo. \n The statue, made of marble, is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt. \n Mr. Ukwuoma performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday. \n One Obinna Onuoha, who donated the Jesus statue, had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012. \n The unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Mr. Obinna, Geoffrey, and Lolo Justina Onuoha. \n Mr. Ukwuoma, who described the statue as magnificent, commended the Mr. Onuoha family for the gift and their benevolence to the church. \n \"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us. \n \"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said. \n Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society. \n \"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity. \n Mr. Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said he constructed the statue to fulfill a vow he made to God in the year 1997. \n \"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith. \n \"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said. \n Mr. Onuoha, who did not mention the cost of the statue, added, \"It took about three years to construct and erect the Jesus De Saviour statue at Abajah.\" \n (NAN) \n ", "simple_tokens": ["\n", "photo", ":", "\n", "premium", "times", "\n", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "the", "bishop", "of", "orlu", "catholic", "diocese", ",", "augustine", "ukwuoma", ",", "on", "friday", "unveiled", "the", "african", "tallest", "statue", "of", "jesus", "christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "st", ".", "aloysius", "catholic", "parish", ",", "abajah", ",", "imo", ".", "\n", "the", "statue", ",", "made", "of", "marble", ",", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "ramesses", "ii", "abusimbel", "statue", "in", "egypt", ".", "\n", "mr", ".", "ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "bishop", "emeritus", "of", "orlu", "diocese", ",", "gregory", "ochiagha", ",", "and", "more", "than", "100", "priests", "at", "st", ".", "aloysius", "parish", "abajah", "compound", "on", "friday", ".", "\n", "one", "obinna", "onuoha", ",", "who", "donated", "the", "jesus", "statue", ",", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "st", ".", "aloysius", "in", "the", "year", "2012", ".", "\n", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "mr", ".", "obinna", ",", "geoffrey", ",", "and", "lolo", "justina", "onuoha", ".", "\n", "mr", ".", "ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "mr", ".", "onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\n", "\"", "this", "statue", "is", "a", "great", "symbol", "of", "christian", "faith", ",", "and", "i", "pray", "that", "for", "the", "catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "jesus", "christ", "stands", "for", "us", ".", "\n", "\"", "for", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "jesus", ",", "\"", "the", "bishop", "said", ".", "\n", "speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\n", "\"", "god", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "god", "'", "s", "peace", ",", "love", "and", "unity", ".", "\n", "mr", ".", "onuoha", ",", "the", "managing", "director", "of", "premier", "petroleum", "ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "god", "in", "the", "year", "1997", ".", "\n", "\"", "asking", "why", "i", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "i", "came", "to", "this", "world", ",", "i", "am", "a", "christian", "and", "a", "catholic", "and", "jesus", "statue", "represents", "my", "faith", ".", "\n", "\"", "i", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "i", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "\n", "mr", ".", "onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "jesus", "de", "saviour", "statue", "at", "abajah", ".", "\"", "\n", "(", "nan", ")", "\n"], "simple_tokens_original_case": ["\n", "Photo", ":", "\n", "Premium", "Times", "\n", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "The", "Bishop", "of", "Orlu", "Catholic", "Diocese", ",", "Augustine", "Ukwuoma", ",", "on", "Friday", "unveiled", "the", "African", "tallest", "statue", "of", "Jesus", "Christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "St", ".", "Aloysius", "Catholic", "Parish", ",", "Abajah", ",", "Imo", ".", "\n", "The", "statue", ",", "made", "of", "marble", ",", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "Ramesses", "ii", "Abusimbel", "statue", "in", "Egypt", ".", "\n", "Mr", ".", "Ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "Bishop", "Emeritus", "of", "Orlu", "Diocese", ",", "Gregory", "Ochiagha", ",", "and", "more", "than", "100", "priests", "at", "St", ".", "Aloysius", "Parish", "Abajah", "compound", "on", "Friday", ".", "\n", "One", "Obinna", "Onuoha", ",", "who", "donated", "the", "Jesus", "statue", ",", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "St", ".", "Aloysius", "in", "the", "year", "2012", ".", "\n", "The", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "Mr", ".", "Obinna", ",", "Geoffrey", ",", "and", "Lolo", "Justina", "Onuoha", ".", "\n", "Mr", ".", "Ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "Mr", ".", "Onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\n", "\"", "This", "statue", "is", "a", "great", "symbol", "of", "Christian", "faith", ",", "and", "I", "pray", "that", "for", "the", "Catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "Jesus", "Christ", "stands", "for", "us", ".", "\n", "\"", "For", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "Jesus", ",", "\"", "the", "Bishop", "said", ".", "\n", "Speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\n", "\"", "God", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "God", "'", "s", "peace", ",", "love", "and", "unity", ".", "\n", "Mr", ".", "Onuoha", ",", "the", "Managing", "Director", "of", "Premier", "Petroleum", "Ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "God", "in", "the", "year", "1997", ".", "\n", "\"", "Asking", "why", "I", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "I", "came", "to", "this", "world", ",", "I", "am", "a", "Christian", "and", "a", "Catholic", "and", "Jesus", "statue", "represents", "my", "faith", ".", "\n", "\"", "I", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "I", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "\n", "Mr", ".", "Onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "It", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "Jesus", "De", "Saviour", "statue", "at", "Abajah", ".", "\"", "\n", "(", "NAN", ")", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Premium Times", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}}, {"origin": {"segment": "content_strict", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "The Catholic Church", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}}, {"origin": {"segment": "content_strict", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "the \" Jesus de Greatest", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}}, {"origin": {"segment": "content_strict", "context": {"start": 57, "end": 62, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Augustine Ukwuoma , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "The Bishop of Orlu Catholic", "context": {"start": 57, "end": 62, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Augustine Ukwuoma , "}}, {"origin": {"segment": "content_strict", "context": {"start": 89, "end": 92, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Aloysius Catholic Parish", "context": {"start": 89, "end": 92, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}}, {"origin": {"segment": "content_strict", "context": {"start": 95, "end": 96, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Imo", "context": {"start": 95, "end": 96, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue , "}}, {"origin": {"segment": "content_strict", "context": {"start": 135, "end": 139, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Gregory Ochiagha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "the Bishop Emeritus of", "context": {"start": 135, "end": 139, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Gregory Ochiagha "}}, {"origin": {"segment": "content_strict", "context": {"start": 153, "end": 156, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Aloysius Parish Abajah", "context": {"start": 153, "end": 156, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 215, "end": 218, "input": "tokens", "text": "Obinna , Geoffrey , and Lolo Justina Onuoha . \n Mr . Ukwuoma "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Lolo Justina Onuoha", "context": {"start": 215, "end": 218, "input": "tokens", "text": "Obinna , Geoffrey , and Lolo Justina Onuoha . \n Mr . Ukwuoma "}}, {"origin": {"segment": "content_strict", "context": {"start": 445, "end": 446, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Jesus", "context": {"start": 445, "end": 446, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}}, {"origin": {"segment": "content_strict", "context": {"start": 520, "end": 524, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "the Jesus De Saviour", "context": {"start": 520, "end": 524, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}}, {"origin": {"segment": "content_strict", "context": {"start": 531, "end": 532, "input": "tokens", "text": "Abajah . \" \n ( NAN ) \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "NAN", "context": {"start": 531, "end": 532, "input": "tokens", "text": "Abajah . \" \n ( NAN ) \n "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Nigeria", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}}, {"origin": {"segment": "content_strict", "context": {"start": 93, "end": 94, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Abajah", "context": {"start": 93, "end": 94, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}}, {"origin": {"segment": "content_strict", "context": {"start": 120, "end": 121, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Mr . Ukwuoma "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Egypt", "context": {"start": 120, "end": 121, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Mr . Ukwuoma "}}, {"origin": {"segment": "content_strict", "context": {"start": 125, "end": 126, "input": "tokens", "text": "Egypt . \n Mr . Ukwuoma performed the ceremony shortly after "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Ukwuoma", "context": {"start": 125, "end": 126, "input": "tokens", "text": "Egypt . \n Mr . Ukwuoma performed the ceremony shortly after "}}, {"origin": {"segment": "content_strict", "context": {"start": 526, "end": 527, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n ( NAN "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Abajah", "context": {"start": 526, "end": 527, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n ( NAN "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Jesus Christ", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_strict", "context": {"start": 64, "end": 66, "input": "tokens", "text": "of Orlu Catholic Diocese , Augustine Ukwuoma , on Friday unveiled the "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Augustine Ukwuoma", "context": {"start": 64, "end": 66, "input": "tokens", "text": "of Orlu Catholic Diocese , Augustine Ukwuoma , on Friday unveiled the "}}, {"origin": {"segment": "content_strict", "context": {"start": 75, "end": 77, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Jesus Christ", "context": {"start": 75, "end": 77, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}}, {"origin": {"segment": "content_strict", "context": {"start": 115, "end": 118, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Ramesses ii Abusimbel", "context": {"start": 115, "end": 118, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 142, "end": 144, "input": "tokens", "text": "Emeritus of Orlu Diocese , Gregory Ochiagha , and more than 100 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Gregory Ochiagha", "context": {"start": 142, "end": 144, "input": "tokens", "text": "Emeritus of Orlu Diocese , Gregory Ochiagha , and more than 100 "}}, {"origin": {"segment": "content_strict", "context": {"start": 151, "end": 152, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "St", "context": {"start": 151, "end": 152, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}}, {"origin": {"segment": "content_strict", "context": {"start": 162, "end": 164, "input": "tokens", "text": "on Friday . \n One Obinna Onuoha , who donated the Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Obinna Onuoha", "context": {"start": 162, "end": 164, "input": "tokens", "text": "on Friday . \n One Obinna Onuoha , who donated the Jesus "}}, {"origin": {"segment": "content_strict", "context": {"start": 168, "end": 169, "input": "tokens", "text": "Onuoha , who donated the Jesus statue , had constructed 2 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Jesus", "context": {"start": 168, "end": 169, "input": "tokens", "text": "Onuoha , who donated the Jesus statue , had constructed 2 "}}, {"origin": {"segment": "content_strict", "context": {"start": 181, "end": 182, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "St", "context": {"start": 181, "end": 182, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}}, {"origin": {"segment": "content_strict", "context": {"start": 210, "end": 211, "input": "tokens", "text": "the parents of Mr . Obinna , Geoffrey , and Lolo "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Obinna", "context": {"start": 210, "end": 211, "input": "tokens", "text": "the parents of Mr . Obinna , Geoffrey , and Lolo "}}, {"origin": {"segment": "content_strict", "context": {"start": 212, "end": 213, "input": "tokens", "text": "of Mr . Obinna , Geoffrey , and Lolo Justina Onuoha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Geoffrey", "context": {"start": 212, "end": 213, "input": "tokens", "text": "of Mr . Obinna , Geoffrey , and Lolo Justina Onuoha "}}, {"origin": {"segment": "content_strict", "context": {"start": 222, "end": 223, "input": "tokens", "text": "Onuoha . \n Mr . Ukwuoma , who described the statue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Ukwuoma", "context": {"start": 222, "end": 223, "input": "tokens", "text": "Onuoha . \n Mr . Ukwuoma , who described the statue "}}, {"origin": {"segment": "content_strict", "context": {"start": 235, "end": 236, "input": "tokens", "text": ", commended the Mr . Onuoha family for the gift and "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Onuoha", "context": {"start": 235, "end": 236, "input": "tokens", "text": ", commended the Mr . Onuoha family for the gift and "}}, {"origin": {"segment": "content_strict", "context": {"start": 277, "end": 279, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Jesus Christ", "context": {"start": 277, "end": 279, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 303, "end": 304, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Bishop", "context": {"start": 303, "end": 304, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}}, {"origin": {"segment": "content_strict", "context": {"start": 382, "end": 383, "input": "tokens", "text": "unity . \n Mr . Onuoha , the Managing Director of "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Onuoha", "context": {"start": 382, "end": 383, "input": "tokens", "text": "unity . \n Mr . Onuoha , the Managing Director of "}}, {"origin": {"segment": "content_strict", "context": {"start": 389, "end": 391, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Petroleum Ltd", "context": {"start": 389, "end": 391, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}}, {"origin": {"segment": "content_strict", "context": {"start": 496, "end": 497, "input": "tokens", "text": "said . \n Mr . Onuoha , who did not mention "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Onuoha", "context": {"start": 496, "end": 497, "input": "tokens", "text": "said . \n Mr . Onuoha , who did not mention "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Africa", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 71, "end": 72, "input": "tokens", "text": ", on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "African", "context": {"start": 71, "end": 72, "input": "tokens", "text": ", on Friday unveiled the African tallest statue of Jesus Christ "}}, {"origin": {"segment": "content_strict", "context": {"start": 256, "end": 257, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Christian", "context": {"start": 256, "end": 257, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}}, {"origin": {"segment": "content_strict", "context": {"start": 265, "end": 266, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Catholics", "context": {"start": 265, "end": 266, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}}, {"origin": {"segment": "content_strict", "context": {"start": 440, "end": 441, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Christian", "context": {"start": 440, "end": 441, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}}, {"origin": {"segment": "content_strict", "context": {"start": 443, "end": 444, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Catholic", "context": {"start": 443, "end": 444, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}}]}}}}, "title": {"text": " Nigeria: Tallest Jesus Statue in Africa Unveiled in Imo - allAfrica.com ", "simple_tokens": ["nigeria", ":", "tallest", "jesus", "statue", "in", "africa", "unveiled", "in", "imo", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Tallest", "Jesus", "Statue", "in", "Africa", "Unveiled", "in", "Imo", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Tallest Jesus Statue in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Tallest Jesus Statue in "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 9, "end": 12, "input": "tokens", "text": "Statue in Africa Unveiled in Imo - allAfrica . com "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Imo - allAfrica", "context": {"start": 9, "end": 12, "input": "tokens", "text": "Statue in Africa Unveiled in Imo - allAfrica . com "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Tallest Jesus Statue in Africa Unveiled in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "value": "Tallest Jesus", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Tallest Jesus Statue in Africa Unveiled in "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:08.666090", "@etk_process_time": 0.5345089435577393, "@etk_start_time": "2017-11-15T01:34:08.131581"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Tallest Jesus Statue in Africa Unveiled in Imo - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Nigeria: Tallest Jesus Statue in Africa Unveiled in Imo\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n \n \n Photo:\n \n Premium Times\n \n \n
\n
\n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.\n
\n
\n

\n The Bishop of Orlu Catholic Diocese, Augustine Ukwuoma, on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo.\n

\n

\n The statue, made of marble, is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt.\n

\n

\n Mr. Ukwuoma performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday.\n

\n

\n One Obinna Onuoha, who donated the Jesus statue, had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n The unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Mr. Obinna, Geoffrey, and Lolo Justina Onuoha.\n

\n

\n Mr. Ukwuoma, who described the statue as magnificent, commended the Mr. Onuoha family for the gift and their benevolence to the church.\n

\n

\n \"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us.\n

\n

\n \"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said.\n

\n
\n
\n
\n
\n

\n Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society.\n

\n

\n \"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n Mr. Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said he constructed the statue to fulfill a vow he made to God in the year 1997.\n

\n

\n \"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith.\n

\n

\n \"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said.\n

\n

\n Mr. Onuoha, who did not mention the cost of the statue, added, \"It took about three years to construct and erect the Jesus De Saviour statue at Abajah.\"\n

\n

\n \n (NAN)\n \n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774", "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"} -{"url": "http://www.ce_news_article.org/2016/01/02/201601020073.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 666, "end": 667, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 69, "end": 71, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 229, "end": 231, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 39, "end": 41, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 87, "end": 89, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 247, "end": 249, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}], "key": "jesus christ", "value": "Jesus Christ"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 149, "end": 151, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 167, "end": 169, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}], "key": "obinna onuoha", "value": "Obinna Onuoha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 195, "end": 197, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Tochukwu"}, {"source": {"segment": "content_relaxed", "context": {"start": 213, "end": 215, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Tochukwu"}], "key": "augustine tochukwu", "value": "Augustine Tochukwu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 253, "end": 254, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 432, "end": 433, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 271, "end": 272, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 450, "end": 451, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}], "key": "onuoha", "value": "Onuoha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 395, "end": 397, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 413, "end": 415, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "method": "rearrange_description"}], "key": "description", "value": " \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n Nigeria, yesterday, unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. \n Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes. \n More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in Imo State, Southeastern Nigeria. \n It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012. \n In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike. \n \"It will remind them of the importance of Jesus Christ,\" said Okwuoma. \n The cost of the statue has not been revealed. \n Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\" \n The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary. \n Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension. \n More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north. \n And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won. \n \"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\" \n He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago. \n And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 85, "end": 86, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 304, "end": 305, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 55, "end": 56, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 103, "end": 104, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 322, "end": 323, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 636, "end": 637, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Nine-Metre Tall Statue of Jesus Christ Unveiled in Imo - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}, {"source": {"segment": "content_relaxed", "context": {"start": 22, "end": 24, "input": "tokens", "text": "Imo \n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}], "key": "premium times", "value": "Premium Times"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}, {"source": {"segment": "content_relaxed", "context": {"start": 25, "end": 28, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}], "key": "the catholic church", "value": "The Catholic Church"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_strict", "context": {"start": 94, "end": 99, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 63, "end": 68, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 112, "end": 117, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}], "key": "the \" jesus de greatest", "value": "the \" Jesus de Greatest"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 141, "end": 143, "input": "tokens", "text": "Abajah in Imo State , Southeastern Nigeria . \n It was commissioned "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southeastern Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 159, "end": 161, "input": "tokens", "text": "Abajah in Imo State , Southeastern Nigeria . \n It was commissioned "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southeastern Nigeria"}], "key": "southeastern nigeria", "value": "Southeastern Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 255, "end": 256, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AFP"}, {"source": {"segment": "content_relaxed", "context": {"start": 273, "end": 274, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AFP"}], "key": "afp", "value": "AFP"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 349, "end": 351, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 367, "end": 369, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 17, "end": 20, "input": "tokens", "text": "of Jesus Christ Unveiled in Imo \n Photo : \n Premium Times \n "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo \n Photo"}], "key": "imo \n photo", "value": "Imo \n Photo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 530, "end": 531, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 532, "end": 535, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 12, "end": 15, "input": "tokens", "text": "of Jesus Christ Unveiled in Imo - allAfrica . com "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo - allAfrica"}], "key": "imo - allafrica", "value": "Imo - allAfrica"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 57, "end": 58, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria , yesterday , unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 302, "end": 303, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 370, "end": 371, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 382, "end": 383, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : Nine - Metre Tall "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 29, "end": 30, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 75, "end": 76, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria , yesterday , unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 320, "end": 321, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 388, "end": 389, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 400, "end": 401, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Nine - Metre Tall "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 136, "end": 137, "input": "tokens", "text": "unveiling in the village of Abajah in Imo State , Southeastern "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 154, "end": 155, "input": "tokens", "text": "unveiling in the village of Abajah in Imo State , Southeastern "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}], "key": "abajah", "value": "Abajah"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 138, "end": 140, "input": "tokens", "text": "the village of Abajah in Imo State , Southeastern Nigeria . \n "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo State"}, {"source": {"segment": "content_relaxed", "context": {"start": 156, "end": 158, "input": "tokens", "text": "the village of Abajah in Imo State , Southeastern Nigeria . \n "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo State"}], "key": "imo state", "value": "Imo State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 234, "end": 235, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 252, "end": 253, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okwuoma"}], "key": "okwuoma", "value": "Okwuoma"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 158, "end": 159, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chinese"}, {"source": {"segment": "content_relaxed", "context": {"start": 176, "end": 177, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chinese"}], "key": "chinese", "value": "Chinese"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 211, "end": 212, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}, {"source": {"segment": "content_relaxed", "context": {"start": 229, "end": 230, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}], "key": "catholic", "value": "Catholic"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 321, "end": 322, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 339, "end": 340, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}], "key": "christian", "value": "Christian"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 326, "end": 327, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 373, "end": 374, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 344, "end": 345, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 391, "end": 392, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 347, "end": 348, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_strict", "context": {"start": 411, "end": 412, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_relaxed", "context": {"start": 365, "end": 366, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_relaxed", "context": {"start": 429, "end": 430, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}], "key": "islamist", "value": "Islamist"}]}, "content_extraction": {"content_relaxed": {"text": " \n 2 January 2016 \n Nigeria: Nine-Metre Tall Statue of Jesus Christ Unveiled in Imo \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n Nigeria, yesterday, unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. \n Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes. \n More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in Imo State, Southeastern Nigeria. \n It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012. \n In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike. \n \"It will remind them of the importance of Jesus Christ,\" said Okwuoma. \n The cost of the statue has not been revealed. \n Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\" \n The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary. \n Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension. \n More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north. \n And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won. \n \"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\" \n He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago. \n And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived. \n Copyright \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "2", "january", "2016", "\n", "nigeria", ":", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "unveiled", "in", "imo", "\n", "photo", ":", "\n", "premium", "times", "\n", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "nigeria", ",", "yesterday", ",", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "\n", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "\n", "more", "than", "100", "priests", "and", "hundreds", "of", "catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "abajah", "in", "imo", "state", ",", "southeastern", "nigeria", ".", "\n", "it", "was", "commissioned", "by", "obinna", "onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "\n", "in", "his", "homily", "at", "a", "mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "augustine", "tochukwu", "okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\n", "\"", "it", "will", "remind", "them", "of", "the", "importance", "of", "jesus", "christ", ",", "\"", "said", "okwuoma", ".", "\n", "the", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "\n", "earlier", "in", "the", "week", ",", "onuoha", "told", "afp", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "jesus", "on", "the", "continent", ".", "\"", "\n", "the", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "\n", "nigeria", ",", "africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "christian", "south", "and", "a", "poor", "muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "\n", "more", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "islamist", "group", "boko", "haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "nigeria", "'", "s", "muslim", "-", "majority", "north", ".", "\n", "and", "even", "as", "nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "boko", "haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\n", "\"", "we", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "onuoha", "said", ".", "\"", "we", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "\n", "he", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "\n", "and", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "\n", "copyright", "\n", "2016", "this", "day", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "2", "January", "2016", "\n", "Nigeria", ":", "Nine", "-", "Metre", "Tall", "Statue", "of", "Jesus", "Christ", "Unveiled", "in", "Imo", "\n", "Photo", ":", "\n", "Premium", "Times", "\n", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "Nigeria", ",", "yesterday", ",", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "\n", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "\n", "More", "than", "100", "priests", "and", "hundreds", "of", "Catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "Abajah", "in", "Imo", "State", ",", "Southeastern", "Nigeria", ".", "\n", "It", "was", "commissioned", "by", "Obinna", "Onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "Chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "\n", "In", "his", "homily", "at", "a", "Mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "Augustine", "Tochukwu", "Okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "Catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\n", "\"", "It", "will", "remind", "them", "of", "the", "importance", "of", "Jesus", "Christ", ",", "\"", "said", "Okwuoma", ".", "\n", "The", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "\n", "Earlier", "in", "the", "week", ",", "Onuoha", "told", "AFP", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "Jesus", "on", "the", "continent", ".", "\"", "\n", "The", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "\n", "Nigeria", ",", "Africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "Christian", "south", "and", "a", "poor", "Muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "\n", "More", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "Islamist", "group", "Boko", "Haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "Nigeria", "'", "s", "Muslim", "-", "majority", "north", ".", "\n", "And", "even", "as", "Nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "Boko", "Haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "Islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\n", "\"", "We", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "Onuoha", "said", ".", "\"", "We", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "\n", "He", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "Jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "\n", "And", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "\n", "Copyright", "\n", "2016", "This", "Day", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 666, "end": 667, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "AllAfrica", "context": {"start": 666, "end": 667, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 39, "end": 41, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Jesus Christ", "context": {"start": 39, "end": 41, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 87, "end": 89, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Jesus Christ", "context": {"start": 87, "end": 89, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 167, "end": 169, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Obinna Onuoha", "context": {"start": 167, "end": 169, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 213, "end": 215, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Augustine Tochukwu", "context": {"start": 213, "end": 215, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 247, "end": 249, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Jesus Christ", "context": {"start": 247, "end": 249, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 271, "end": 272, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Onuoha", "context": {"start": 271, "end": 272, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 413, "end": 415, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Boko Haram", "context": {"start": 413, "end": 415, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 450, "end": 451, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Onuoha", "context": {"start": 450, "end": 451, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 55, "end": 56, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Africa", "context": {"start": 55, "end": 56, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 103, "end": 104, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Africa", "context": {"start": 103, "end": 104, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 322, "end": 323, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Africa", "context": {"start": 322, "end": 323, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 636, "end": 637, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "AllAfrica", "context": {"start": 636, "end": 637, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 17, "end": 20, "input": "tokens", "text": "of Jesus Christ Unveiled in Imo \n Photo : \n Premium Times \n "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Imo \n Photo", "context": {"start": 17, "end": 20, "input": "tokens", "text": "of Jesus Christ Unveiled in Imo \n Photo : \n Premium Times \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 22, "end": 24, "input": "tokens", "text": "Imo \n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Premium Times", "context": {"start": 22, "end": 24, "input": "tokens", "text": "Imo \n Photo : \n Premium Times \n The Catholic Church in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 25, "end": 28, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "The Catholic Church", "context": {"start": 25, "end": 28, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 63, "end": 68, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "the \" Jesus de Greatest", "context": {"start": 63, "end": 68, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 112, "end": 117, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "the \" Jesus de Greatest", "context": {"start": 112, "end": 117, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 159, "end": 161, "input": "tokens", "text": "Abajah in Imo State , Southeastern Nigeria . \n It was commissioned "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Southeastern Nigeria", "context": {"start": 159, "end": 161, "input": "tokens", "text": "Abajah in Imo State , Southeastern Nigeria . \n It was commissioned "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 273, "end": 274, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "AFP", "context": {"start": 273, "end": 274, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 367, "end": 369, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Boko Haram", "context": {"start": 367, "end": 369, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 530, "end": 531, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Distributed", "context": {"start": 530, "end": 531, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 532, "end": 535, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "AllAfrica Global Media", "context": {"start": 532, "end": 535, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : Nine - Metre Tall "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : Nine - Metre Tall "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 29, "end": 30, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 29, "end": 30, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 75, "end": 76, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria , yesterday , unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 75, "end": 76, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria , yesterday , unveiled a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 154, "end": 155, "input": "tokens", "text": "unveiling in the village of Abajah in Imo State , Southeastern "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Abajah", "context": {"start": 154, "end": 155, "input": "tokens", "text": "unveiling in the village of Abajah in Imo State , Southeastern "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 156, "end": 158, "input": "tokens", "text": "the village of Abajah in Imo State , Southeastern Nigeria . \n "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Imo State", "context": {"start": 156, "end": 158, "input": "tokens", "text": "the village of Abajah in Imo State , Southeastern Nigeria . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 252, "end": 253, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Okwuoma", "context": {"start": 252, "end": 253, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 320, "end": 321, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 320, "end": 321, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 388, "end": 389, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 388, "end": 389, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 400, "end": 401, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 400, "end": 401, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 176, "end": 177, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Chinese", "context": {"start": 176, "end": 177, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 229, "end": 230, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Catholic", "context": {"start": 229, "end": 230, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 339, "end": 340, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Christian", "context": {"start": 339, "end": 340, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 344, "end": 345, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Muslim", "context": {"start": 344, "end": 345, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 365, "end": 366, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Islamist", "context": {"start": 365, "end": 366, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 391, "end": 392, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Muslim", "context": {"start": 391, "end": 392, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 429, "end": 430, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Islamist", "context": {"start": 429, "end": 430, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020073.html"}, "content_strict": {"text": " \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n Nigeria, yesterday, unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. \n Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes. \n More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in Imo State, Southeastern Nigeria. \n It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012. \n In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike. \n \"It will remind them of the importance of Jesus Christ,\" said Okwuoma. \n The cost of the statue has not been revealed. \n Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\" \n The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary. \n Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension. \n More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north. \n And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won. \n \"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\" \n He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago. \n And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived. \n ", "simple_tokens": ["\n", "photo", ":", "\n", "premium", "times", "\n", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "nigeria", ",", "yesterday", ",", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "\n", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "\n", "more", "than", "100", "priests", "and", "hundreds", "of", "catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "abajah", "in", "imo", "state", ",", "southeastern", "nigeria", ".", "\n", "it", "was", "commissioned", "by", "obinna", "onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "\n", "in", "his", "homily", "at", "a", "mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "augustine", "tochukwu", "okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\n", "\"", "it", "will", "remind", "them", "of", "the", "importance", "of", "jesus", "christ", ",", "\"", "said", "okwuoma", ".", "\n", "the", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "\n", "earlier", "in", "the", "week", ",", "onuoha", "told", "afp", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "jesus", "on", "the", "continent", ".", "\"", "\n", "the", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "\n", "nigeria", ",", "africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "christian", "south", "and", "a", "poor", "muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "\n", "more", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "islamist", "group", "boko", "haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "nigeria", "'", "s", "muslim", "-", "majority", "north", ".", "\n", "and", "even", "as", "nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "boko", "haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\n", "\"", "we", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "onuoha", "said", ".", "\"", "we", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "\n", "he", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "\n", "and", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "\n"], "simple_tokens_original_case": ["\n", "Photo", ":", "\n", "Premium", "Times", "\n", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "Nigeria", ",", "yesterday", ",", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "\n", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "\n", "More", "than", "100", "priests", "and", "hundreds", "of", "Catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "Abajah", "in", "Imo", "State", ",", "Southeastern", "Nigeria", ".", "\n", "It", "was", "commissioned", "by", "Obinna", "Onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "Chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "\n", "In", "his", "homily", "at", "a", "Mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "Augustine", "Tochukwu", "Okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "Catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\n", "\"", "It", "will", "remind", "them", "of", "the", "importance", "of", "Jesus", "Christ", ",", "\"", "said", "Okwuoma", ".", "\n", "The", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "\n", "Earlier", "in", "the", "week", ",", "Onuoha", "told", "AFP", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "Jesus", "on", "the", "continent", ".", "\"", "\n", "The", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "\n", "Nigeria", ",", "Africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "Christian", "south", "and", "a", "poor", "Muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "\n", "More", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "Islamist", "group", "Boko", "Haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "Nigeria", "'", "s", "Muslim", "-", "majority", "north", ".", "\n", "And", "even", "as", "Nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "Boko", "Haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "Islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\n", "\"", "We", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "Onuoha", "said", ".", "\"", "We", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "\n", "He", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "Jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "\n", "And", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Premium Times", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}}, {"origin": {"segment": "content_strict", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "The Catholic Church", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}}, {"origin": {"segment": "content_strict", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "the \" Jesus de Greatest", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}}, {"origin": {"segment": "content_strict", "context": {"start": 94, "end": 99, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "the \" Jesus de Greatest", "context": {"start": 94, "end": 99, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}}, {"origin": {"segment": "content_strict", "context": {"start": 141, "end": 143, "input": "tokens", "text": "Abajah in Imo State , Southeastern Nigeria . \n It was commissioned "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Southeastern Nigeria", "context": {"start": 141, "end": 143, "input": "tokens", "text": "Abajah in Imo State , Southeastern Nigeria . \n It was commissioned "}}, {"origin": {"segment": "content_strict", "context": {"start": 255, "end": 256, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "AFP", "context": {"start": 255, "end": 256, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}}, {"origin": {"segment": "content_strict", "context": {"start": 349, "end": 351, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Boko Haram", "context": {"start": 349, "end": 351, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}}, {"origin": {"segment": "content_strict", "context": {"start": 57, "end": 58, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria , yesterday , unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 57, "end": 58, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria , yesterday , unveiled a "}}, {"origin": {"segment": "content_strict", "context": {"start": 136, "end": 137, "input": "tokens", "text": "unveiling in the village of Abajah in Imo State , Southeastern "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Abajah", "context": {"start": 136, "end": 137, "input": "tokens", "text": "unveiling in the village of Abajah in Imo State , Southeastern "}}, {"origin": {"segment": "content_strict", "context": {"start": 138, "end": 140, "input": "tokens", "text": "the village of Abajah in Imo State , Southeastern Nigeria . \n "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Imo State", "context": {"start": 138, "end": 140, "input": "tokens", "text": "the village of Abajah in Imo State , Southeastern Nigeria . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 234, "end": 235, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Okwuoma", "context": {"start": 234, "end": 235, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}}, {"origin": {"segment": "content_strict", "context": {"start": 302, "end": 303, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 302, "end": 303, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}}, {"origin": {"segment": "content_strict", "context": {"start": 370, "end": 371, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 370, "end": 371, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}}, {"origin": {"segment": "content_strict", "context": {"start": 382, "end": 383, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 382, "end": 383, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Jesus Christ", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_strict", "context": {"start": 69, "end": 71, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Jesus Christ", "context": {"start": 69, "end": 71, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_strict", "context": {"start": 149, "end": 151, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Obinna Onuoha", "context": {"start": 149, "end": 151, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}}, {"origin": {"segment": "content_strict", "context": {"start": 195, "end": 197, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Augustine Tochukwu", "context": {"start": 195, "end": 197, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}}, {"origin": {"segment": "content_strict", "context": {"start": 229, "end": 231, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Jesus Christ", "context": {"start": 229, "end": 231, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}}, {"origin": {"segment": "content_strict", "context": {"start": 253, "end": 254, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Onuoha", "context": {"start": 253, "end": 254, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}}, {"origin": {"segment": "content_strict", "context": {"start": 395, "end": 397, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Boko Haram", "context": {"start": 395, "end": 397, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}}, {"origin": {"segment": "content_strict", "context": {"start": 432, "end": 433, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Onuoha", "context": {"start": 432, "end": 433, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Africa", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}}, {"origin": {"segment": "content_strict", "context": {"start": 85, "end": 86, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Africa", "context": {"start": 85, "end": 86, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}}, {"origin": {"segment": "content_strict", "context": {"start": 304, "end": 305, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Africa", "context": {"start": 304, "end": 305, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 158, "end": 159, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Chinese", "context": {"start": 158, "end": 159, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}}, {"origin": {"segment": "content_strict", "context": {"start": 211, "end": 212, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Catholic", "context": {"start": 211, "end": 212, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}}, {"origin": {"segment": "content_strict", "context": {"start": 321, "end": 322, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Christian", "context": {"start": 321, "end": 322, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}}, {"origin": {"segment": "content_strict", "context": {"start": 326, "end": 327, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Muslim", "context": {"start": 326, "end": 327, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}}, {"origin": {"segment": "content_strict", "context": {"start": 347, "end": 348, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Islamist", "context": {"start": 347, "end": 348, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}}, {"origin": {"segment": "content_strict", "context": {"start": 373, "end": 374, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Muslim", "context": {"start": 373, "end": 374, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 411, "end": 412, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Islamist", "context": {"start": 411, "end": 412, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}}]}}}}, "title": {"text": " Nigeria: Nine-Metre Tall Statue of Jesus Christ Unveiled in Imo - allAfrica.com ", "simple_tokens": ["nigeria", ":", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "unveiled", "in", "imo", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Nine", "-", "Metre", "Tall", "Statue", "of", "Jesus", "Christ", "Unveiled", "in", "Imo", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Nine - Metre Tall "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Nine - Metre Tall "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 12, "end": 15, "input": "tokens", "text": "of Jesus Christ Unveiled in Imo - allAfrica . com "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "value": "Imo - allAfrica", "context": {"start": 12, "end": 15, "input": "tokens", "text": "of Jesus Christ Unveiled in Imo - allAfrica . com "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:09.214174", "@etk_process_time": 0.5453169345855713, "@etk_start_time": "2017-11-15T01:34:08.668857"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Nine-Metre Tall Statue of Jesus Christ Unveiled in Imo - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Nigeria: Nine-Metre Tall Statue of Jesus Christ Unveiled in Imo\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n \n \n Photo:\n \n Premium Times\n \n \n
\n
\n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.\n
\n
\n

\n Nigeria, yesterday, unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa.\n

\n

\n Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes.\n

\n

\n More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in Imo State, Southeastern Nigeria.\n

\n

\n It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike.\n

\n

\n \"It will remind them of the importance of Jesus Christ,\" said Okwuoma.\n

\n

\n The cost of the statue has not been revealed.\n

\n

\n Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\"\n

\n
\n
\n
\n
\n

\n The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary.\n

\n

\n Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north.\n

\n

\n And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won.\n

\n

\n \"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\"\n

\n

\n He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago.\n

\n

\n And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3", "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"} -{"url": "http://www.ce_news_article.org/2016/01/02/201601020082.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 661, "end": 662, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 68, "end": 70, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 225, "end": 227, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 39, "end": 41, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 86, "end": 88, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 243, "end": 245, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}], "key": "jesus christ", "value": "Jesus Christ"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 145, "end": 147, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 163, "end": 165, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}], "key": "obinna onuoha", "value": "Obinna Onuoha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 191, "end": 193, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Tochukwu"}, {"source": {"segment": "content_relaxed", "context": {"start": 209, "end": 211, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Tochukwu"}], "key": "augustine tochukwu", "value": "Augustine Tochukwu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 249, "end": 250, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 428, "end": 429, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 267, "end": 268, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 446, "end": 447, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}], "key": "onuoha", "value": "Onuoha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 391, "end": 393, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 409, "end": 411, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "method": "rearrange_description"}], "key": "description", "value": " \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n Nigeria on Friday unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. \n Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes. \n More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in southeastern Nigeria. \n It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012. \n In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike. \n \"It will remind them of the importance of Jesus Christ,\" said Okwuoma. \n The cost of the statue has not been revealed. \n Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\" \n The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary. \n Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension. \n More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north. \n And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won. \n \"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\" \n He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago. \n And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 84, "end": 85, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 300, "end": 301, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 8, "end": 9, "input": "tokens", "text": "2016 \n Nigeria : ' Africa ' s Biggest Jesus Statue "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 55, "end": 56, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 102, "end": 103, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 318, "end": 319, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "title", "context": {"start": 3, "end": 4, "input": "tokens", "text": "Nigeria : ' Africa ' s Biggest Jesus Statue "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 631, "end": 632, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: 'Africa's Biggest Jesus Statue' Unveiled in Nigeria - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}, {"source": {"segment": "content_relaxed", "context": {"start": 22, "end": 24, "input": "tokens", "text": "Nigeria \n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}], "key": "premium times", "value": "Premium Times"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}, {"source": {"segment": "content_relaxed", "context": {"start": 25, "end": 28, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}], "key": "the catholic church", "value": "The Catholic Church"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_strict", "context": {"start": 93, "end": 98, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 63, "end": 68, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 111, "end": 116, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}], "key": "the \" jesus de greatest", "value": "the \" Jesus de Greatest"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 251, "end": 252, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AFP"}, {"source": {"segment": "content_relaxed", "context": {"start": 269, "end": 270, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AFP"}], "key": "afp", "value": "AFP"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 345, "end": 347, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 363, "end": 365, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 11, "end": 14, "input": "tokens", "text": ": ' Africa ' s Biggest Jesus Statue ' Unveiled in Nigeria \n "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Biggest Jesus Statue"}, {"source": {"segment": "title", "context": {"start": 6, "end": 9, "input": "tokens", "text": ": ' Africa ' s Biggest Jesus Statue ' Unveiled in Nigeria - "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Biggest Jesus Statue"}], "key": "biggest jesus statue", "value": "Biggest Jesus Statue"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 519, "end": 520, "input": "tokens", "text": ". \n Copyright \n 2016 Vanguard . All rights reserved . "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vanguard"}], "key": "vanguard", "value": "Vanguard"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 525, "end": 526, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 527, "end": 530, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 57, "end": 58, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria on Friday unveiled a nine "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 138, "end": 139, "input": "tokens", "text": "village of Abajah in southeastern Nigeria . \n It was commissioned "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 298, "end": 299, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 366, "end": 367, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 378, "end": 379, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : ' Africa ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 17, "end": 18, "input": "tokens", "text": "Jesus Statue ' Unveiled in Nigeria \n Photo : \n Premium "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 29, "end": 30, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 75, "end": 76, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria on Friday unveiled a nine "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 156, "end": 157, "input": "tokens", "text": "village of Abajah in southeastern Nigeria . \n It was commissioned "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 316, "end": 317, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 384, "end": 385, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 396, "end": 397, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : ' Africa ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Jesus Statue ' Unveiled in Nigeria - allAfrica . com "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 135, "end": 136, "input": "tokens", "text": "unveiling in the village of Abajah in southeastern Nigeria . \n "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 153, "end": 154, "input": "tokens", "text": "unveiling in the village of Abajah in southeastern Nigeria . \n "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}], "key": "abajah", "value": "Abajah"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 230, "end": 231, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 248, "end": 249, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okwuoma"}], "key": "okwuoma", "value": "Okwuoma"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 154, "end": 155, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chinese"}, {"source": {"segment": "content_relaxed", "context": {"start": 172, "end": 173, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chinese"}], "key": "chinese", "value": "Chinese"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 207, "end": 208, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}, {"source": {"segment": "content_relaxed", "context": {"start": 225, "end": 226, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}], "key": "catholic", "value": "Catholic"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 317, "end": 318, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 335, "end": 336, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}], "key": "christian", "value": "Christian"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 322, "end": 323, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 369, "end": 370, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 340, "end": 341, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 387, "end": 388, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 343, "end": 344, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_strict", "context": {"start": 407, "end": 408, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_relaxed", "context": {"start": 361, "end": 362, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_relaxed", "context": {"start": 425, "end": 426, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}], "key": "islamist", "value": "Islamist"}]}, "content_extraction": {"content_relaxed": {"text": " \n 2 January 2016 \n Nigeria: 'Africa's Biggest Jesus Statue' Unveiled in Nigeria \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n Nigeria on Friday unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. \n Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes. \n More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in southeastern Nigeria. \n It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012. \n In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike. \n \"It will remind them of the importance of Jesus Christ,\" said Okwuoma. \n The cost of the statue has not been revealed. \n Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\" \n The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary. \n Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension. \n More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north. \n And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won. \n \"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\" \n He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago. \n And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived. \n Copyright \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "2", "january", "2016", "\n", "nigeria", ":", "'", "africa", "'", "s", "biggest", "jesus", "statue", "'", "unveiled", "in", "nigeria", "\n", "photo", ":", "\n", "premium", "times", "\n", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "nigeria", "on", "friday", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "\n", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "\n", "more", "than", "100", "priests", "and", "hundreds", "of", "catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "abajah", "in", "southeastern", "nigeria", ".", "\n", "it", "was", "commissioned", "by", "obinna", "onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "\n", "in", "his", "homily", "at", "a", "mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "augustine", "tochukwu", "okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\n", "\"", "it", "will", "remind", "them", "of", "the", "importance", "of", "jesus", "christ", ",", "\"", "said", "okwuoma", ".", "\n", "the", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "\n", "earlier", "in", "the", "week", ",", "onuoha", "told", "afp", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "jesus", "on", "the", "continent", ".", "\"", "\n", "the", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "\n", "nigeria", ",", "africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "christian", "south", "and", "a", "poor", "muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "\n", "more", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "islamist", "group", "boko", "haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "nigeria", "'", "s", "muslim", "-", "majority", "north", ".", "\n", "and", "even", "as", "nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "boko", "haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\n", "\"", "we", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "onuoha", "said", ".", "\"", "we", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "\n", "he", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "\n", "and", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "\n", "copyright", "\n", "2016", "vanguard", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "2", "January", "2016", "\n", "Nigeria", ":", "'", "Africa", "'", "s", "Biggest", "Jesus", "Statue", "'", "Unveiled", "in", "Nigeria", "\n", "Photo", ":", "\n", "Premium", "Times", "\n", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "Nigeria", "on", "Friday", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "\n", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "\n", "More", "than", "100", "priests", "and", "hundreds", "of", "Catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "Abajah", "in", "southeastern", "Nigeria", ".", "\n", "It", "was", "commissioned", "by", "Obinna", "Onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "Chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "\n", "In", "his", "homily", "at", "a", "Mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "Augustine", "Tochukwu", "Okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "Catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\n", "\"", "It", "will", "remind", "them", "of", "the", "importance", "of", "Jesus", "Christ", ",", "\"", "said", "Okwuoma", ".", "\n", "The", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "\n", "Earlier", "in", "the", "week", ",", "Onuoha", "told", "AFP", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "Jesus", "on", "the", "continent", ".", "\"", "\n", "The", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "\n", "Nigeria", ",", "Africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "Christian", "south", "and", "a", "poor", "Muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "\n", "More", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "Islamist", "group", "Boko", "Haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "Nigeria", "'", "s", "Muslim", "-", "majority", "north", ".", "\n", "And", "even", "as", "Nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "Boko", "Haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "Islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\n", "\"", "We", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "Onuoha", "said", ".", "\"", "We", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "\n", "He", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "Jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "\n", "And", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "\n", "Copyright", "\n", "2016", "Vanguard", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 661, "end": 662, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "AllAfrica", "context": {"start": 661, "end": 662, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 39, "end": 41, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Jesus Christ", "context": {"start": 39, "end": 41, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 86, "end": 88, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Jesus Christ", "context": {"start": 86, "end": 88, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 163, "end": 165, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Obinna Onuoha", "context": {"start": 163, "end": 165, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 209, "end": 211, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Augustine Tochukwu", "context": {"start": 209, "end": 211, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 243, "end": 245, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Jesus Christ", "context": {"start": 243, "end": 245, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 267, "end": 268, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Onuoha", "context": {"start": 267, "end": 268, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 409, "end": 411, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Boko Haram", "context": {"start": 409, "end": 411, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 446, "end": 447, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Onuoha", "context": {"start": 446, "end": 447, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 8, "end": 9, "input": "tokens", "text": "2016 \n Nigeria : ' Africa ' s Biggest Jesus Statue "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Africa", "context": {"start": 8, "end": 9, "input": "tokens", "text": "2016 \n Nigeria : ' Africa ' s Biggest Jesus Statue "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 55, "end": 56, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Africa", "context": {"start": 55, "end": 56, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 102, "end": 103, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Africa", "context": {"start": 102, "end": 103, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 318, "end": 319, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Africa", "context": {"start": 318, "end": 319, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 631, "end": 632, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "AllAfrica", "context": {"start": 631, "end": 632, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 11, "end": 14, "input": "tokens", "text": ": ' Africa ' s Biggest Jesus Statue ' Unveiled in Nigeria \n "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Biggest Jesus Statue", "context": {"start": 11, "end": 14, "input": "tokens", "text": ": ' Africa ' s Biggest Jesus Statue ' Unveiled in Nigeria \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 22, "end": 24, "input": "tokens", "text": "Nigeria \n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Premium Times", "context": {"start": 22, "end": 24, "input": "tokens", "text": "Nigeria \n Photo : \n Premium Times \n The Catholic Church in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 25, "end": 28, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "The Catholic Church", "context": {"start": 25, "end": 28, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 63, "end": 68, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "the \" Jesus de Greatest", "context": {"start": 63, "end": 68, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 111, "end": 116, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "the \" Jesus de Greatest", "context": {"start": 111, "end": 116, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 269, "end": 270, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "AFP", "context": {"start": 269, "end": 270, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 363, "end": 365, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Boko Haram", "context": {"start": 363, "end": 365, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 519, "end": 520, "input": "tokens", "text": ". \n Copyright \n 2016 Vanguard . All rights reserved . "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Vanguard", "context": {"start": 519, "end": 520, "input": "tokens", "text": ". \n Copyright \n 2016 Vanguard . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 525, "end": 526, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Distributed", "context": {"start": 525, "end": 526, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 527, "end": 530, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "AllAfrica Global Media", "context": {"start": 527, "end": 530, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : ' Africa ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : ' Africa ' s "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 17, "end": 18, "input": "tokens", "text": "Jesus Statue ' Unveiled in Nigeria \n Photo : \n Premium "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 17, "end": 18, "input": "tokens", "text": "Jesus Statue ' Unveiled in Nigeria \n Photo : \n Premium "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 29, "end": 30, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 29, "end": 30, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 75, "end": 76, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria on Friday unveiled a nine "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 75, "end": 76, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria on Friday unveiled a nine "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 153, "end": 154, "input": "tokens", "text": "unveiling in the village of Abajah in southeastern Nigeria . \n "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Abajah", "context": {"start": 153, "end": 154, "input": "tokens", "text": "unveiling in the village of Abajah in southeastern Nigeria . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 156, "end": 157, "input": "tokens", "text": "village of Abajah in southeastern Nigeria . \n It was commissioned "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 156, "end": 157, "input": "tokens", "text": "village of Abajah in southeastern Nigeria . \n It was commissioned "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 248, "end": 249, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Okwuoma", "context": {"start": 248, "end": 249, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 316, "end": 317, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 316, "end": 317, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 384, "end": 385, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 384, "end": 385, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 396, "end": 397, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 396, "end": 397, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 172, "end": 173, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Chinese", "context": {"start": 172, "end": 173, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 225, "end": 226, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Catholic", "context": {"start": 225, "end": 226, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 335, "end": 336, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Christian", "context": {"start": 335, "end": 336, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 340, "end": 341, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Muslim", "context": {"start": 340, "end": 341, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 361, "end": 362, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Islamist", "context": {"start": 361, "end": 362, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 387, "end": 388, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Muslim", "context": {"start": 387, "end": 388, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 425, "end": 426, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Islamist", "context": {"start": 425, "end": 426, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020082.html"}, "content_strict": {"text": " \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n Nigeria on Friday unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. \n Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes. \n More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in southeastern Nigeria. \n It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012. \n In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike. \n \"It will remind them of the importance of Jesus Christ,\" said Okwuoma. \n The cost of the statue has not been revealed. \n Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\" \n The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary. \n Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension. \n More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north. \n And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won. \n \"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\" \n He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago. \n And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived. \n ", "simple_tokens": ["\n", "photo", ":", "\n", "premium", "times", "\n", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "nigeria", "on", "friday", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "\n", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "\n", "more", "than", "100", "priests", "and", "hundreds", "of", "catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "abajah", "in", "southeastern", "nigeria", ".", "\n", "it", "was", "commissioned", "by", "obinna", "onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "\n", "in", "his", "homily", "at", "a", "mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "augustine", "tochukwu", "okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\n", "\"", "it", "will", "remind", "them", "of", "the", "importance", "of", "jesus", "christ", ",", "\"", "said", "okwuoma", ".", "\n", "the", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "\n", "earlier", "in", "the", "week", ",", "onuoha", "told", "afp", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "jesus", "on", "the", "continent", ".", "\"", "\n", "the", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "\n", "nigeria", ",", "africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "christian", "south", "and", "a", "poor", "muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "\n", "more", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "islamist", "group", "boko", "haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "nigeria", "'", "s", "muslim", "-", "majority", "north", ".", "\n", "and", "even", "as", "nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "boko", "haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\n", "\"", "we", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "onuoha", "said", ".", "\"", "we", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "\n", "he", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "\n", "and", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "\n"], "simple_tokens_original_case": ["\n", "Photo", ":", "\n", "Premium", "Times", "\n", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "Nigeria", "on", "Friday", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "\n", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "\n", "More", "than", "100", "priests", "and", "hundreds", "of", "Catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "Abajah", "in", "southeastern", "Nigeria", ".", "\n", "It", "was", "commissioned", "by", "Obinna", "Onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "Chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "\n", "In", "his", "homily", "at", "a", "Mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "Augustine", "Tochukwu", "Okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "Catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\n", "\"", "It", "will", "remind", "them", "of", "the", "importance", "of", "Jesus", "Christ", ",", "\"", "said", "Okwuoma", ".", "\n", "The", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "\n", "Earlier", "in", "the", "week", ",", "Onuoha", "told", "AFP", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "Jesus", "on", "the", "continent", ".", "\"", "\n", "The", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "\n", "Nigeria", ",", "Africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "Christian", "south", "and", "a", "poor", "Muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "\n", "More", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "Islamist", "group", "Boko", "Haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "Nigeria", "'", "s", "Muslim", "-", "majority", "north", ".", "\n", "And", "even", "as", "Nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "Boko", "Haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "Islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\n", "\"", "We", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "Onuoha", "said", ".", "\"", "We", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "\n", "He", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "Jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "\n", "And", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Premium Times", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}}, {"origin": {"segment": "content_strict", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "The Catholic Church", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}}, {"origin": {"segment": "content_strict", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "the \" Jesus de Greatest", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}}, {"origin": {"segment": "content_strict", "context": {"start": 93, "end": 98, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "the \" Jesus de Greatest", "context": {"start": 93, "end": 98, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}}, {"origin": {"segment": "content_strict", "context": {"start": 251, "end": 252, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "AFP", "context": {"start": 251, "end": 252, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}}, {"origin": {"segment": "content_strict", "context": {"start": 345, "end": 347, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Boko Haram", "context": {"start": 345, "end": 347, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}}, {"origin": {"segment": "content_strict", "context": {"start": 57, "end": 58, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria on Friday unveiled a nine "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 57, "end": 58, "input": "tokens", "text": "weighs 40 tonnes . \n Nigeria on Friday unveiled a nine "}}, {"origin": {"segment": "content_strict", "context": {"start": 135, "end": 136, "input": "tokens", "text": "unveiling in the village of Abajah in southeastern Nigeria . \n "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Abajah", "context": {"start": 135, "end": 136, "input": "tokens", "text": "unveiling in the village of Abajah in southeastern Nigeria . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 138, "end": 139, "input": "tokens", "text": "village of Abajah in southeastern Nigeria . \n It was commissioned "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 138, "end": 139, "input": "tokens", "text": "village of Abajah in southeastern Nigeria . \n It was commissioned "}}, {"origin": {"segment": "content_strict", "context": {"start": 230, "end": 231, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Okwuoma", "context": {"start": 230, "end": 231, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . \n The cost of "}}, {"origin": {"segment": "content_strict", "context": {"start": 298, "end": 299, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 298, "end": 299, "input": "tokens", "text": "50th wedding anniversary . \n Nigeria , Africa ' s most "}}, {"origin": {"segment": "content_strict", "context": {"start": 366, "end": 367, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 366, "end": 367, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}}, {"origin": {"segment": "content_strict", "context": {"start": 378, "end": 379, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 378, "end": 379, "input": "tokens", "text": ". \n And even as Nigeria rings in 2016 , the "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Jesus Christ", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_strict", "context": {"start": 68, "end": 70, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Jesus Christ", "context": {"start": 68, "end": 70, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_strict", "context": {"start": 145, "end": 147, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Obinna Onuoha", "context": {"start": 145, "end": 147, "input": "tokens", "text": "\n It was commissioned by Obinna Onuoha , a local businessman who "}}, {"origin": {"segment": "content_strict", "context": {"start": 191, "end": 193, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Augustine Tochukwu", "context": {"start": 191, "end": 193, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}}, {"origin": {"segment": "content_strict", "context": {"start": 225, "end": 227, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Jesus Christ", "context": {"start": 225, "end": 227, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}}, {"origin": {"segment": "content_strict", "context": {"start": 249, "end": 250, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Onuoha", "context": {"start": 249, "end": 250, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}}, {"origin": {"segment": "content_strict", "context": {"start": 391, "end": 393, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Boko Haram", "context": {"start": 391, "end": 393, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}}, {"origin": {"segment": "content_strict", "context": {"start": 428, "end": 429, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Onuoha", "context": {"start": 428, "end": 429, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Africa", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}}, {"origin": {"segment": "content_strict", "context": {"start": 84, "end": 85, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Africa", "context": {"start": 84, "end": 85, "input": "tokens", "text": "biggest of its kind in Africa . \n Standing barefoot with "}}, {"origin": {"segment": "content_strict", "context": {"start": 300, "end": 301, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Africa", "context": {"start": 300, "end": 301, "input": "tokens", "text": "anniversary . \n Nigeria , Africa ' s most populous country "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 154, "end": 155, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Chinese", "context": {"start": 154, "end": 155, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}}, {"origin": {"segment": "content_strict", "context": {"start": 207, "end": 208, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Catholic", "context": {"start": 207, "end": 208, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}}, {"origin": {"segment": "content_strict", "context": {"start": 317, "end": 318, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Christian", "context": {"start": 317, "end": 318, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}}, {"origin": {"segment": "content_strict", "context": {"start": 322, "end": 323, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Muslim", "context": {"start": 322, "end": 323, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}}, {"origin": {"segment": "content_strict", "context": {"start": 343, "end": 344, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Islamist", "context": {"start": 343, "end": 344, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}}, {"origin": {"segment": "content_strict", "context": {"start": 369, "end": 370, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Muslim", "context": {"start": 369, "end": 370, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 407, "end": 408, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Islamist", "context": {"start": 407, "end": 408, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}}]}}}}, "title": {"text": " Nigeria: 'Africa's Biggest Jesus Statue' Unveiled in Nigeria - allAfrica.com ", "simple_tokens": ["nigeria", ":", "'", "africa", "'", "s", "biggest", "jesus", "statue", "'", "unveiled", "in", "nigeria", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "'", "Africa", "'", "s", "Biggest", "Jesus", "Statue", "'", "Unveiled", "in", "Nigeria", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : ' Africa ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : ' Africa ' s "}}, {"origin": {"segment": "title", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Jesus Statue ' Unveiled in Nigeria - allAfrica . com "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Nigeria", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Jesus Statue ' Unveiled in Nigeria - allAfrica . com "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 6, "end": 9, "input": "tokens", "text": ": ' Africa ' s Biggest Jesus Statue ' Unveiled in Nigeria - "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Biggest Jesus Statue", "context": {"start": 6, "end": 9, "input": "tokens", "text": ": ' Africa ' s Biggest Jesus Statue ' Unveiled in Nigeria - "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 3, "end": 4, "input": "tokens", "text": "Nigeria : ' Africa ' s Biggest Jesus Statue "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "value": "Africa", "context": {"start": 3, "end": 4, "input": "tokens", "text": "Nigeria : ' Africa ' s Biggest Jesus Statue "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:09.763780", "@etk_process_time": 0.5472991466522217, "@etk_start_time": "2017-11-15T01:34:09.216481"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: 'Africa's Biggest Jesus Statue' Unveiled in Nigeria - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Nigeria: 'Africa's Biggest Jesus Statue' Unveiled in Nigeria\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n \n \n Photo:\n \n Premium Times\n \n \n
\n
\n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.\n
\n
\n

\n Nigeria on Friday unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa.\n

\n

\n Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes.\n

\n

\n More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in southeastern Nigeria.\n

\n

\n It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike.\n

\n

\n \"It will remind them of the importance of Jesus Christ,\" said Okwuoma.\n

\n

\n The cost of the statue has not been revealed.\n

\n

\n Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\"\n

\n
\n
\n
\n
\n

\n The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary.\n

\n

\n Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north.\n

\n

\n And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won.\n

\n

\n \"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\"\n

\n

\n He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago.\n

\n

\n And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D", "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"} -{"url": "http://www.ce_news_article.org/2016/01/02/201601020094.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 445, "end": 446, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 24, "end": 25, "input": "tokens", "text": "hijab which it describes as Muslim women ' s dressing symbol "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 272, "end": 273, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 38, "end": 39, "input": "tokens", "text": "hijab which it describes as Muslim women ' s dressing symbol "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 286, "end": 287, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 125, "end": 126, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 139, "end": 140, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "method": "rearrange_description"}], "key": "description", "value": " \n By Isiaka Wakili \n The Presidency has said that President Muhammadu Buhari has not banned the use of hijab which it describes as Muslim women's dressing symbol of modesty. \n The Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said this in a statement on Friday. \n President Buhari had said on Wednesday during the presidential media chat that \"Hijab would have to be banned if suicide bombing continues.\" \n But his spokesman yesterday, while clarifying the pronouncement, described as unfounded, the speculation that the Federal Government had banned the use of hijab. \n He said that Buhari's administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone. \n Shehu, however, admitted that hijab was being abused by Boko Haram terrorists to carry out suicide attacks on innocent people. \n According to the presidential aide, this violates the teachings of Islam. \n Shehu stressed that the president would not take any decision on the issue without due consultation with all the stakeholders. \n He said: \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution.\" \n He also emphasised that the increasing abuse of the \"hijabby terrorists\" to perpetrate criminal mass murder and other atrocities was a reality. \n Shehu added that Buhari's government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution\". \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 415, "end": 416, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Presidency - Buhari Has Not Banned Hijab - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Isiaka Wakili \n The Presidency has said "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Isiaka Wakili"}, {"source": {"segment": "content_relaxed", "context": {"start": 16, "end": 18, "input": "tokens", "text": "Not Banned Hijab \n By Isiaka Wakili \n The Presidency has said "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Isiaka Wakili"}], "key": "isiaka wakili", "value": "Isiaka Wakili"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 34, "end": 38, "input": "tokens", "text": "symbol of modesty . \n The Senior Special Assistant to the President on Media "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Senior Special Assistant"}, {"source": {"segment": "content_relaxed", "context": {"start": 48, "end": 52, "input": "tokens", "text": "symbol of modesty . \n The Senior Special Assistant to the President on Media "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Senior Special Assistant"}], "key": "the senior special assistant", "value": "The Senior Special Assistant"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 101, "end": 104, "input": "tokens", "text": "unfounded , the speculation that the Federal Government had banned the use of "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Government"}, {"source": {"segment": "content_relaxed", "context": {"start": 115, "end": 118, "input": "tokens", "text": "unfounded , the speculation that the Federal Government had banned the use of "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Government"}], "key": "the federal government", "value": "the Federal Government"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 175, "end": 176, "input": "tokens", "text": "this violates the teachings of Islam . \n Shehu stressed that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}, {"source": {"segment": "content_relaxed", "context": {"start": 189, "end": 190, "input": "tokens", "text": "this violates the teachings of Islam . \n Shehu stressed that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}], "key": "islam", "value": "Islam"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 302, "end": 304, "input": "tokens", "text": ". \n Copyright \n 2016 Daily Trust . All rights reserved . "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Daily Trust"}], "key": "daily trust", "value": "Daily Trust"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 309, "end": 310, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 311, "end": 314, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 140, "end": 141, "input": "tokens", "text": "it affects everyone . \n Shehu , however , admitted that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 154, "end": 155, "input": "tokens", "text": "it affects everyone . \n Shehu , however , admitted that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Presidency - Buhari Has "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Presidency - Buhari Has "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 11, "end": 13, "input": "tokens", "text": "Presidency has said that President Muhammadu Buhari has not banned the use "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 25, "end": 27, "input": "tokens", "text": "Presidency has said that President Muhammadu Buhari has not banned the use "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}], "key": "muhammadu buhari", "value": "Muhammadu Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 46, "end": 48, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said this in a "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 60, "end": 62, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said this in a "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}], "key": "garba shehu", "value": "Garba Shehu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 59, "end": 60, "input": "tokens", "text": "on Friday . \n President Buhari had said on Wednesday during "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 115, "end": 116, "input": "tokens", "text": ". \n He said that Buhari ' s administration would always "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 260, "end": 261, "input": "tokens", "text": ". \n Shehu added that Buhari ' s government would address "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 73, "end": 74, "input": "tokens", "text": "on Friday . \n President Buhari had said on Wednesday during "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 129, "end": 130, "input": "tokens", "text": ". \n He said that Buhari ' s administration would always "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 274, "end": 275, "input": "tokens", "text": ". \n Shehu added that Buhari ' s government would address "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 151, "end": 153, "input": "tokens", "text": "hijab was being abused by Boko Haram terrorists to carry out suicide "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 165, "end": 167, "input": "tokens", "text": "hijab was being abused by Boko Haram terrorists to carry out suicide "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 178, "end": 179, "input": "tokens", "text": "teachings of Islam . \n Shehu stressed that the president would "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_strict", "context": {"start": 257, "end": 258, "input": "tokens", "text": "was a reality . \n Shehu added that Buhari ' s "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 192, "end": 193, "input": "tokens", "text": "teachings of Islam . \n Shehu stressed that the president would "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 271, "end": 272, "input": "tokens", "text": "was a reality . \n Shehu added that Buhari ' s "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}]}, "content_extraction": {"content_relaxed": {"text": " \n 1 January 2016 \n Nigeria: Presidency - Buhari Has Not Banned Hijab \n By Isiaka Wakili \n The Presidency has said that President Muhammadu Buhari has not banned the use of hijab which it describes as Muslim women's dressing symbol of modesty. \n The Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said this in a statement on Friday. \n President Buhari had said on Wednesday during the presidential media chat that \"Hijab would have to be banned if suicide bombing continues.\" \n But his spokesman yesterday, while clarifying the pronouncement, described as unfounded, the speculation that the Federal Government had banned the use of hijab. \n He said that Buhari's administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone. \n Shehu, however, admitted that hijab was being abused by Boko Haram terrorists to carry out suicide attacks on innocent people. \n According to the presidential aide, this violates the teachings of Islam. \n Shehu stressed that the president would not take any decision on the issue without due consultation with all the stakeholders. \n He said: \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution.\" \n He also emphasised that the increasing abuse of the \"hijabby terrorists\" to perpetrate criminal mass murder and other atrocities was a reality. \n Shehu added that Buhari's government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution\". \n Copyright \n 2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "1", "january", "2016", "\n", "nigeria", ":", "presidency", "-", "buhari", "has", "not", "banned", "hijab", "\n", "by", "isiaka", "wakili", "\n", "the", "presidency", "has", "said", "that", "president", "muhammadu", "buhari", "has", "not", "banned", "the", "use", "of", "hijab", "which", "it", "describes", "as", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "this", "in", "a", "statement", "on", "friday", ".", "\n", "president", "buhari", "had", "said", "on", "wednesday", "during", "the", "presidential", "media", "chat", "that", "\"", "hijab", "would", "have", "to", "be", "banned", "if", "suicide", "bombing", "continues", ".", "\"", "\n", "but", "his", "spokesman", "yesterday", ",", "while", "clarifying", "the", "pronouncement", ",", "described", "as", "unfounded", ",", "the", "speculation", "that", "the", "federal", "government", "had", "banned", "the", "use", "of", "hijab", ".", "\n", "he", "said", "that", "buhari", "'", "s", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "\n", "shehu", ",", "however", ",", "admitted", "that", "hijab", "was", "being", "abused", "by", "boko", "haram", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ".", "\n", "according", "to", "the", "presidential", "aide", ",", "this", "violates", "the", "teachings", "of", "islam", ".", "\n", "shehu", "stressed", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "he", "said", ":", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ".", "\"", "\n", "he", "also", "emphasised", "that", "the", "increasing", "abuse", "of", "the", "\"", "hijabby", "terrorists", "\"", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "was", "a", "reality", ".", "\n", "shehu", "added", "that", "buhari", "'", "s", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "\"", ".", "\n", "copyright", "\n", "2016", "daily", "trust", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "1", "January", "2016", "\n", "Nigeria", ":", "Presidency", "-", "Buhari", "Has", "Not", "Banned", "Hijab", "\n", "By", "Isiaka", "Wakili", "\n", "The", "Presidency", "has", "said", "that", "President", "Muhammadu", "Buhari", "has", "not", "banned", "the", "use", "of", "hijab", "which", "it", "describes", "as", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "The", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "this", "in", "a", "statement", "on", "Friday", ".", "\n", "President", "Buhari", "had", "said", "on", "Wednesday", "during", "the", "presidential", "media", "chat", "that", "\"", "Hijab", "would", "have", "to", "be", "banned", "if", "suicide", "bombing", "continues", ".", "\"", "\n", "But", "his", "spokesman", "yesterday", ",", "while", "clarifying", "the", "pronouncement", ",", "described", "as", "unfounded", ",", "the", "speculation", "that", "the", "Federal", "Government", "had", "banned", "the", "use", "of", "hijab", ".", "\n", "He", "said", "that", "Buhari", "'", "s", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "\n", "Shehu", ",", "however", ",", "admitted", "that", "hijab", "was", "being", "abused", "by", "Boko", "Haram", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ".", "\n", "According", "to", "the", "presidential", "aide", ",", "this", "violates", "the", "teachings", "of", "Islam", ".", "\n", "Shehu", "stressed", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "He", "said", ":", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ".", "\"", "\n", "He", "also", "emphasised", "that", "the", "increasing", "abuse", "of", "the", "\"", "hijabby", "terrorists", "\"", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "was", "a", "reality", ".", "\n", "Shehu", "added", "that", "Buhari", "'", "s", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "\"", ".", "\n", "Copyright", "\n", "2016", "Daily", "Trust", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 445, "end": 446, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "AllAfrica", "context": {"start": 445, "end": 446, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 25, "end": 27, "input": "tokens", "text": "Presidency has said that President Muhammadu Buhari has not banned the use "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Muhammadu Buhari", "context": {"start": 25, "end": 27, "input": "tokens", "text": "Presidency has said that President Muhammadu Buhari has not banned the use "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 60, "end": 62, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said this in a "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Garba Shehu", "context": {"start": 60, "end": 62, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said this in a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 73, "end": 74, "input": "tokens", "text": "on Friday . \n President Buhari had said on Wednesday during "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Buhari", "context": {"start": 73, "end": 74, "input": "tokens", "text": "on Friday . \n President Buhari had said on Wednesday during "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 129, "end": 130, "input": "tokens", "text": ". \n He said that Buhari ' s administration would always "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Buhari", "context": {"start": 129, "end": 130, "input": "tokens", "text": ". \n He said that Buhari ' s administration would always "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 165, "end": 167, "input": "tokens", "text": "hijab was being abused by Boko Haram terrorists to carry out suicide "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Boko Haram", "context": {"start": 165, "end": 167, "input": "tokens", "text": "hijab was being abused by Boko Haram terrorists to carry out suicide "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 192, "end": 193, "input": "tokens", "text": "teachings of Islam . \n Shehu stressed that the president would "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Shehu", "context": {"start": 192, "end": 193, "input": "tokens", "text": "teachings of Islam . \n Shehu stressed that the president would "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 271, "end": 272, "input": "tokens", "text": "was a reality . \n Shehu added that Buhari ' s "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Shehu", "context": {"start": 271, "end": 272, "input": "tokens", "text": "was a reality . \n Shehu added that Buhari ' s "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 274, "end": 275, "input": "tokens", "text": ". \n Shehu added that Buhari ' s government would address "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Buhari", "context": {"start": 274, "end": 275, "input": "tokens", "text": ". \n Shehu added that Buhari ' s government would address "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 415, "end": 416, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "AllAfrica", "context": {"start": 415, "end": 416, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 16, "end": 18, "input": "tokens", "text": "Not Banned Hijab \n By Isiaka Wakili \n The Presidency has said "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Isiaka Wakili", "context": {"start": 16, "end": 18, "input": "tokens", "text": "Not Banned Hijab \n By Isiaka Wakili \n The Presidency has said "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 48, "end": 52, "input": "tokens", "text": "symbol of modesty . \n The Senior Special Assistant to the President on Media "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "The Senior Special Assistant", "context": {"start": 48, "end": 52, "input": "tokens", "text": "symbol of modesty . \n The Senior Special Assistant to the President on Media "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 115, "end": 118, "input": "tokens", "text": "unfounded , the speculation that the Federal Government had banned the use of "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "the Federal Government", "context": {"start": 115, "end": 118, "input": "tokens", "text": "unfounded , the speculation that the Federal Government had banned the use of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 189, "end": 190, "input": "tokens", "text": "this violates the teachings of Islam . \n Shehu stressed that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Islam", "context": {"start": 189, "end": 190, "input": "tokens", "text": "this violates the teachings of Islam . \n Shehu stressed that "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 302, "end": 304, "input": "tokens", "text": ". \n Copyright \n 2016 Daily Trust . All rights reserved . "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Daily Trust", "context": {"start": 302, "end": 304, "input": "tokens", "text": ". \n Copyright \n 2016 Daily Trust . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 309, "end": 310, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Distributed", "context": {"start": 309, "end": 310, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 311, "end": 314, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "AllAfrica Global Media", "context": {"start": 311, "end": 314, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Presidency - Buhari Has "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Presidency - Buhari Has "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 154, "end": 155, "input": "tokens", "text": "it affects everyone . \n Shehu , however , admitted that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Shehu", "context": {"start": 154, "end": 155, "input": "tokens", "text": "it affects everyone . \n Shehu , however , admitted that "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 38, "end": 39, "input": "tokens", "text": "hijab which it describes as Muslim women ' s dressing symbol "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Muslim", "context": {"start": 38, "end": 39, "input": "tokens", "text": "hijab which it describes as Muslim women ' s dressing symbol "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 139, "end": 140, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Muslims", "context": {"start": 139, "end": 140, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 286, "end": 287, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Muslim", "context": {"start": 286, "end": 287, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020094.html"}, "content_strict": {"text": " \n By Isiaka Wakili \n The Presidency has said that President Muhammadu Buhari has not banned the use of hijab which it describes as Muslim women's dressing symbol of modesty. \n The Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said this in a statement on Friday. \n President Buhari had said on Wednesday during the presidential media chat that \"Hijab would have to be banned if suicide bombing continues.\" \n But his spokesman yesterday, while clarifying the pronouncement, described as unfounded, the speculation that the Federal Government had banned the use of hijab. \n He said that Buhari's administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone. \n Shehu, however, admitted that hijab was being abused by Boko Haram terrorists to carry out suicide attacks on innocent people. \n According to the presidential aide, this violates the teachings of Islam. \n Shehu stressed that the president would not take any decision on the issue without due consultation with all the stakeholders. \n He said: \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution.\" \n He also emphasised that the increasing abuse of the \"hijabby terrorists\" to perpetrate criminal mass murder and other atrocities was a reality. \n Shehu added that Buhari's government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution\". \n ", "simple_tokens": ["\n", "by", "isiaka", "wakili", "\n", "the", "presidency", "has", "said", "that", "president", "muhammadu", "buhari", "has", "not", "banned", "the", "use", "of", "hijab", "which", "it", "describes", "as", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "this", "in", "a", "statement", "on", "friday", ".", "\n", "president", "buhari", "had", "said", "on", "wednesday", "during", "the", "presidential", "media", "chat", "that", "\"", "hijab", "would", "have", "to", "be", "banned", "if", "suicide", "bombing", "continues", ".", "\"", "\n", "but", "his", "spokesman", "yesterday", ",", "while", "clarifying", "the", "pronouncement", ",", "described", "as", "unfounded", ",", "the", "speculation", "that", "the", "federal", "government", "had", "banned", "the", "use", "of", "hijab", ".", "\n", "he", "said", "that", "buhari", "'", "s", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "\n", "shehu", ",", "however", ",", "admitted", "that", "hijab", "was", "being", "abused", "by", "boko", "haram", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ".", "\n", "according", "to", "the", "presidential", "aide", ",", "this", "violates", "the", "teachings", "of", "islam", ".", "\n", "shehu", "stressed", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "he", "said", ":", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ".", "\"", "\n", "he", "also", "emphasised", "that", "the", "increasing", "abuse", "of", "the", "\"", "hijabby", "terrorists", "\"", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "was", "a", "reality", ".", "\n", "shehu", "added", "that", "buhari", "'", "s", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "\"", ".", "\n"], "simple_tokens_original_case": ["\n", "By", "Isiaka", "Wakili", "\n", "The", "Presidency", "has", "said", "that", "President", "Muhammadu", "Buhari", "has", "not", "banned", "the", "use", "of", "hijab", "which", "it", "describes", "as", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "The", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "this", "in", "a", "statement", "on", "Friday", ".", "\n", "President", "Buhari", "had", "said", "on", "Wednesday", "during", "the", "presidential", "media", "chat", "that", "\"", "Hijab", "would", "have", "to", "be", "banned", "if", "suicide", "bombing", "continues", ".", "\"", "\n", "But", "his", "spokesman", "yesterday", ",", "while", "clarifying", "the", "pronouncement", ",", "described", "as", "unfounded", ",", "the", "speculation", "that", "the", "Federal", "Government", "had", "banned", "the", "use", "of", "hijab", ".", "\n", "He", "said", "that", "Buhari", "'", "s", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "\n", "Shehu", ",", "however", ",", "admitted", "that", "hijab", "was", "being", "abused", "by", "Boko", "Haram", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ".", "\n", "According", "to", "the", "presidential", "aide", ",", "this", "violates", "the", "teachings", "of", "Islam", ".", "\n", "Shehu", "stressed", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "He", "said", ":", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ".", "\"", "\n", "He", "also", "emphasised", "that", "the", "increasing", "abuse", "of", "the", "\"", "hijabby", "terrorists", "\"", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "was", "a", "reality", ".", "\n", "Shehu", "added", "that", "Buhari", "'", "s", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "\"", ".", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Isiaka Wakili \n The Presidency has said "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Isiaka Wakili", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Isiaka Wakili \n The Presidency has said "}}, {"origin": {"segment": "content_strict", "context": {"start": 34, "end": 38, "input": "tokens", "text": "symbol of modesty . \n The Senior Special Assistant to the President on Media "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "The Senior Special Assistant", "context": {"start": 34, "end": 38, "input": "tokens", "text": "symbol of modesty . \n The Senior Special Assistant to the President on Media "}}, {"origin": {"segment": "content_strict", "context": {"start": 101, "end": 104, "input": "tokens", "text": "unfounded , the speculation that the Federal Government had banned the use of "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "the Federal Government", "context": {"start": 101, "end": 104, "input": "tokens", "text": "unfounded , the speculation that the Federal Government had banned the use of "}}, {"origin": {"segment": "content_strict", "context": {"start": 175, "end": 176, "input": "tokens", "text": "this violates the teachings of Islam . \n Shehu stressed that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Islam", "context": {"start": 175, "end": 176, "input": "tokens", "text": "this violates the teachings of Islam . \n Shehu stressed that "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 24, "end": 25, "input": "tokens", "text": "hijab which it describes as Muslim women ' s dressing symbol "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Muslim", "context": {"start": 24, "end": 25, "input": "tokens", "text": "hijab which it describes as Muslim women ' s dressing symbol "}}, {"origin": {"segment": "content_strict", "context": {"start": 125, "end": 126, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Muslims", "context": {"start": 125, "end": 126, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}}, {"origin": {"segment": "content_strict", "context": {"start": 272, "end": 273, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Muslim", "context": {"start": 272, "end": 273, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 11, "end": 13, "input": "tokens", "text": "Presidency has said that President Muhammadu Buhari has not banned the use "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Muhammadu Buhari", "context": {"start": 11, "end": 13, "input": "tokens", "text": "Presidency has said that President Muhammadu Buhari has not banned the use "}}, {"origin": {"segment": "content_strict", "context": {"start": 46, "end": 48, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said this in a "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Garba Shehu", "context": {"start": 46, "end": 48, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said this in a "}}, {"origin": {"segment": "content_strict", "context": {"start": 59, "end": 60, "input": "tokens", "text": "on Friday . \n President Buhari had said on Wednesday during "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Buhari", "context": {"start": 59, "end": 60, "input": "tokens", "text": "on Friday . \n President Buhari had said on Wednesday during "}}, {"origin": {"segment": "content_strict", "context": {"start": 115, "end": 116, "input": "tokens", "text": ". \n He said that Buhari ' s administration would always "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Buhari", "context": {"start": 115, "end": 116, "input": "tokens", "text": ". \n He said that Buhari ' s administration would always "}}, {"origin": {"segment": "content_strict", "context": {"start": 151, "end": 153, "input": "tokens", "text": "hijab was being abused by Boko Haram terrorists to carry out suicide "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Boko Haram", "context": {"start": 151, "end": 153, "input": "tokens", "text": "hijab was being abused by Boko Haram terrorists to carry out suicide "}}, {"origin": {"segment": "content_strict", "context": {"start": 178, "end": 179, "input": "tokens", "text": "teachings of Islam . \n Shehu stressed that the president would "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Shehu", "context": {"start": 178, "end": 179, "input": "tokens", "text": "teachings of Islam . \n Shehu stressed that the president would "}}, {"origin": {"segment": "content_strict", "context": {"start": 257, "end": 258, "input": "tokens", "text": "was a reality . \n Shehu added that Buhari ' s "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Shehu", "context": {"start": 257, "end": 258, "input": "tokens", "text": "was a reality . \n Shehu added that Buhari ' s "}}, {"origin": {"segment": "content_strict", "context": {"start": 260, "end": 261, "input": "tokens", "text": ". \n Shehu added that Buhari ' s government would address "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Buhari", "context": {"start": 260, "end": 261, "input": "tokens", "text": ". \n Shehu added that Buhari ' s government would address "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 140, "end": 141, "input": "tokens", "text": "it affects everyone . \n Shehu , however , admitted that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Shehu", "context": {"start": 140, "end": 141, "input": "tokens", "text": "it affects everyone . \n Shehu , however , admitted that "}}]}}}}, "title": {"text": " Nigeria: Presidency - Buhari Has Not Banned Hijab - allAfrica.com ", "simple_tokens": ["nigeria", ":", "presidency", "-", "buhari", "has", "not", "banned", "hijab", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Presidency", "-", "Buhari", "Has", "Not", "Banned", "Hijab", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Presidency - Buhari Has "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Presidency - Buhari Has "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:10.192152", "@etk_process_time": 0.4262270927429199, "@etk_start_time": "2017-11-15T01:34:09.765925"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Presidency - Buhari Has Not Banned Hijab - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: Presidency - Buhari Has Not Banned Hijab\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Isiaka Wakili\n \n

\n The Presidency has said that President Muhammadu Buhari has not banned the use of hijab which it describes as Muslim women's dressing symbol of modesty.\n

\n

\n The Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said this in a statement on Friday.\n

\n

\n President Buhari had said on Wednesday during the presidential media chat that \"Hijab would have to be banned if suicide bombing continues.\"\n

\n

\n But his spokesman yesterday, while clarifying the pronouncement, described as unfounded, the speculation that the Federal Government had banned the use of hijab.\n

\n

\n He said that Buhari's administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone.\n

\n

\n Shehu, however, admitted that hijab was being abused by Boko Haram terrorists to carry out suicide attacks on innocent people.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
\n
\n

\n According to the presidential aide, this violates the teachings of Islam.\n

\n

\n Shehu stressed that the president would not take any decision on the issue without due consultation with all the stakeholders.\n

\n

\n He said: \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution.\"\n

\n

\n He also emphasised that the increasing abuse of the \"hijabby terrorists\" to perpetrate criminal mass murder and other atrocities was a reality.\n

\n

\n Shehu added that Buhari's government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution\".\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63", "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"} -{"url": "http://www.ce_news_article.org/2016/01/02/201601020099.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 407, "end": 408, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 21, "end": 22, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing style "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 235, "end": 236, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 35, "end": 36, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing style "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 249, "end": 250, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 107, "end": 108, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 121, "end": 122, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "method": "rearrange_description"}], "key": "description", "value": " \n By Tobi Soniyi in Abuja \n The Presidency has denied insinuations that the Buhari administration has banned Hijab, the Muslim women's dressing style in which most of the body, including part or all of the face, is covered, said to be a symbol of modesty. \n Giving a clarification on the pronouncement of the President during Wednesday's media chat, the Senior Special Assistant to the President on Media and Publicity, Mr Garba Shehu, on Friday in Abuja said the speculation was unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom \n While admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which he said violated the teachings of Islam, Shehu explained that the President would not take any decision on the issue without due consultation with all the stakeholders. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said. \n According to him, the increasing abuse of the Hijab by terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 377, "end": 378, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: No Ban On Hijab, Says Presidency - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 70, "end": 74, "input": "tokens", "text": "' s media chat , the Senior Special Assistant to the President on Media "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}, {"source": {"segment": "content_relaxed", "context": {"start": 84, "end": 88, "input": "tokens", "text": "' s media chat , the Senior Special Assistant to the President on Media "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}], "key": "the senior special assistant", "value": "the Senior Special Assistant"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 82, "end": 85, "input": "tokens", "text": "on Media and Publicity , Mr Garba Shehu , on Friday in Abuja "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mr Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 96, "end": 99, "input": "tokens", "text": "on Media and Publicity , Mr Garba Shehu , on Friday in Abuja "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mr Garba Shehu"}], "key": "mr garba shehu", "value": "Mr Garba Shehu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 143, "end": 144, "input": "tokens", "text": "said violated the teachings of Islam , Shehu explained that the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}, {"source": {"segment": "content_relaxed", "context": {"start": 157, "end": 158, "input": "tokens", "text": "said violated the teachings of Islam , Shehu explained that the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}], "key": "islam", "value": "Islam"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 16, "end": 18, "input": "tokens", "text": ", Says Presidency \n By Tobi Soniyi in Abuja \n The Presidency "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tobi Soniyi"}], "key": "tobi soniyi", "value": "Tobi Soniyi"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 271, "end": 272, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 273, "end": 276, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n By Tobi Soniyi in Abuja \n The Presidency has denied "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_strict", "context": {"start": 89, "end": 90, "input": "tokens", "text": "Shehu , on Friday in Abuja said the speculation was unfounded "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 19, "end": 20, "input": "tokens", "text": "\n By Tobi Soniyi in Abuja \n The Presidency has denied "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 103, "end": 104, "input": "tokens", "text": "Shehu , on Friday in Abuja said the speculation was unfounded "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : No Ban On Hijab "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Says Presidency \n By "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "title", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Says Presidency - allAfrica "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Tobi Soniyi in Abuja \n The Presidency "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tobi Soniyi"}], "key": "tobi soniyi", "value": "Tobi Soniyi"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 14, "end": 15, "input": "tokens", "text": "has denied insinuations that the Buhari administration has banned Hijab , "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 99, "end": 100, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 28, "end": 29, "input": "tokens", "text": "has denied insinuations that the Buhari administration has banned Hijab , "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 113, "end": 114, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 18, "end": 19, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_strict", "context": {"start": 121, "end": 122, "input": "tokens", "text": "\n While admitting that the Hijab was being abused by terrorists "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 32, "end": 33, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 135, "end": 136, "input": "tokens", "text": "\n While admitting that the Hijab was being abused by terrorists "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 145, "end": 146, "input": "tokens", "text": "the teachings of Islam , Shehu explained that the President would "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 159, "end": 160, "input": "tokens", "text": "the teachings of Islam , Shehu explained that the President would "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}]}, "content_extraction": {"content_relaxed": {"text": " \n 1 January 2016 \n Nigeria: No Ban On Hijab, Says Presidency \n By Tobi Soniyi in Abuja \n The Presidency has denied insinuations that the Buhari administration has banned Hijab, the Muslim women's dressing style in which most of the body, including part or all of the face, is covered, said to be a symbol of modesty. \n Giving a clarification on the pronouncement of the President during Wednesday's media chat, the Senior Special Assistant to the President on Media and Publicity, Mr Garba Shehu, on Friday in Abuja said the speculation was unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom \n While admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which he said violated the teachings of Islam, Shehu explained that the President would not take any decision on the issue without due consultation with all the stakeholders. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said. \n According to him, the increasing abuse of the Hijab by terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n Copyright \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "1", "january", "2016", "\n", "nigeria", ":", "no", "ban", "on", "hijab", ",", "says", "presidency", "\n", "by", "tobi", "soniyi", "in", "abuja", "\n", "the", "presidency", "has", "denied", "insinuations", "that", "the", "buhari", "administration", "has", "banned", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "style", "in", "which", "most", "of", "the", "body", ",", "including", "part", "or", "all", "of", "the", "face", ",", "is", "covered", ",", "said", "to", "be", "a", "symbol", "of", "modesty", ".", "\n", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "during", "wednesday", "'", "s", "media", "chat", ",", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "mr", "garba", "shehu", ",", "on", "friday", "in", "abuja", "said", "the", "speculation", "was", "unfounded", ",", "and", "that", "the", "buhari", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "\n", "while", "admitting", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "he", "said", "violated", "the", "teachings", "of", "islam", ",", "shehu", "explained", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "\n", "according", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "hijab", "by", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n", "copyright", "\n", "2016", "this", "day", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "1", "January", "2016", "\n", "Nigeria", ":", "No", "Ban", "On", "Hijab", ",", "Says", "Presidency", "\n", "By", "Tobi", "Soniyi", "in", "Abuja", "\n", "The", "Presidency", "has", "denied", "insinuations", "that", "the", "Buhari", "administration", "has", "banned", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "style", "in", "which", "most", "of", "the", "body", ",", "including", "part", "or", "all", "of", "the", "face", ",", "is", "covered", ",", "said", "to", "be", "a", "symbol", "of", "modesty", ".", "\n", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "during", "Wednesday", "'", "s", "media", "chat", ",", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Mr", "Garba", "Shehu", ",", "on", "Friday", "in", "Abuja", "said", "the", "speculation", "was", "unfounded", ",", "and", "that", "the", "Buhari", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "\n", "While", "admitting", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "he", "said", "violated", "the", "teachings", "of", "Islam", ",", "Shehu", "explained", "that", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "\n", "According", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "Hijab", "by", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n", "Copyright", "\n", "2016", "This", "Day", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 407, "end": 408, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "AllAfrica", "context": {"start": 407, "end": 408, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 28, "end": 29, "input": "tokens", "text": "has denied insinuations that the Buhari administration has banned Hijab , "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Buhari", "context": {"start": 28, "end": 29, "input": "tokens", "text": "has denied insinuations that the Buhari administration has banned Hijab , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 32, "end": 33, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Hijab", "context": {"start": 32, "end": 33, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 113, "end": 114, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Buhari", "context": {"start": 113, "end": 114, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 135, "end": 136, "input": "tokens", "text": "\n While admitting that the Hijab was being abused by terrorists "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Hijab", "context": {"start": 135, "end": 136, "input": "tokens", "text": "\n While admitting that the Hijab was being abused by terrorists "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 159, "end": 160, "input": "tokens", "text": "the teachings of Islam , Shehu explained that the President would "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Shehu", "context": {"start": 159, "end": 160, "input": "tokens", "text": "the teachings of Islam , Shehu explained that the President would "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 377, "end": 378, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "AllAfrica", "context": {"start": 377, "end": 378, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 16, "end": 18, "input": "tokens", "text": ", Says Presidency \n By Tobi Soniyi in Abuja \n The Presidency "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Tobi Soniyi", "context": {"start": 16, "end": 18, "input": "tokens", "text": ", Says Presidency \n By Tobi Soniyi in Abuja \n The Presidency "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 84, "end": 88, "input": "tokens", "text": "' s media chat , the Senior Special Assistant to the President on Media "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "the Senior Special Assistant", "context": {"start": 84, "end": 88, "input": "tokens", "text": "' s media chat , the Senior Special Assistant to the President on Media "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 96, "end": 99, "input": "tokens", "text": "on Media and Publicity , Mr Garba Shehu , on Friday in Abuja "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Mr Garba Shehu", "context": {"start": 96, "end": 99, "input": "tokens", "text": "on Media and Publicity , Mr Garba Shehu , on Friday in Abuja "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 157, "end": 158, "input": "tokens", "text": "said violated the teachings of Islam , Shehu explained that the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Islam", "context": {"start": 157, "end": 158, "input": "tokens", "text": "said violated the teachings of Islam , Shehu explained that the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 271, "end": 272, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Distributed", "context": {"start": 271, "end": 272, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 273, "end": 276, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "AllAfrica Global Media", "context": {"start": 273, "end": 276, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : No Ban On Hijab "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : No Ban On Hijab "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Says Presidency \n By "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Hijab", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Says Presidency \n By "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 19, "end": 20, "input": "tokens", "text": "\n By Tobi Soniyi in Abuja \n The Presidency has denied "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Abuja", "context": {"start": 19, "end": 20, "input": "tokens", "text": "\n By Tobi Soniyi in Abuja \n The Presidency has denied "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 103, "end": 104, "input": "tokens", "text": "Shehu , on Friday in Abuja said the speculation was unfounded "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Abuja", "context": {"start": 103, "end": 104, "input": "tokens", "text": "Shehu , on Friday in Abuja said the speculation was unfounded "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 35, "end": 36, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing style "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Muslim", "context": {"start": 35, "end": 36, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing style "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 121, "end": 122, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Muslims", "context": {"start": 121, "end": 122, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 249, "end": 250, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Muslim", "context": {"start": 249, "end": 250, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020099.html"}, "content_strict": {"text": " \n By Tobi Soniyi in Abuja \n The Presidency has denied insinuations that the Buhari administration has banned Hijab, the Muslim women's dressing style in which most of the body, including part or all of the face, is covered, said to be a symbol of modesty. \n Giving a clarification on the pronouncement of the President during Wednesday's media chat, the Senior Special Assistant to the President on Media and Publicity, Mr Garba Shehu, on Friday in Abuja said the speculation was unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom \n While admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which he said violated the teachings of Islam, Shehu explained that the President would not take any decision on the issue without due consultation with all the stakeholders. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said. \n According to him, the increasing abuse of the Hijab by terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n ", "simple_tokens": ["\n", "by", "tobi", "soniyi", "in", "abuja", "\n", "the", "presidency", "has", "denied", "insinuations", "that", "the", "buhari", "administration", "has", "banned", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "style", "in", "which", "most", "of", "the", "body", ",", "including", "part", "or", "all", "of", "the", "face", ",", "is", "covered", ",", "said", "to", "be", "a", "symbol", "of", "modesty", ".", "\n", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "during", "wednesday", "'", "s", "media", "chat", ",", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "mr", "garba", "shehu", ",", "on", "friday", "in", "abuja", "said", "the", "speculation", "was", "unfounded", ",", "and", "that", "the", "buhari", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "\n", "while", "admitting", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "he", "said", "violated", "the", "teachings", "of", "islam", ",", "shehu", "explained", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "\n", "according", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "hijab", "by", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n"], "simple_tokens_original_case": ["\n", "By", "Tobi", "Soniyi", "in", "Abuja", "\n", "The", "Presidency", "has", "denied", "insinuations", "that", "the", "Buhari", "administration", "has", "banned", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "style", "in", "which", "most", "of", "the", "body", ",", "including", "part", "or", "all", "of", "the", "face", ",", "is", "covered", ",", "said", "to", "be", "a", "symbol", "of", "modesty", ".", "\n", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "during", "Wednesday", "'", "s", "media", "chat", ",", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Mr", "Garba", "Shehu", ",", "on", "Friday", "in", "Abuja", "said", "the", "speculation", "was", "unfounded", ",", "and", "that", "the", "Buhari", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "\n", "While", "admitting", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "he", "said", "violated", "the", "teachings", "of", "Islam", ",", "Shehu", "explained", "that", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "\n", "According", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "Hijab", "by", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n By Tobi Soniyi in Abuja \n The Presidency has denied "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Abuja", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n By Tobi Soniyi in Abuja \n The Presidency has denied "}}, {"origin": {"segment": "content_strict", "context": {"start": 89, "end": 90, "input": "tokens", "text": "Shehu , on Friday in Abuja said the speculation was unfounded "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Abuja", "context": {"start": 89, "end": 90, "input": "tokens", "text": "Shehu , on Friday in Abuja said the speculation was unfounded "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 70, "end": 74, "input": "tokens", "text": "' s media chat , the Senior Special Assistant to the President on Media "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "the Senior Special Assistant", "context": {"start": 70, "end": 74, "input": "tokens", "text": "' s media chat , the Senior Special Assistant to the President on Media "}}, {"origin": {"segment": "content_strict", "context": {"start": 82, "end": 85, "input": "tokens", "text": "on Media and Publicity , Mr Garba Shehu , on Friday in Abuja "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Mr Garba Shehu", "context": {"start": 82, "end": 85, "input": "tokens", "text": "on Media and Publicity , Mr Garba Shehu , on Friday in Abuja "}}, {"origin": {"segment": "content_strict", "context": {"start": 143, "end": 144, "input": "tokens", "text": "said violated the teachings of Islam , Shehu explained that the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Islam", "context": {"start": 143, "end": 144, "input": "tokens", "text": "said violated the teachings of Islam , Shehu explained that the "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 21, "end": 22, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing style "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Muslim", "context": {"start": 21, "end": 22, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing style "}}, {"origin": {"segment": "content_strict", "context": {"start": 107, "end": 108, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Muslims", "context": {"start": 107, "end": 108, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}}, {"origin": {"segment": "content_strict", "context": {"start": 235, "end": 236, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Muslim", "context": {"start": 235, "end": 236, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Tobi Soniyi in Abuja \n The Presidency "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Tobi Soniyi", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Tobi Soniyi in Abuja \n The Presidency "}}, {"origin": {"segment": "content_strict", "context": {"start": 14, "end": 15, "input": "tokens", "text": "has denied insinuations that the Buhari administration has banned Hijab , "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Buhari", "context": {"start": 14, "end": 15, "input": "tokens", "text": "has denied insinuations that the Buhari administration has banned Hijab , "}}, {"origin": {"segment": "content_strict", "context": {"start": 18, "end": 19, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Hijab", "context": {"start": 18, "end": 19, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}}, {"origin": {"segment": "content_strict", "context": {"start": 99, "end": 100, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Buhari", "context": {"start": 99, "end": 100, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}}, {"origin": {"segment": "content_strict", "context": {"start": 121, "end": 122, "input": "tokens", "text": "\n While admitting that the Hijab was being abused by terrorists "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Hijab", "context": {"start": 121, "end": 122, "input": "tokens", "text": "\n While admitting that the Hijab was being abused by terrorists "}}, {"origin": {"segment": "content_strict", "context": {"start": 145, "end": 146, "input": "tokens", "text": "the teachings of Islam , Shehu explained that the President would "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Shehu", "context": {"start": 145, "end": 146, "input": "tokens", "text": "the teachings of Islam , Shehu explained that the President would "}}]}}}}, "title": {"text": " Nigeria: No Ban On Hijab, Says Presidency - allAfrica.com ", "simple_tokens": ["nigeria", ":", "no", "ban", "on", "hijab", ",", "says", "presidency", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "No", "Ban", "On", "Hijab", ",", "Says", "Presidency", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}}, {"origin": {"segment": "title", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Says Presidency - allAfrica "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "value": "Hijab", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Says Presidency - allAfrica "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:10.550934", "@etk_process_time": 0.3572549819946289, "@etk_start_time": "2017-11-15T01:34:10.193679"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: No Ban On Hijab, Says Presidency - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: No Ban On Hijab, Says Presidency\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Tobi Soniyi in Abuja\n \n

\n The Presidency has denied insinuations that the Buhari administration has banned Hijab, the Muslim women's dressing style in which most of the body, including part or all of the face, is covered, said to be a symbol of modesty.\n

\n

\n Giving a clarification on the pronouncement of the President during Wednesday's media chat, the Senior Special Assistant to the President on Media and Publicity, Mr Garba Shehu, on Friday in Abuja said the speculation was unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom\n

\n

\n While admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which he said violated the teachings of Islam, Shehu explained that the President would not take any decision on the issue without due consultation with all the stakeholders.\n

\n
\n
\n

\n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said.\n

\n

\n According to him, the increasing abuse of the Hijab by terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1", "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"} -{"url": "http://www.ce_news_article.org/2016/01/02/201601020101.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 382, "end": 383, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 19, "end": 20, "input": "tokens", "text": "use of Hijab , the Muslim women ' s dressing symbol "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 178, "end": 179, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 12, "end": 13, "input": "tokens", "text": "No Ban On Hijab By Muslim Women - Presidency \n The "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 35, "end": 36, "input": "tokens", "text": "use of Hijab , the Muslim women ' s dressing symbol "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 194, "end": 195, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "title", "context": {"start": 7, "end": 8, "input": "tokens", "text": "No Ban On Hijab By Muslim Women - Presidency - allAfrica "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 103, "end": 104, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 119, "end": 120, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "method": "rearrange_description"}], "key": "description", "value": " \n The Presidency has dismissed the insinuations that the Federal Government had banned the use of Hijab, the Muslim women's dressing symbol of modesty. \n This is contained in a statement issued in Abuja on Friday by the Senior Special Assistant on Media and Publicity to the President, Malam Garba Shehu. \n Giving a clarification on the pronouncement of the President on the issue during last Wednesday's Presidential Media Chat, Shehu said that the speculations were unfounded. \n He said that the Buhari-led Federal Government would always respect the rights of Muslims to protect their modesty and allow religious freedom. \n Shehu said that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violated the teachings of Islam. \n He, however, said that Buhari would not take any decision on the issue without due consultation with all the stakeholders. \n He said that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" he said. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 352, "end": 353, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: No Ban On Hijab By Muslim Women - Presidency - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 8, "end": 11, "input": "tokens", "text": "has dismissed the insinuations that the Federal Government had banned the use of "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Government"}, {"source": {"segment": "content_relaxed", "context": {"start": 24, "end": 27, "input": "tokens", "text": "has dismissed the insinuations that the Federal Government had banned the use of "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Government"}], "key": "the federal government", "value": "the Federal Government"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 41, "end": 45, "input": "tokens", "text": "in Abuja on Friday by the Senior Special Assistant on Media and Publicity to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}, {"source": {"segment": "content_relaxed", "context": {"start": 57, "end": 61, "input": "tokens", "text": "in Abuja on Friday by the Senior Special Assistant on Media and Publicity to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}], "key": "the senior special assistant", "value": "the Senior Special Assistant"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 53, "end": 56, "input": "tokens", "text": "Publicity to the President , Malam Garba Shehu . \n Giving a clarification "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Malam Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 69, "end": 72, "input": "tokens", "text": "Publicity to the President , Malam Garba Shehu . \n Giving a clarification "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Malam Garba Shehu"}], "key": "malam garba shehu", "value": "Malam Garba Shehu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 75, "end": 78, "input": "tokens", "text": "during last Wednesday ' s Presidential Media Chat , Shehu said that the "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Presidential Media Chat"}, {"source": {"segment": "content_relaxed", "context": {"start": 91, "end": 94, "input": "tokens", "text": "during last Wednesday ' s Presidential Media Chat , Shehu said that the "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Presidential Media Chat"}], "key": "presidential media chat", "value": "Presidential Media Chat"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 138, "end": 139, "input": "tokens", "text": "which violated the teachings of Islam . \n He , however "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}, {"source": {"segment": "content_relaxed", "context": {"start": 154, "end": 155, "input": "tokens", "text": "which violated the teachings of Islam . \n He , however "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}], "key": "islam", "value": "Islam"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 147, "end": 148, "input": "tokens", "text": ", however , said that Buhari would not take any decision "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 163, "end": 164, "input": "tokens", "text": ", however , said that Buhari would not take any decision "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 240, "end": 241, "input": "tokens", "text": ". \n Copyright \n 2016 Vanguard . All rights reserved . "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vanguard"}], "key": "vanguard", "value": "Vanguard"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 246, "end": 247, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 248, "end": 251, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 16, "end": 17, "input": "tokens", "text": "had banned the use of Hijab , the Muslim women ' "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Nigeria : No Ban On Hijab By Muslim Women - Presidency "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 32, "end": 33, "input": "tokens", "text": "had banned the use of Hijab , the Muslim women ' "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "title", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab By Muslim Women - Presidency "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 37, "end": 38, "input": "tokens", "text": "in a statement issued in Abuja on Friday by the Senior "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 53, "end": 54, "input": "tokens", "text": "in a statement issued in Abuja on Friday by the Senior "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : No Ban On Hijab "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 79, "end": 80, "input": "tokens", "text": "s Presidential Media Chat , Shehu said that the speculations were "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_strict", "context": {"start": 114, "end": 115, "input": "tokens", "text": "allow religious freedom . \n Shehu said that the Hijab was "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 95, "end": 96, "input": "tokens", "text": "s Presidential Media Chat , Shehu said that the speculations were "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 130, "end": 131, "input": "tokens", "text": "allow religious freedom . \n Shehu said that the Hijab was "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 92, "end": 93, "input": "tokens", "text": "\n He said that the Buhari - led Federal Government would "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": "\n He said that the Buhari - led Federal Government would "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 118, "end": 119, "input": "tokens", "text": "\n Shehu said that the Hijab was being abused by terrorists "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 134, "end": 135, "input": "tokens", "text": "\n Shehu said that the Hijab was being abused by terrorists "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}]}, "content_extraction": {"content_relaxed": {"text": " \n 1 January 2016 \n Nigeria: No Ban On Hijab By Muslim Women - Presidency \n The Presidency has dismissed the insinuations that the Federal Government had banned the use of Hijab, the Muslim women's dressing symbol of modesty. \n This is contained in a statement issued in Abuja on Friday by the Senior Special Assistant on Media and Publicity to the President, Malam Garba Shehu. \n Giving a clarification on the pronouncement of the President on the issue during last Wednesday's Presidential Media Chat, Shehu said that the speculations were unfounded. \n He said that the Buhari-led Federal Government would always respect the rights of Muslims to protect their modesty and allow religious freedom. \n Shehu said that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violated the teachings of Islam. \n He, however, said that Buhari would not take any decision on the issue without due consultation with all the stakeholders. \n He said that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" he said. \n Copyright \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "1", "january", "2016", "\n", "nigeria", ":", "no", "ban", "on", "hijab", "by", "muslim", "women", "-", "presidency", "\n", "the", "presidency", "has", "dismissed", "the", "insinuations", "that", "the", "federal", "government", "had", "banned", "the", "use", "of", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "this", "is", "contained", "in", "a", "statement", "issued", "in", "abuja", "on", "friday", "by", "the", "senior", "special", "assistant", "on", "media", "and", "publicity", "to", "the", "president", ",", "malam", "garba", "shehu", ".", "\n", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "on", "the", "issue", "during", "last", "wednesday", "'", "s", "presidential", "media", "chat", ",", "shehu", "said", "that", "the", "speculations", "were", "unfounded", ".", "\n", "he", "said", "that", "the", "buhari", "-", "led", "federal", "government", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "\n", "shehu", "said", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violated", "the", "teachings", "of", "islam", ".", "\n", "he", ",", "however", ",", "said", "that", "buhari", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "he", "said", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "he", "said", ".", "\n", "copyright", "\n", "2016", "vanguard", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "1", "January", "2016", "\n", "Nigeria", ":", "No", "Ban", "On", "Hijab", "By", "Muslim", "Women", "-", "Presidency", "\n", "The", "Presidency", "has", "dismissed", "the", "insinuations", "that", "the", "Federal", "Government", "had", "banned", "the", "use", "of", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "This", "is", "contained", "in", "a", "statement", "issued", "in", "Abuja", "on", "Friday", "by", "the", "Senior", "Special", "Assistant", "on", "Media", "and", "Publicity", "to", "the", "President", ",", "Malam", "Garba", "Shehu", ".", "\n", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "on", "the", "issue", "during", "last", "Wednesday", "'", "s", "Presidential", "Media", "Chat", ",", "Shehu", "said", "that", "the", "speculations", "were", "unfounded", ".", "\n", "He", "said", "that", "the", "Buhari", "-", "led", "Federal", "Government", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "\n", "Shehu", "said", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violated", "the", "teachings", "of", "Islam", ".", "\n", "He", ",", "however", ",", "said", "that", "Buhari", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "He", "said", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "he", "said", ".", "\n", "Copyright", "\n", "2016", "Vanguard", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 382, "end": 383, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "AllAfrica", "context": {"start": 382, "end": 383, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 95, "end": 96, "input": "tokens", "text": "s Presidential Media Chat , Shehu said that the speculations were "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Shehu", "context": {"start": 95, "end": 96, "input": "tokens", "text": "s Presidential Media Chat , Shehu said that the speculations were "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": "\n He said that the Buhari - led Federal Government would "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Buhari", "context": {"start": 108, "end": 109, "input": "tokens", "text": "\n He said that the Buhari - led Federal Government would "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 130, "end": 131, "input": "tokens", "text": "allow religious freedom . \n Shehu said that the Hijab was "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Shehu", "context": {"start": 130, "end": 131, "input": "tokens", "text": "allow religious freedom . \n Shehu said that the Hijab was "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 134, "end": 135, "input": "tokens", "text": "\n Shehu said that the Hijab was being abused by terrorists "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Hijab", "context": {"start": 134, "end": 135, "input": "tokens", "text": "\n Shehu said that the Hijab was being abused by terrorists "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 352, "end": 353, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "AllAfrica", "context": {"start": 352, "end": 353, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 24, "end": 27, "input": "tokens", "text": "has dismissed the insinuations that the Federal Government had banned the use of "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "the Federal Government", "context": {"start": 24, "end": 27, "input": "tokens", "text": "has dismissed the insinuations that the Federal Government had banned the use of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 57, "end": 61, "input": "tokens", "text": "in Abuja on Friday by the Senior Special Assistant on Media and Publicity to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "the Senior Special Assistant", "context": {"start": 57, "end": 61, "input": "tokens", "text": "in Abuja on Friday by the Senior Special Assistant on Media and Publicity to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 69, "end": 72, "input": "tokens", "text": "Publicity to the President , Malam Garba Shehu . \n Giving a clarification "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Malam Garba Shehu", "context": {"start": 69, "end": 72, "input": "tokens", "text": "Publicity to the President , Malam Garba Shehu . \n Giving a clarification "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 91, "end": 94, "input": "tokens", "text": "during last Wednesday ' s Presidential Media Chat , Shehu said that the "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Presidential Media Chat", "context": {"start": 91, "end": 94, "input": "tokens", "text": "during last Wednesday ' s Presidential Media Chat , Shehu said that the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 154, "end": 155, "input": "tokens", "text": "which violated the teachings of Islam . \n He , however "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Islam", "context": {"start": 154, "end": 155, "input": "tokens", "text": "which violated the teachings of Islam . \n He , however "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 163, "end": 164, "input": "tokens", "text": ", however , said that Buhari would not take any decision "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Buhari", "context": {"start": 163, "end": 164, "input": "tokens", "text": ", however , said that Buhari would not take any decision "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 240, "end": 241, "input": "tokens", "text": ". \n Copyright \n 2016 Vanguard . All rights reserved . "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Vanguard", "context": {"start": 240, "end": 241, "input": "tokens", "text": ". \n Copyright \n 2016 Vanguard . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 246, "end": 247, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Distributed", "context": {"start": 246, "end": 247, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 248, "end": 251, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "AllAfrica Global Media", "context": {"start": 248, "end": 251, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : No Ban On Hijab "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : No Ban On Hijab "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Nigeria : No Ban On Hijab By Muslim Women - Presidency "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Hijab", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Nigeria : No Ban On Hijab By Muslim Women - Presidency "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 32, "end": 33, "input": "tokens", "text": "had banned the use of Hijab , the Muslim women ' "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Hijab", "context": {"start": 32, "end": 33, "input": "tokens", "text": "had banned the use of Hijab , the Muslim women ' "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 53, "end": 54, "input": "tokens", "text": "in a statement issued in Abuja on Friday by the Senior "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Abuja", "context": {"start": 53, "end": 54, "input": "tokens", "text": "in a statement issued in Abuja on Friday by the Senior "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 12, "end": 13, "input": "tokens", "text": "No Ban On Hijab By Muslim Women - Presidency \n The "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Muslim", "context": {"start": 12, "end": 13, "input": "tokens", "text": "No Ban On Hijab By Muslim Women - Presidency \n The "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 35, "end": 36, "input": "tokens", "text": "use of Hijab , the Muslim women ' s dressing symbol "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Muslim", "context": {"start": 35, "end": 36, "input": "tokens", "text": "use of Hijab , the Muslim women ' s dressing symbol "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 119, "end": 120, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Muslims", "context": {"start": 119, "end": 120, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 194, "end": 195, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Muslim", "context": {"start": 194, "end": 195, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020101.html"}, "content_strict": {"text": " \n The Presidency has dismissed the insinuations that the Federal Government had banned the use of Hijab, the Muslim women's dressing symbol of modesty. \n This is contained in a statement issued in Abuja on Friday by the Senior Special Assistant on Media and Publicity to the President, Malam Garba Shehu. \n Giving a clarification on the pronouncement of the President on the issue during last Wednesday's Presidential Media Chat, Shehu said that the speculations were unfounded. \n He said that the Buhari-led Federal Government would always respect the rights of Muslims to protect their modesty and allow religious freedom. \n Shehu said that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violated the teachings of Islam. \n He, however, said that Buhari would not take any decision on the issue without due consultation with all the stakeholders. \n He said that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" he said. \n ", "simple_tokens": ["\n", "the", "presidency", "has", "dismissed", "the", "insinuations", "that", "the", "federal", "government", "had", "banned", "the", "use", "of", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "this", "is", "contained", "in", "a", "statement", "issued", "in", "abuja", "on", "friday", "by", "the", "senior", "special", "assistant", "on", "media", "and", "publicity", "to", "the", "president", ",", "malam", "garba", "shehu", ".", "\n", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "on", "the", "issue", "during", "last", "wednesday", "'", "s", "presidential", "media", "chat", ",", "shehu", "said", "that", "the", "speculations", "were", "unfounded", ".", "\n", "he", "said", "that", "the", "buhari", "-", "led", "federal", "government", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "\n", "shehu", "said", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violated", "the", "teachings", "of", "islam", ".", "\n", "he", ",", "however", ",", "said", "that", "buhari", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "he", "said", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "he", "said", ".", "\n"], "simple_tokens_original_case": ["\n", "The", "Presidency", "has", "dismissed", "the", "insinuations", "that", "the", "Federal", "Government", "had", "banned", "the", "use", "of", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "This", "is", "contained", "in", "a", "statement", "issued", "in", "Abuja", "on", "Friday", "by", "the", "Senior", "Special", "Assistant", "on", "Media", "and", "Publicity", "to", "the", "President", ",", "Malam", "Garba", "Shehu", ".", "\n", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "on", "the", "issue", "during", "last", "Wednesday", "'", "s", "Presidential", "Media", "Chat", ",", "Shehu", "said", "that", "the", "speculations", "were", "unfounded", ".", "\n", "He", "said", "that", "the", "Buhari", "-", "led", "Federal", "Government", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "\n", "Shehu", "said", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violated", "the", "teachings", "of", "Islam", ".", "\n", "He", ",", "however", ",", "said", "that", "Buhari", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "He", "said", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "he", "said", ".", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 8, "end": 11, "input": "tokens", "text": "has dismissed the insinuations that the Federal Government had banned the use of "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "the Federal Government", "context": {"start": 8, "end": 11, "input": "tokens", "text": "has dismissed the insinuations that the Federal Government had banned the use of "}}, {"origin": {"segment": "content_strict", "context": {"start": 41, "end": 45, "input": "tokens", "text": "in Abuja on Friday by the Senior Special Assistant on Media and Publicity to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "the Senior Special Assistant", "context": {"start": 41, "end": 45, "input": "tokens", "text": "in Abuja on Friday by the Senior Special Assistant on Media and Publicity to "}}, {"origin": {"segment": "content_strict", "context": {"start": 53, "end": 56, "input": "tokens", "text": "Publicity to the President , Malam Garba Shehu . \n Giving a clarification "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Malam Garba Shehu", "context": {"start": 53, "end": 56, "input": "tokens", "text": "Publicity to the President , Malam Garba Shehu . \n Giving a clarification "}}, {"origin": {"segment": "content_strict", "context": {"start": 75, "end": 78, "input": "tokens", "text": "during last Wednesday ' s Presidential Media Chat , Shehu said that the "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Presidential Media Chat", "context": {"start": 75, "end": 78, "input": "tokens", "text": "during last Wednesday ' s Presidential Media Chat , Shehu said that the "}}, {"origin": {"segment": "content_strict", "context": {"start": 138, "end": 139, "input": "tokens", "text": "which violated the teachings of Islam . \n He , however "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Islam", "context": {"start": 138, "end": 139, "input": "tokens", "text": "which violated the teachings of Islam . \n He , however "}}, {"origin": {"segment": "content_strict", "context": {"start": 147, "end": 148, "input": "tokens", "text": ", however , said that Buhari would not take any decision "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Buhari", "context": {"start": 147, "end": 148, "input": "tokens", "text": ", however , said that Buhari would not take any decision "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 16, "end": 17, "input": "tokens", "text": "had banned the use of Hijab , the Muslim women ' "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Hijab", "context": {"start": 16, "end": 17, "input": "tokens", "text": "had banned the use of Hijab , the Muslim women ' "}}, {"origin": {"segment": "content_strict", "context": {"start": 37, "end": 38, "input": "tokens", "text": "in a statement issued in Abuja on Friday by the Senior "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Abuja", "context": {"start": 37, "end": 38, "input": "tokens", "text": "in a statement issued in Abuja on Friday by the Senior "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 19, "end": 20, "input": "tokens", "text": "use of Hijab , the Muslim women ' s dressing symbol "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Muslim", "context": {"start": 19, "end": 20, "input": "tokens", "text": "use of Hijab , the Muslim women ' s dressing symbol "}}, {"origin": {"segment": "content_strict", "context": {"start": 103, "end": 104, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Muslims", "context": {"start": 103, "end": 104, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}}, {"origin": {"segment": "content_strict", "context": {"start": 178, "end": 179, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Muslim", "context": {"start": 178, "end": 179, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 79, "end": 80, "input": "tokens", "text": "s Presidential Media Chat , Shehu said that the speculations were "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Shehu", "context": {"start": 79, "end": 80, "input": "tokens", "text": "s Presidential Media Chat , Shehu said that the speculations were "}}, {"origin": {"segment": "content_strict", "context": {"start": 92, "end": 93, "input": "tokens", "text": "\n He said that the Buhari - led Federal Government would "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Buhari", "context": {"start": 92, "end": 93, "input": "tokens", "text": "\n He said that the Buhari - led Federal Government would "}}, {"origin": {"segment": "content_strict", "context": {"start": 114, "end": 115, "input": "tokens", "text": "allow religious freedom . \n Shehu said that the Hijab was "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Shehu", "context": {"start": 114, "end": 115, "input": "tokens", "text": "allow religious freedom . \n Shehu said that the Hijab was "}}, {"origin": {"segment": "content_strict", "context": {"start": 118, "end": 119, "input": "tokens", "text": "\n Shehu said that the Hijab was being abused by terrorists "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Hijab", "context": {"start": 118, "end": 119, "input": "tokens", "text": "\n Shehu said that the Hijab was being abused by terrorists "}}]}}}}, "title": {"text": " Nigeria: No Ban On Hijab By Muslim Women - Presidency - allAfrica.com ", "simple_tokens": ["nigeria", ":", "no", "ban", "on", "hijab", "by", "muslim", "women", "-", "presidency", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "No", "Ban", "On", "Hijab", "By", "Muslim", "Women", "-", "Presidency", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}}, {"origin": {"segment": "title", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab By Muslim Women - Presidency "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Hijab", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab By Muslim Women - Presidency "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 7, "end": 8, "input": "tokens", "text": "No Ban On Hijab By Muslim Women - Presidency - allAfrica "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "value": "Muslim", "context": {"start": 7, "end": 8, "input": "tokens", "text": "No Ban On Hijab By Muslim Women - Presidency - allAfrica "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:10.927898", "@etk_process_time": 0.375438928604126, "@etk_start_time": "2017-11-15T01:34:10.552459"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: No Ban On Hijab By Muslim Women - Presidency - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: No Ban On Hijab By Muslim Women - Presidency\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n

\n The Presidency has dismissed the insinuations that the Federal Government had banned the use of Hijab, the Muslim women's dressing symbol of modesty.\n

\n

\n This is contained in a statement issued in Abuja on Friday by the Senior Special Assistant on Media and Publicity to the President, Malam Garba Shehu.\n

\n

\n Giving a clarification on the pronouncement of the President on the issue during last Wednesday's Presidential Media Chat, Shehu said that the speculations were unfounded.\n

\n

\n He said that the Buhari-led Federal Government would always respect the rights of Muslims to protect their modesty and allow religious freedom.\n

\n
\n
\n
\n
\n

\n Shehu said that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violated the teachings of Islam.\n

\n

\n He, however, said that Buhari would not take any decision on the issue without due consultation with all the stakeholders.\n

\n

\n He said that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.\n

\n

\n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" he said.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF", "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"} -{"url": "http://www.ce_news_article.org/2016/01/02/201601020108.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 810, "end": 811, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n President Muhammadu Buhari says his government will do "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 16, "end": 18, "input": "tokens", "text": "Rescue Chibok Girls \n President Muhammadu Buhari says his government will do "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}], "key": "muhammadu buhari", "value": "Muhammadu Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 58, "end": 59, "input": "tokens", "text": "Women In Politics Forum ( WIPF ) . \n The girls "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_relaxed", "context": {"start": 72, "end": 73, "input": "tokens", "text": "Women In Politics Forum ( WIPF ) . \n The girls "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}], "key": "wipf", "value": "WIPF"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 85, "end": 86, "input": "tokens", "text": ", 2014 . \n President Buhari had Wednesday during the presidential "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 144, "end": 145, "input": "tokens", "text": "to his administration . \n Buhari also disclosed that a committee "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 213, "end": 214, "input": "tokens", "text": "through the committee . \n Buhari said he had compiled a "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 407, "end": 408, "input": "tokens", "text": "women in his government , Buhari assured that women would \" "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 444, "end": 445, "input": "tokens", "text": "against his administration , President Buhari maintained that steps must taken "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 8, "input": "tokens", "text": "January 2016 \n Nigeria : Buhari - I Will Rescue Chibok "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 99, "end": 100, "input": "tokens", "text": ", 2014 . \n President Buhari had Wednesday during the presidential "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 158, "end": 159, "input": "tokens", "text": "to his administration . \n Buhari also disclosed that a committee "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 227, "end": 228, "input": "tokens", "text": "through the committee . \n Buhari said he had compiled a "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 421, "end": 422, "input": "tokens", "text": "women in his government , Buhari assured that women would \" "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 458, "end": 459, "input": "tokens", "text": "against his administration , President Buhari maintained that steps must taken "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "title", "context": {"start": 2, "end": 3, "input": "tokens", "text": "Nigeria : Buhari - I Will Rescue Chibok "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 162, "end": 163, "input": "tokens", "text": "and resettle the Internally Displaced Persons ( IDPs ) would soon "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Persons"}, {"source": {"segment": "content_relaxed", "context": {"start": 176, "end": 177, "input": "tokens", "text": "and resettle the Internally Displaced Persons ( IDPs ) would soon "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Persons"}], "key": "persons", "value": "Persons"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 196, "end": 198, "input": "tokens", "text": ") , would also include Aliko Dangote , saying local and foreign "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aliko Dangote"}, {"source": {"segment": "content_relaxed", "context": {"start": 210, "end": 212, "input": "tokens", "text": ") , would also include Aliko Dangote , saying local and foreign "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aliko Dangote"}], "key": "aliko dangote", "value": "Aliko Dangote"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 559, "end": 561, "input": "tokens", "text": "political parties and led by Ebere Ifendu of the Labour Party , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ebere Ifendu"}, {"source": {"segment": "content_relaxed", "context": {"start": 573, "end": 575, "input": "tokens", "text": "political parties and led by Ebere Ifendu of the Labour Party , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ebere Ifendu"}], "key": "ebere ifendu", "value": "Ebere Ifendu"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 7, "end": 11, "input": "tokens", "text": "Buhari - I Will Rescue Chibok Girls - allAfrica . com "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chibok Girls - allAfrica"}], "key": "chibok girls - allafrica", "value": "Chibok Girls - allAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "method": "rearrange_description"}], "key": "description", "value": " \n President Muhammadu Buhari says his government will do all within its powers in making the best efforts to free the over 200 abducted Chibok schoolgirls from the captivity of the Boko Haram sect. \n The president was speaking at the Aso Rock Presidential Villa in Abuja yesterday while receiving him the Women In Politics Forum (WIPF). \n The girls were kidnapped from the Government Secondary School, Chibok, Borno State, on April 14, 2014. \n President Buhari had Wednesday during the presidential media chat said there was no credible intelligence report on the whereabouts and the condition of the missing girls. \n But the president assured Friday that the fight for the return of the abducted schoolgirls was ongoing and \"continues to be a most worrying issue\" to his administration. \n Buhari also disclosed that a committee to rehabilitate the infrastructure in the northeast and resettle the Internally Displaced Persons (IDPs) would soon be formally inaugurated. \n The president said the committee, to be headed by former Defence Minister General Theophilus Danjuma (rtd), would also include Aliko Dangote, saying local and foreign assistance received will be channelled through the committee. \n Buhari said he had compiled a list of damaged infrastructure including schools and bridges and handed them to the leaders of the G7 countries and the United States. \n \"I didn't ask for a kobo (in cash). It is up to them to choose what they will undertake. Already, some of them have sent teams to verify our assertions\", he said. \n The president lamented the effects of the activities of the Boko Haram terrorist group on women and children who he described as the worst-hit victims of the insurgency. \n \"In the north-east, what I saw for myself and on those clips is a source of concern for people with conscience. They (victims) are mostly women and children who are orphaned. Some of them don't even know where they come from. This is the pathetic situation in which the country has found itself\", he said. \n While acknowledging the case made by the WIPF for a better representation of women in his government, Buhari assured that women would \"fare well\" in the composition of federal parastatals and their boards in the first quarter of this year. \n On the allegation of slowness against his administration, President Buhari maintained that steps must taken with caution in order to avoid mistakes. \n \"People say we are slow. We are trying to change the structures put in place by our predecessors in office for 16 years. If we hurry it, we will make mistakes. That will be a disaster\", he said. \n The president described the 2016 budget proposal as good for employment and manufacturing, saying \"By the end of the second quarter, the full impact of these positive measures will be felt\". \n Earlier, the WIPF, comprising women leaders from 26 registered political parties and led by Ebere Ifendu of the Labour Party, had declared support for the federal government's war against corruption and insecurity. \n The forum, which sought laws that would promote gender equity, also urged action on the implementation of the Violence Against Persons Prohibition Act. \n A statement by the Senior Special Assistant to the President on Media and Publicity, Mallam Garba Shehu, said the WIPF made the record of being the first organisation to be received by Buhari in the new year. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 780, "end": 781, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Buhari - I Will Rescue Chibok Girls - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 24, "end": 25, "input": "tokens", "text": "free the over 200 abducted Chibok schoolgirls from the captivity of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chibok"}, {"source": {"segment": "content_relaxed", "context": {"start": 38, "end": 39, "input": "tokens", "text": "free the over 200 abducted Chibok schoolgirls from the captivity of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chibok"}], "key": "chibok", "value": "Chibok"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 30, "end": 32, "input": "tokens", "text": "schoolgirls from the captivity of the Boko Haram sect . \n The "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Boko"}, {"source": {"segment": "content_relaxed", "context": {"start": 44, "end": 46, "input": "tokens", "text": "schoolgirls from the captivity of the Boko Haram sect . \n The "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Boko"}], "key": "the boko", "value": "the Boko"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 74, "end": 76, "input": "tokens", "text": "Secondary School , Chibok , Borno State , on April 14 , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Borno State"}, {"source": {"segment": "content_relaxed", "context": {"start": 88, "end": 90, "input": "tokens", "text": "Secondary School , Chibok , Borno State , on April 14 , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Borno State"}], "key": "borno state", "value": "Borno State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 184, "end": 189, "input": "tokens", "text": "to be headed by former Defence Minister General Theophilus Danjuma ( rtd ) , would "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Defence Minister General Theophilus Danjuma"}, {"source": {"segment": "content_relaxed", "context": {"start": 198, "end": 203, "input": "tokens", "text": "to be headed by former Defence Minister General Theophilus Danjuma ( rtd ) , would "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Defence Minister General Theophilus Danjuma"}], "key": "defence minister general theophilus danjuma", "value": "Defence Minister General Theophilus Danjuma"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 296, "end": 299, "input": "tokens", "text": "effects of the activities of the Boko Haram terrorist group on women and "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 310, "end": 313, "input": "tokens", "text": "effects of the activities of the Boko Haram terrorist group on women and "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Boko Haram"}], "key": "the boko haram", "value": "the Boko Haram"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 396, "end": 397, "input": "tokens", "text": "the case made by the WIPF for a better representation of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_strict", "context": {"start": 546, "end": 547, "input": "tokens", "text": ". \n Earlier , the WIPF , comprising women leaders from "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_strict", "context": {"start": 630, "end": 631, "input": "tokens", "text": "Garba Shehu , said the WIPF made the record of being "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_relaxed", "context": {"start": 410, "end": 411, "input": "tokens", "text": "the case made by the WIPF for a better representation of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_relaxed", "context": {"start": 560, "end": 561, "input": "tokens", "text": ". \n Earlier , the WIPF , comprising women leaders from "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_relaxed", "context": {"start": 644, "end": 645, "input": "tokens", "text": "Garba Shehu , said the WIPF made the record of being "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}], "key": "wipf", "value": "WIPF"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 562, "end": 565, "input": "tokens", "text": "led by Ebere Ifendu of the Labour Party , had declared support for "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Labour Party"}, {"source": {"segment": "content_relaxed", "context": {"start": 576, "end": 579, "input": "tokens", "text": "led by Ebere Ifendu of the Labour Party , had declared support for "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Labour Party"}], "key": "the labour party", "value": "the Labour Party"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 612, "end": 616, "input": "tokens", "text": ". \n A statement by the Senior Special Assistant to the President on Media "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}, {"source": {"segment": "content_relaxed", "context": {"start": 626, "end": 630, "input": "tokens", "text": ". \n A statement by the Senior Special Assistant to the President on Media "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}], "key": "the senior special assistant", "value": "the Senior Special Assistant"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 624, "end": 627, "input": "tokens", "text": "on Media and Publicity , Mallam Garba Shehu , said the WIPF made "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mallam Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 638, "end": 641, "input": "tokens", "text": "on Media and Publicity , Mallam Garba Shehu , said the WIPF made "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mallam Garba Shehu"}], "key": "mallam garba shehu", "value": "Mallam Garba Shehu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 667, "end": 669, "input": "tokens", "text": ". \n Copyright \n 2016 Daily Trust . All rights reserved . "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Daily Trust"}], "key": "daily trust", "value": "Daily Trust"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 674, "end": 675, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 676, "end": 679, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 47, "end": 48, "input": "tokens", "text": "Aso Rock Presidential Villa in Abuja yesterday while receiving him the "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 61, "end": 62, "input": "tokens", "text": "Aso Rock Presidential Villa in Abuja yesterday while receiving him the "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 72, "end": 73, "input": "tokens", "text": "the Government Secondary School , Chibok , Borno State , on "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chibok"}, {"source": {"segment": "content_relaxed", "context": {"start": 86, "end": 87, "input": "tokens", "text": "the Government Secondary School , Chibok , Borno State , on "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chibok"}], "key": "chibok", "value": "Chibok"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 238, "end": 241, "input": "tokens", "text": "of the G7 countries and the United States . \n \" I didn "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 252, "end": 255, "input": "tokens", "text": "of the G7 countries and the United States . \n \" I didn "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}], "key": "the united states", "value": "the United States"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 643, "end": 644, "input": "tokens", "text": "organisation to be received by Buhari in the new year . "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 657, "end": 658, "input": "tokens", "text": "organisation to be received by Buhari in the new year . "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Buhari - I Will "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Buhari - I Will "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}]}, "content_extraction": {"content_relaxed": {"text": " \n 1 January 2016 \n Nigeria: Buhari - I Will Rescue Chibok Girls \n President Muhammadu Buhari says his government will do all within its powers in making the best efforts to free the over 200 abducted Chibok schoolgirls from the captivity of the Boko Haram sect. \n The president was speaking at the Aso Rock Presidential Villa in Abuja yesterday while receiving him the Women In Politics Forum (WIPF). \n The girls were kidnapped from the Government Secondary School, Chibok, Borno State, on April 14, 2014. \n President Buhari had Wednesday during the presidential media chat said there was no credible intelligence report on the whereabouts and the condition of the missing girls. \n But the president assured Friday that the fight for the return of the abducted schoolgirls was ongoing and \"continues to be a most worrying issue\" to his administration. \n Buhari also disclosed that a committee to rehabilitate the infrastructure in the northeast and resettle the Internally Displaced Persons (IDPs) would soon be formally inaugurated. \n The president said the committee, to be headed by former Defence Minister General Theophilus Danjuma (rtd), would also include Aliko Dangote, saying local and foreign assistance received will be channelled through the committee. \n Buhari said he had compiled a list of damaged infrastructure including schools and bridges and handed them to the leaders of the G7 countries and the United States. \n \"I didn't ask for a kobo (in cash). It is up to them to choose what they will undertake. Already, some of them have sent teams to verify our assertions\", he said. \n The president lamented the effects of the activities of the Boko Haram terrorist group on women and children who he described as the worst-hit victims of the insurgency. \n \"In the north-east, what I saw for myself and on those clips is a source of concern for people with conscience. They (victims) are mostly women and children who are orphaned. Some of them don't even know where they come from. This is the pathetic situation in which the country has found itself\", he said. \n While acknowledging the case made by the WIPF for a better representation of women in his government, Buhari assured that women would \"fare well\" in the composition of federal parastatals and their boards in the first quarter of this year. \n On the allegation of slowness against his administration, President Buhari maintained that steps must taken with caution in order to avoid mistakes. \n \"People say we are slow. We are trying to change the structures put in place by our predecessors in office for 16 years. If we hurry it, we will make mistakes. That will be a disaster\", he said. \n The president described the 2016 budget proposal as good for employment and manufacturing, saying \"By the end of the second quarter, the full impact of these positive measures will be felt\". \n Earlier, the WIPF, comprising women leaders from 26 registered political parties and led by Ebere Ifendu of the Labour Party, had declared support for the federal government's war against corruption and insecurity. \n The forum, which sought laws that would promote gender equity, also urged action on the implementation of the Violence Against Persons Prohibition Act. \n A statement by the Senior Special Assistant to the President on Media and Publicity, Mallam Garba Shehu, said the WIPF made the record of being the first organisation to be received by Buhari in the new year. \n Copyright \n 2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "1", "january", "2016", "\n", "nigeria", ":", "buhari", "-", "i", "will", "rescue", "chibok", "girls", "\n", "president", "muhammadu", "buhari", "says", "his", "government", "will", "do", "all", "within", "its", "powers", "in", "making", "the", "best", "efforts", "to", "free", "the", "over", "200", "abducted", "chibok", "schoolgirls", "from", "the", "captivity", "of", "the", "boko", "haram", "sect", ".", "\n", "the", "president", "was", "speaking", "at", "the", "aso", "rock", "presidential", "villa", "in", "abuja", "yesterday", "while", "receiving", "him", "the", "women", "in", "politics", "forum", "(", "wipf", ")", ".", "\n", "the", "girls", "were", "kidnapped", "from", "the", "government", "secondary", "school", ",", "chibok", ",", "borno", "state", ",", "on", "april", "14", ",", "2014", ".", "\n", "president", "buhari", "had", "wednesday", "during", "the", "presidential", "media", "chat", "said", "there", "was", "no", "credible", "intelligence", "report", "on", "the", "whereabouts", "and", "the", "condition", "of", "the", "missing", "girls", ".", "\n", "but", "the", "president", "assured", "friday", "that", "the", "fight", "for", "the", "return", "of", "the", "abducted", "schoolgirls", "was", "ongoing", "and", "\"", "continues", "to", "be", "a", "most", "worrying", "issue", "\"", "to", "his", "administration", ".", "\n", "buhari", "also", "disclosed", "that", "a", "committee", "to", "rehabilitate", "the", "infrastructure", "in", "the", "northeast", "and", "resettle", "the", "internally", "displaced", "persons", "(", "idps", ")", "would", "soon", "be", "formally", "inaugurated", ".", "\n", "the", "president", "said", "the", "committee", ",", "to", "be", "headed", "by", "former", "defence", "minister", "general", "theophilus", "danjuma", "(", "rtd", ")", ",", "would", "also", "include", "aliko", "dangote", ",", "saying", "local", "and", "foreign", "assistance", "received", "will", "be", "channelled", "through", "the", "committee", ".", "\n", "buhari", "said", "he", "had", "compiled", "a", "list", "of", "damaged", "infrastructure", "including", "schools", "and", "bridges", "and", "handed", "them", "to", "the", "leaders", "of", "the", "g7", "countries", "and", "the", "united", "states", ".", "\n", "\"", "i", "didn", "'", "t", "ask", "for", "a", "kobo", "(", "in", "cash", ")", ".", "it", "is", "up", "to", "them", "to", "choose", "what", "they", "will", "undertake", ".", "already", ",", "some", "of", "them", "have", "sent", "teams", "to", "verify", "our", "assertions", "\"", ",", "he", "said", ".", "\n", "the", "president", "lamented", "the", "effects", "of", "the", "activities", "of", "the", "boko", "haram", "terrorist", "group", "on", "women", "and", "children", "who", "he", "described", "as", "the", "worst", "-", "hit", "victims", "of", "the", "insurgency", ".", "\n", "\"", "in", "the", "north", "-", "east", ",", "what", "i", "saw", "for", "myself", "and", "on", "those", "clips", "is", "a", "source", "of", "concern", "for", "people", "with", "conscience", ".", "they", "(", "victims", ")", "are", "mostly", "women", "and", "children", "who", "are", "orphaned", ".", "some", "of", "them", "don", "'", "t", "even", "know", "where", "they", "come", "from", ".", "this", "is", "the", "pathetic", "situation", "in", "which", "the", "country", "has", "found", "itself", "\"", ",", "he", "said", ".", "\n", "while", "acknowledging", "the", "case", "made", "by", "the", "wipf", "for", "a", "better", "representation", "of", "women", "in", "his", "government", ",", "buhari", "assured", "that", "women", "would", "\"", "fare", "well", "\"", "in", "the", "composition", "of", "federal", "parastatals", "and", "their", "boards", "in", "the", "first", "quarter", "of", "this", "year", ".", "\n", "on", "the", "allegation", "of", "slowness", "against", "his", "administration", ",", "president", "buhari", "maintained", "that", "steps", "must", "taken", "with", "caution", "in", "order", "to", "avoid", "mistakes", ".", "\n", "\"", "people", "say", "we", "are", "slow", ".", "we", "are", "trying", "to", "change", "the", "structures", "put", "in", "place", "by", "our", "predecessors", "in", "office", "for", "16", "years", ".", "if", "we", "hurry", "it", ",", "we", "will", "make", "mistakes", ".", "that", "will", "be", "a", "disaster", "\"", ",", "he", "said", ".", "\n", "the", "president", "described", "the", "2016", "budget", "proposal", "as", "good", "for", "employment", "and", "manufacturing", ",", "saying", "\"", "by", "the", "end", "of", "the", "second", "quarter", ",", "the", "full", "impact", "of", "these", "positive", "measures", "will", "be", "felt", "\"", ".", "\n", "earlier", ",", "the", "wipf", ",", "comprising", "women", "leaders", "from", "26", "registered", "political", "parties", "and", "led", "by", "ebere", "ifendu", "of", "the", "labour", "party", ",", "had", "declared", "support", "for", "the", "federal", "government", "'", "s", "war", "against", "corruption", "and", "insecurity", ".", "\n", "the", "forum", ",", "which", "sought", "laws", "that", "would", "promote", "gender", "equity", ",", "also", "urged", "action", "on", "the", "implementation", "of", "the", "violence", "against", "persons", "prohibition", "act", ".", "\n", "a", "statement", "by", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "mallam", "garba", "shehu", ",", "said", "the", "wipf", "made", "the", "record", "of", "being", "the", "first", "organisation", "to", "be", "received", "by", "buhari", "in", "the", "new", "year", ".", "\n", "copyright", "\n", "2016", "daily", "trust", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "1", "January", "2016", "\n", "Nigeria", ":", "Buhari", "-", "I", "Will", "Rescue", "Chibok", "Girls", "\n", "President", "Muhammadu", "Buhari", "says", "his", "government", "will", "do", "all", "within", "its", "powers", "in", "making", "the", "best", "efforts", "to", "free", "the", "over", "200", "abducted", "Chibok", "schoolgirls", "from", "the", "captivity", "of", "the", "Boko", "Haram", "sect", ".", "\n", "The", "president", "was", "speaking", "at", "the", "Aso", "Rock", "Presidential", "Villa", "in", "Abuja", "yesterday", "while", "receiving", "him", "the", "Women", "In", "Politics", "Forum", "(", "WIPF", ")", ".", "\n", "The", "girls", "were", "kidnapped", "from", "the", "Government", "Secondary", "School", ",", "Chibok", ",", "Borno", "State", ",", "on", "April", "14", ",", "2014", ".", "\n", "President", "Buhari", "had", "Wednesday", "during", "the", "presidential", "media", "chat", "said", "there", "was", "no", "credible", "intelligence", "report", "on", "the", "whereabouts", "and", "the", "condition", "of", "the", "missing", "girls", ".", "\n", "But", "the", "president", "assured", "Friday", "that", "the", "fight", "for", "the", "return", "of", "the", "abducted", "schoolgirls", "was", "ongoing", "and", "\"", "continues", "to", "be", "a", "most", "worrying", "issue", "\"", "to", "his", "administration", ".", "\n", "Buhari", "also", "disclosed", "that", "a", "committee", "to", "rehabilitate", "the", "infrastructure", "in", "the", "northeast", "and", "resettle", "the", "Internally", "Displaced", "Persons", "(", "IDPs", ")", "would", "soon", "be", "formally", "inaugurated", ".", "\n", "The", "president", "said", "the", "committee", ",", "to", "be", "headed", "by", "former", "Defence", "Minister", "General", "Theophilus", "Danjuma", "(", "rtd", ")", ",", "would", "also", "include", "Aliko", "Dangote", ",", "saying", "local", "and", "foreign", "assistance", "received", "will", "be", "channelled", "through", "the", "committee", ".", "\n", "Buhari", "said", "he", "had", "compiled", "a", "list", "of", "damaged", "infrastructure", "including", "schools", "and", "bridges", "and", "handed", "them", "to", "the", "leaders", "of", "the", "G7", "countries", "and", "the", "United", "States", ".", "\n", "\"", "I", "didn", "'", "t", "ask", "for", "a", "kobo", "(", "in", "cash", ")", ".", "It", "is", "up", "to", "them", "to", "choose", "what", "they", "will", "undertake", ".", "Already", ",", "some", "of", "them", "have", "sent", "teams", "to", "verify", "our", "assertions", "\"", ",", "he", "said", ".", "\n", "The", "president", "lamented", "the", "effects", "of", "the", "activities", "of", "the", "Boko", "Haram", "terrorist", "group", "on", "women", "and", "children", "who", "he", "described", "as", "the", "worst", "-", "hit", "victims", "of", "the", "insurgency", ".", "\n", "\"", "In", "the", "north", "-", "east", ",", "what", "I", "saw", "for", "myself", "and", "on", "those", "clips", "is", "a", "source", "of", "concern", "for", "people", "with", "conscience", ".", "They", "(", "victims", ")", "are", "mostly", "women", "and", "children", "who", "are", "orphaned", ".", "Some", "of", "them", "don", "'", "t", "even", "know", "where", "they", "come", "from", ".", "This", "is", "the", "pathetic", "situation", "in", "which", "the", "country", "has", "found", "itself", "\"", ",", "he", "said", ".", "\n", "While", "acknowledging", "the", "case", "made", "by", "the", "WIPF", "for", "a", "better", "representation", "of", "women", "in", "his", "government", ",", "Buhari", "assured", "that", "women", "would", "\"", "fare", "well", "\"", "in", "the", "composition", "of", "federal", "parastatals", "and", "their", "boards", "in", "the", "first", "quarter", "of", "this", "year", ".", "\n", "On", "the", "allegation", "of", "slowness", "against", "his", "administration", ",", "President", "Buhari", "maintained", "that", "steps", "must", "taken", "with", "caution", "in", "order", "to", "avoid", "mistakes", ".", "\n", "\"", "People", "say", "we", "are", "slow", ".", "We", "are", "trying", "to", "change", "the", "structures", "put", "in", "place", "by", "our", "predecessors", "in", "office", "for", "16", "years", ".", "If", "we", "hurry", "it", ",", "we", "will", "make", "mistakes", ".", "That", "will", "be", "a", "disaster", "\"", ",", "he", "said", ".", "\n", "The", "president", "described", "the", "2016", "budget", "proposal", "as", "good", "for", "employment", "and", "manufacturing", ",", "saying", "\"", "By", "the", "end", "of", "the", "second", "quarter", ",", "the", "full", "impact", "of", "these", "positive", "measures", "will", "be", "felt", "\"", ".", "\n", "Earlier", ",", "the", "WIPF", ",", "comprising", "women", "leaders", "from", "26", "registered", "political", "parties", "and", "led", "by", "Ebere", "Ifendu", "of", "the", "Labour", "Party", ",", "had", "declared", "support", "for", "the", "federal", "government", "'", "s", "war", "against", "corruption", "and", "insecurity", ".", "\n", "The", "forum", ",", "which", "sought", "laws", "that", "would", "promote", "gender", "equity", ",", "also", "urged", "action", "on", "the", "implementation", "of", "the", "Violence", "Against", "Persons", "Prohibition", "Act", ".", "\n", "A", "statement", "by", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Mallam", "Garba", "Shehu", ",", "said", "the", "WIPF", "made", "the", "record", "of", "being", "the", "first", "organisation", "to", "be", "received", "by", "Buhari", "in", "the", "new", "year", ".", "\n", "Copyright", "\n", "2016", "Daily", "Trust", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Buhari - I Will "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Nigeria : Buhari - I Will "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 61, "end": 62, "input": "tokens", "text": "Aso Rock Presidential Villa in Abuja yesterday while receiving him the "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Abuja", "context": {"start": 61, "end": 62, "input": "tokens", "text": "Aso Rock Presidential Villa in Abuja yesterday while receiving him the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 86, "end": 87, "input": "tokens", "text": "the Government Secondary School , Chibok , Borno State , on "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Chibok", "context": {"start": 86, "end": 87, "input": "tokens", "text": "the Government Secondary School , Chibok , Borno State , on "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 252, "end": 255, "input": "tokens", "text": "of the G7 countries and the United States . \n \" I didn "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "the United States", "context": {"start": 252, "end": 255, "input": "tokens", "text": "of the G7 countries and the United States . \n \" I didn "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 657, "end": 658, "input": "tokens", "text": "organisation to be received by Buhari in the new year . "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 657, "end": 658, "input": "tokens", "text": "organisation to be received by Buhari in the new year . "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 38, "end": 39, "input": "tokens", "text": "free the over 200 abducted Chibok schoolgirls from the captivity of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Chibok", "context": {"start": 38, "end": 39, "input": "tokens", "text": "free the over 200 abducted Chibok schoolgirls from the captivity of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 44, "end": 46, "input": "tokens", "text": "schoolgirls from the captivity of the Boko Haram sect . \n The "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "the Boko", "context": {"start": 44, "end": 46, "input": "tokens", "text": "schoolgirls from the captivity of the Boko Haram sect . \n The "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 88, "end": 90, "input": "tokens", "text": "Secondary School , Chibok , Borno State , on April 14 , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Borno State", "context": {"start": 88, "end": 90, "input": "tokens", "text": "Secondary School , Chibok , Borno State , on April 14 , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 198, "end": 203, "input": "tokens", "text": "to be headed by former Defence Minister General Theophilus Danjuma ( rtd ) , would "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Defence Minister General Theophilus Danjuma", "context": {"start": 198, "end": 203, "input": "tokens", "text": "to be headed by former Defence Minister General Theophilus Danjuma ( rtd ) , would "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 310, "end": 313, "input": "tokens", "text": "effects of the activities of the Boko Haram terrorist group on women and "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "the Boko Haram", "context": {"start": 310, "end": 313, "input": "tokens", "text": "effects of the activities of the Boko Haram terrorist group on women and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 410, "end": 411, "input": "tokens", "text": "the case made by the WIPF for a better representation of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "WIPF", "context": {"start": 410, "end": 411, "input": "tokens", "text": "the case made by the WIPF for a better representation of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 560, "end": 561, "input": "tokens", "text": ". \n Earlier , the WIPF , comprising women leaders from "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "WIPF", "context": {"start": 560, "end": 561, "input": "tokens", "text": ". \n Earlier , the WIPF , comprising women leaders from "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 576, "end": 579, "input": "tokens", "text": "led by Ebere Ifendu of the Labour Party , had declared support for "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "the Labour Party", "context": {"start": 576, "end": 579, "input": "tokens", "text": "led by Ebere Ifendu of the Labour Party , had declared support for "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 626, "end": 630, "input": "tokens", "text": ". \n A statement by the Senior Special Assistant to the President on Media "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "the Senior Special Assistant", "context": {"start": 626, "end": 630, "input": "tokens", "text": ". \n A statement by the Senior Special Assistant to the President on Media "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 638, "end": 641, "input": "tokens", "text": "on Media and Publicity , Mallam Garba Shehu , said the WIPF made "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Mallam Garba Shehu", "context": {"start": 638, "end": 641, "input": "tokens", "text": "on Media and Publicity , Mallam Garba Shehu , said the WIPF made "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 644, "end": 645, "input": "tokens", "text": "Garba Shehu , said the WIPF made the record of being "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "WIPF", "context": {"start": 644, "end": 645, "input": "tokens", "text": "Garba Shehu , said the WIPF made the record of being "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 667, "end": 669, "input": "tokens", "text": ". \n Copyright \n 2016 Daily Trust . All rights reserved . "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Daily Trust", "context": {"start": 667, "end": 669, "input": "tokens", "text": ". \n Copyright \n 2016 Daily Trust . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 674, "end": 675, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Distributed", "context": {"start": 674, "end": 675, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 676, "end": 679, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "AllAfrica Global Media", "context": {"start": 676, "end": 679, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 810, "end": 811, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "AllAfrica", "context": {"start": 810, "end": 811, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 7, "end": 8, "input": "tokens", "text": "January 2016 \n Nigeria : Buhari - I Will Rescue Chibok "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 7, "end": 8, "input": "tokens", "text": "January 2016 \n Nigeria : Buhari - I Will Rescue Chibok "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 16, "end": 18, "input": "tokens", "text": "Rescue Chibok Girls \n President Muhammadu Buhari says his government will do "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Muhammadu Buhari", "context": {"start": 16, "end": 18, "input": "tokens", "text": "Rescue Chibok Girls \n President Muhammadu Buhari says his government will do "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 72, "end": 73, "input": "tokens", "text": "Women In Politics Forum ( WIPF ) . \n The girls "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "WIPF", "context": {"start": 72, "end": 73, "input": "tokens", "text": "Women In Politics Forum ( WIPF ) . \n The girls "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 99, "end": 100, "input": "tokens", "text": ", 2014 . \n President Buhari had Wednesday during the presidential "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 99, "end": 100, "input": "tokens", "text": ", 2014 . \n President Buhari had Wednesday during the presidential "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 158, "end": 159, "input": "tokens", "text": "to his administration . \n Buhari also disclosed that a committee "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 158, "end": 159, "input": "tokens", "text": "to his administration . \n Buhari also disclosed that a committee "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 176, "end": 177, "input": "tokens", "text": "and resettle the Internally Displaced Persons ( IDPs ) would soon "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Persons", "context": {"start": 176, "end": 177, "input": "tokens", "text": "and resettle the Internally Displaced Persons ( IDPs ) would soon "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 210, "end": 212, "input": "tokens", "text": ") , would also include Aliko Dangote , saying local and foreign "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Aliko Dangote", "context": {"start": 210, "end": 212, "input": "tokens", "text": ") , would also include Aliko Dangote , saying local and foreign "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 227, "end": 228, "input": "tokens", "text": "through the committee . \n Buhari said he had compiled a "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 227, "end": 228, "input": "tokens", "text": "through the committee . \n Buhari said he had compiled a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 421, "end": 422, "input": "tokens", "text": "women in his government , Buhari assured that women would \" "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 421, "end": 422, "input": "tokens", "text": "women in his government , Buhari assured that women would \" "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 458, "end": 459, "input": "tokens", "text": "against his administration , President Buhari maintained that steps must taken "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 458, "end": 459, "input": "tokens", "text": "against his administration , President Buhari maintained that steps must taken "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 573, "end": 575, "input": "tokens", "text": "political parties and led by Ebere Ifendu of the Labour Party , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Ebere Ifendu", "context": {"start": 573, "end": 575, "input": "tokens", "text": "political parties and led by Ebere Ifendu of the Labour Party , "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 780, "end": 781, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "AllAfrica", "context": {"start": 780, "end": 781, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020108.html"}, "content_strict": {"text": " \n President Muhammadu Buhari says his government will do all within its powers in making the best efforts to free the over 200 abducted Chibok schoolgirls from the captivity of the Boko Haram sect. \n The president was speaking at the Aso Rock Presidential Villa in Abuja yesterday while receiving him the Women In Politics Forum (WIPF). \n The girls were kidnapped from the Government Secondary School, Chibok, Borno State, on April 14, 2014. \n President Buhari had Wednesday during the presidential media chat said there was no credible intelligence report on the whereabouts and the condition of the missing girls. \n But the president assured Friday that the fight for the return of the abducted schoolgirls was ongoing and \"continues to be a most worrying issue\" to his administration. \n Buhari also disclosed that a committee to rehabilitate the infrastructure in the northeast and resettle the Internally Displaced Persons (IDPs) would soon be formally inaugurated. \n The president said the committee, to be headed by former Defence Minister General Theophilus Danjuma (rtd), would also include Aliko Dangote, saying local and foreign assistance received will be channelled through the committee. \n Buhari said he had compiled a list of damaged infrastructure including schools and bridges and handed them to the leaders of the G7 countries and the United States. \n \"I didn't ask for a kobo (in cash). It is up to them to choose what they will undertake. Already, some of them have sent teams to verify our assertions\", he said. \n The president lamented the effects of the activities of the Boko Haram terrorist group on women and children who he described as the worst-hit victims of the insurgency. \n \"In the north-east, what I saw for myself and on those clips is a source of concern for people with conscience. They (victims) are mostly women and children who are orphaned. Some of them don't even know where they come from. This is the pathetic situation in which the country has found itself\", he said. \n While acknowledging the case made by the WIPF for a better representation of women in his government, Buhari assured that women would \"fare well\" in the composition of federal parastatals and their boards in the first quarter of this year. \n On the allegation of slowness against his administration, President Buhari maintained that steps must taken with caution in order to avoid mistakes. \n \"People say we are slow. We are trying to change the structures put in place by our predecessors in office for 16 years. If we hurry it, we will make mistakes. That will be a disaster\", he said. \n The president described the 2016 budget proposal as good for employment and manufacturing, saying \"By the end of the second quarter, the full impact of these positive measures will be felt\". \n Earlier, the WIPF, comprising women leaders from 26 registered political parties and led by Ebere Ifendu of the Labour Party, had declared support for the federal government's war against corruption and insecurity. \n The forum, which sought laws that would promote gender equity, also urged action on the implementation of the Violence Against Persons Prohibition Act. \n A statement by the Senior Special Assistant to the President on Media and Publicity, Mallam Garba Shehu, said the WIPF made the record of being the first organisation to be received by Buhari in the new year. \n ", "simple_tokens": ["\n", "president", "muhammadu", "buhari", "says", "his", "government", "will", "do", "all", "within", "its", "powers", "in", "making", "the", "best", "efforts", "to", "free", "the", "over", "200", "abducted", "chibok", "schoolgirls", "from", "the", "captivity", "of", "the", "boko", "haram", "sect", ".", "\n", "the", "president", "was", "speaking", "at", "the", "aso", "rock", "presidential", "villa", "in", "abuja", "yesterday", "while", "receiving", "him", "the", "women", "in", "politics", "forum", "(", "wipf", ")", ".", "\n", "the", "girls", "were", "kidnapped", "from", "the", "government", "secondary", "school", ",", "chibok", ",", "borno", "state", ",", "on", "april", "14", ",", "2014", ".", "\n", "president", "buhari", "had", "wednesday", "during", "the", "presidential", "media", "chat", "said", "there", "was", "no", "credible", "intelligence", "report", "on", "the", "whereabouts", "and", "the", "condition", "of", "the", "missing", "girls", ".", "\n", "but", "the", "president", "assured", "friday", "that", "the", "fight", "for", "the", "return", "of", "the", "abducted", "schoolgirls", "was", "ongoing", "and", "\"", "continues", "to", "be", "a", "most", "worrying", "issue", "\"", "to", "his", "administration", ".", "\n", "buhari", "also", "disclosed", "that", "a", "committee", "to", "rehabilitate", "the", "infrastructure", "in", "the", "northeast", "and", "resettle", "the", "internally", "displaced", "persons", "(", "idps", ")", "would", "soon", "be", "formally", "inaugurated", ".", "\n", "the", "president", "said", "the", "committee", ",", "to", "be", "headed", "by", "former", "defence", "minister", "general", "theophilus", "danjuma", "(", "rtd", ")", ",", "would", "also", "include", "aliko", "dangote", ",", "saying", "local", "and", "foreign", "assistance", "received", "will", "be", "channelled", "through", "the", "committee", ".", "\n", "buhari", "said", "he", "had", "compiled", "a", "list", "of", "damaged", "infrastructure", "including", "schools", "and", "bridges", "and", "handed", "them", "to", "the", "leaders", "of", "the", "g7", "countries", "and", "the", "united", "states", ".", "\n", "\"", "i", "didn", "'", "t", "ask", "for", "a", "kobo", "(", "in", "cash", ")", ".", "it", "is", "up", "to", "them", "to", "choose", "what", "they", "will", "undertake", ".", "already", ",", "some", "of", "them", "have", "sent", "teams", "to", "verify", "our", "assertions", "\"", ",", "he", "said", ".", "\n", "the", "president", "lamented", "the", "effects", "of", "the", "activities", "of", "the", "boko", "haram", "terrorist", "group", "on", "women", "and", "children", "who", "he", "described", "as", "the", "worst", "-", "hit", "victims", "of", "the", "insurgency", ".", "\n", "\"", "in", "the", "north", "-", "east", ",", "what", "i", "saw", "for", "myself", "and", "on", "those", "clips", "is", "a", "source", "of", "concern", "for", "people", "with", "conscience", ".", "they", "(", "victims", ")", "are", "mostly", "women", "and", "children", "who", "are", "orphaned", ".", "some", "of", "them", "don", "'", "t", "even", "know", "where", "they", "come", "from", ".", "this", "is", "the", "pathetic", "situation", "in", "which", "the", "country", "has", "found", "itself", "\"", ",", "he", "said", ".", "\n", "while", "acknowledging", "the", "case", "made", "by", "the", "wipf", "for", "a", "better", "representation", "of", "women", "in", "his", "government", ",", "buhari", "assured", "that", "women", "would", "\"", "fare", "well", "\"", "in", "the", "composition", "of", "federal", "parastatals", "and", "their", "boards", "in", "the", "first", "quarter", "of", "this", "year", ".", "\n", "on", "the", "allegation", "of", "slowness", "against", "his", "administration", ",", "president", "buhari", "maintained", "that", "steps", "must", "taken", "with", "caution", "in", "order", "to", "avoid", "mistakes", ".", "\n", "\"", "people", "say", "we", "are", "slow", ".", "we", "are", "trying", "to", "change", "the", "structures", "put", "in", "place", "by", "our", "predecessors", "in", "office", "for", "16", "years", ".", "if", "we", "hurry", "it", ",", "we", "will", "make", "mistakes", ".", "that", "will", "be", "a", "disaster", "\"", ",", "he", "said", ".", "\n", "the", "president", "described", "the", "2016", "budget", "proposal", "as", "good", "for", "employment", "and", "manufacturing", ",", "saying", "\"", "by", "the", "end", "of", "the", "second", "quarter", ",", "the", "full", "impact", "of", "these", "positive", "measures", "will", "be", "felt", "\"", ".", "\n", "earlier", ",", "the", "wipf", ",", "comprising", "women", "leaders", "from", "26", "registered", "political", "parties", "and", "led", "by", "ebere", "ifendu", "of", "the", "labour", "party", ",", "had", "declared", "support", "for", "the", "federal", "government", "'", "s", "war", "against", "corruption", "and", "insecurity", ".", "\n", "the", "forum", ",", "which", "sought", "laws", "that", "would", "promote", "gender", "equity", ",", "also", "urged", "action", "on", "the", "implementation", "of", "the", "violence", "against", "persons", "prohibition", "act", ".", "\n", "a", "statement", "by", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "mallam", "garba", "shehu", ",", "said", "the", "wipf", "made", "the", "record", "of", "being", "the", "first", "organisation", "to", "be", "received", "by", "buhari", "in", "the", "new", "year", ".", "\n"], "simple_tokens_original_case": ["\n", "President", "Muhammadu", "Buhari", "says", "his", "government", "will", "do", "all", "within", "its", "powers", "in", "making", "the", "best", "efforts", "to", "free", "the", "over", "200", "abducted", "Chibok", "schoolgirls", "from", "the", "captivity", "of", "the", "Boko", "Haram", "sect", ".", "\n", "The", "president", "was", "speaking", "at", "the", "Aso", "Rock", "Presidential", "Villa", "in", "Abuja", "yesterday", "while", "receiving", "him", "the", "Women", "In", "Politics", "Forum", "(", "WIPF", ")", ".", "\n", "The", "girls", "were", "kidnapped", "from", "the", "Government", "Secondary", "School", ",", "Chibok", ",", "Borno", "State", ",", "on", "April", "14", ",", "2014", ".", "\n", "President", "Buhari", "had", "Wednesday", "during", "the", "presidential", "media", "chat", "said", "there", "was", "no", "credible", "intelligence", "report", "on", "the", "whereabouts", "and", "the", "condition", "of", "the", "missing", "girls", ".", "\n", "But", "the", "president", "assured", "Friday", "that", "the", "fight", "for", "the", "return", "of", "the", "abducted", "schoolgirls", "was", "ongoing", "and", "\"", "continues", "to", "be", "a", "most", "worrying", "issue", "\"", "to", "his", "administration", ".", "\n", "Buhari", "also", "disclosed", "that", "a", "committee", "to", "rehabilitate", "the", "infrastructure", "in", "the", "northeast", "and", "resettle", "the", "Internally", "Displaced", "Persons", "(", "IDPs", ")", "would", "soon", "be", "formally", "inaugurated", ".", "\n", "The", "president", "said", "the", "committee", ",", "to", "be", "headed", "by", "former", "Defence", "Minister", "General", "Theophilus", "Danjuma", "(", "rtd", ")", ",", "would", "also", "include", "Aliko", "Dangote", ",", "saying", "local", "and", "foreign", "assistance", "received", "will", "be", "channelled", "through", "the", "committee", ".", "\n", "Buhari", "said", "he", "had", "compiled", "a", "list", "of", "damaged", "infrastructure", "including", "schools", "and", "bridges", "and", "handed", "them", "to", "the", "leaders", "of", "the", "G7", "countries", "and", "the", "United", "States", ".", "\n", "\"", "I", "didn", "'", "t", "ask", "for", "a", "kobo", "(", "in", "cash", ")", ".", "It", "is", "up", "to", "them", "to", "choose", "what", "they", "will", "undertake", ".", "Already", ",", "some", "of", "them", "have", "sent", "teams", "to", "verify", "our", "assertions", "\"", ",", "he", "said", ".", "\n", "The", "president", "lamented", "the", "effects", "of", "the", "activities", "of", "the", "Boko", "Haram", "terrorist", "group", "on", "women", "and", "children", "who", "he", "described", "as", "the", "worst", "-", "hit", "victims", "of", "the", "insurgency", ".", "\n", "\"", "In", "the", "north", "-", "east", ",", "what", "I", "saw", "for", "myself", "and", "on", "those", "clips", "is", "a", "source", "of", "concern", "for", "people", "with", "conscience", ".", "They", "(", "victims", ")", "are", "mostly", "women", "and", "children", "who", "are", "orphaned", ".", "Some", "of", "them", "don", "'", "t", "even", "know", "where", "they", "come", "from", ".", "This", "is", "the", "pathetic", "situation", "in", "which", "the", "country", "has", "found", "itself", "\"", ",", "he", "said", ".", "\n", "While", "acknowledging", "the", "case", "made", "by", "the", "WIPF", "for", "a", "better", "representation", "of", "women", "in", "his", "government", ",", "Buhari", "assured", "that", "women", "would", "\"", "fare", "well", "\"", "in", "the", "composition", "of", "federal", "parastatals", "and", "their", "boards", "in", "the", "first", "quarter", "of", "this", "year", ".", "\n", "On", "the", "allegation", "of", "slowness", "against", "his", "administration", ",", "President", "Buhari", "maintained", "that", "steps", "must", "taken", "with", "caution", "in", "order", "to", "avoid", "mistakes", ".", "\n", "\"", "People", "say", "we", "are", "slow", ".", "We", "are", "trying", "to", "change", "the", "structures", "put", "in", "place", "by", "our", "predecessors", "in", "office", "for", "16", "years", ".", "If", "we", "hurry", "it", ",", "we", "will", "make", "mistakes", ".", "That", "will", "be", "a", "disaster", "\"", ",", "he", "said", ".", "\n", "The", "president", "described", "the", "2016", "budget", "proposal", "as", "good", "for", "employment", "and", "manufacturing", ",", "saying", "\"", "By", "the", "end", "of", "the", "second", "quarter", ",", "the", "full", "impact", "of", "these", "positive", "measures", "will", "be", "felt", "\"", ".", "\n", "Earlier", ",", "the", "WIPF", ",", "comprising", "women", "leaders", "from", "26", "registered", "political", "parties", "and", "led", "by", "Ebere", "Ifendu", "of", "the", "Labour", "Party", ",", "had", "declared", "support", "for", "the", "federal", "government", "'", "s", "war", "against", "corruption", "and", "insecurity", ".", "\n", "The", "forum", ",", "which", "sought", "laws", "that", "would", "promote", "gender", "equity", ",", "also", "urged", "action", "on", "the", "implementation", "of", "the", "Violence", "Against", "Persons", "Prohibition", "Act", ".", "\n", "A", "statement", "by", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Mallam", "Garba", "Shehu", ",", "said", "the", "WIPF", "made", "the", "record", "of", "being", "the", "first", "organisation", "to", "be", "received", "by", "Buhari", "in", "the", "new", "year", ".", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 24, "end": 25, "input": "tokens", "text": "free the over 200 abducted Chibok schoolgirls from the captivity of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Chibok", "context": {"start": 24, "end": 25, "input": "tokens", "text": "free the over 200 abducted Chibok schoolgirls from the captivity of "}}, {"origin": {"segment": "content_strict", "context": {"start": 30, "end": 32, "input": "tokens", "text": "schoolgirls from the captivity of the Boko Haram sect . \n The "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "the Boko", "context": {"start": 30, "end": 32, "input": "tokens", "text": "schoolgirls from the captivity of the Boko Haram sect . \n The "}}, {"origin": {"segment": "content_strict", "context": {"start": 74, "end": 76, "input": "tokens", "text": "Secondary School , Chibok , Borno State , on April 14 , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Borno State", "context": {"start": 74, "end": 76, "input": "tokens", "text": "Secondary School , Chibok , Borno State , on April 14 , "}}, {"origin": {"segment": "content_strict", "context": {"start": 184, "end": 189, "input": "tokens", "text": "to be headed by former Defence Minister General Theophilus Danjuma ( rtd ) , would "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Defence Minister General Theophilus Danjuma", "context": {"start": 184, "end": 189, "input": "tokens", "text": "to be headed by former Defence Minister General Theophilus Danjuma ( rtd ) , would "}}, {"origin": {"segment": "content_strict", "context": {"start": 296, "end": 299, "input": "tokens", "text": "effects of the activities of the Boko Haram terrorist group on women and "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "the Boko Haram", "context": {"start": 296, "end": 299, "input": "tokens", "text": "effects of the activities of the Boko Haram terrorist group on women and "}}, {"origin": {"segment": "content_strict", "context": {"start": 396, "end": 397, "input": "tokens", "text": "the case made by the WIPF for a better representation of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "WIPF", "context": {"start": 396, "end": 397, "input": "tokens", "text": "the case made by the WIPF for a better representation of "}}, {"origin": {"segment": "content_strict", "context": {"start": 546, "end": 547, "input": "tokens", "text": ". \n Earlier , the WIPF , comprising women leaders from "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "WIPF", "context": {"start": 546, "end": 547, "input": "tokens", "text": ". \n Earlier , the WIPF , comprising women leaders from "}}, {"origin": {"segment": "content_strict", "context": {"start": 562, "end": 565, "input": "tokens", "text": "led by Ebere Ifendu of the Labour Party , had declared support for "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "the Labour Party", "context": {"start": 562, "end": 565, "input": "tokens", "text": "led by Ebere Ifendu of the Labour Party , had declared support for "}}, {"origin": {"segment": "content_strict", "context": {"start": 612, "end": 616, "input": "tokens", "text": ". \n A statement by the Senior Special Assistant to the President on Media "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "the Senior Special Assistant", "context": {"start": 612, "end": 616, "input": "tokens", "text": ". \n A statement by the Senior Special Assistant to the President on Media "}}, {"origin": {"segment": "content_strict", "context": {"start": 624, "end": 627, "input": "tokens", "text": "on Media and Publicity , Mallam Garba Shehu , said the WIPF made "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Mallam Garba Shehu", "context": {"start": 624, "end": 627, "input": "tokens", "text": "on Media and Publicity , Mallam Garba Shehu , said the WIPF made "}}, {"origin": {"segment": "content_strict", "context": {"start": 630, "end": 631, "input": "tokens", "text": "Garba Shehu , said the WIPF made the record of being "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "WIPF", "context": {"start": 630, "end": 631, "input": "tokens", "text": "Garba Shehu , said the WIPF made the record of being "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 47, "end": 48, "input": "tokens", "text": "Aso Rock Presidential Villa in Abuja yesterday while receiving him the "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Abuja", "context": {"start": 47, "end": 48, "input": "tokens", "text": "Aso Rock Presidential Villa in Abuja yesterday while receiving him the "}}, {"origin": {"segment": "content_strict", "context": {"start": 72, "end": 73, "input": "tokens", "text": "the Government Secondary School , Chibok , Borno State , on "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Chibok", "context": {"start": 72, "end": 73, "input": "tokens", "text": "the Government Secondary School , Chibok , Borno State , on "}}, {"origin": {"segment": "content_strict", "context": {"start": 238, "end": 241, "input": "tokens", "text": "of the G7 countries and the United States . \n \" I didn "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "the United States", "context": {"start": 238, "end": 241, "input": "tokens", "text": "of the G7 countries and the United States . \n \" I didn "}}, {"origin": {"segment": "content_strict", "context": {"start": 643, "end": 644, "input": "tokens", "text": "organisation to be received by Buhari in the new year . "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 643, "end": 644, "input": "tokens", "text": "organisation to be received by Buhari in the new year . "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n President Muhammadu Buhari says his government will do "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Muhammadu Buhari", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n President Muhammadu Buhari says his government will do "}}, {"origin": {"segment": "content_strict", "context": {"start": 58, "end": 59, "input": "tokens", "text": "Women In Politics Forum ( WIPF ) . \n The girls "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "WIPF", "context": {"start": 58, "end": 59, "input": "tokens", "text": "Women In Politics Forum ( WIPF ) . \n The girls "}}, {"origin": {"segment": "content_strict", "context": {"start": 85, "end": 86, "input": "tokens", "text": ", 2014 . \n President Buhari had Wednesday during the presidential "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 85, "end": 86, "input": "tokens", "text": ", 2014 . \n President Buhari had Wednesday during the presidential "}}, {"origin": {"segment": "content_strict", "context": {"start": 144, "end": 145, "input": "tokens", "text": "to his administration . \n Buhari also disclosed that a committee "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 144, "end": 145, "input": "tokens", "text": "to his administration . \n Buhari also disclosed that a committee "}}, {"origin": {"segment": "content_strict", "context": {"start": 162, "end": 163, "input": "tokens", "text": "and resettle the Internally Displaced Persons ( IDPs ) would soon "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Persons", "context": {"start": 162, "end": 163, "input": "tokens", "text": "and resettle the Internally Displaced Persons ( IDPs ) would soon "}}, {"origin": {"segment": "content_strict", "context": {"start": 196, "end": 198, "input": "tokens", "text": ") , would also include Aliko Dangote , saying local and foreign "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Aliko Dangote", "context": {"start": 196, "end": 198, "input": "tokens", "text": ") , would also include Aliko Dangote , saying local and foreign "}}, {"origin": {"segment": "content_strict", "context": {"start": 213, "end": 214, "input": "tokens", "text": "through the committee . \n Buhari said he had compiled a "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 213, "end": 214, "input": "tokens", "text": "through the committee . \n Buhari said he had compiled a "}}, {"origin": {"segment": "content_strict", "context": {"start": 407, "end": 408, "input": "tokens", "text": "women in his government , Buhari assured that women would \" "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 407, "end": 408, "input": "tokens", "text": "women in his government , Buhari assured that women would \" "}}, {"origin": {"segment": "content_strict", "context": {"start": 444, "end": 445, "input": "tokens", "text": "against his administration , President Buhari maintained that steps must taken "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 444, "end": 445, "input": "tokens", "text": "against his administration , President Buhari maintained that steps must taken "}}, {"origin": {"segment": "content_strict", "context": {"start": 559, "end": 561, "input": "tokens", "text": "political parties and led by Ebere Ifendu of the Labour Party , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Ebere Ifendu", "context": {"start": 559, "end": 561, "input": "tokens", "text": "political parties and led by Ebere Ifendu of the Labour Party , "}}]}}}}, "title": {"text": " Nigeria: Buhari - I Will Rescue Chibok Girls - allAfrica.com ", "simple_tokens": ["nigeria", ":", "buhari", "-", "i", "will", "rescue", "chibok", "girls", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Buhari", "-", "I", "Will", "Rescue", "Chibok", "Girls", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Buhari - I Will "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Buhari - I Will "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 2, "end": 3, "input": "tokens", "text": "Nigeria : Buhari - I Will Rescue Chibok "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Buhari", "context": {"start": 2, "end": 3, "input": "tokens", "text": "Nigeria : Buhari - I Will Rescue Chibok "}}, {"origin": {"segment": "title", "context": {"start": 7, "end": 11, "input": "tokens", "text": "Buhari - I Will Rescue Chibok Girls - allAfrica . com "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "value": "Chibok Girls - allAfrica", "context": {"start": 7, "end": 11, "input": "tokens", "text": "Buhari - I Will Rescue Chibok Girls - allAfrica . com "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:11.532469", "@etk_process_time": 0.6030559539794922, "@etk_start_time": "2017-11-15T01:34:10.929413"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Buhari - I Will Rescue Chibok Girls - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: Buhari - I Will Rescue Chibok Girls\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n

\n President Muhammadu Buhari says his government will do all within its powers in making the best efforts to free the over 200 abducted Chibok schoolgirls from the captivity of the Boko Haram sect.\n

\n

\n The president was speaking at the Aso Rock Presidential Villa in Abuja yesterday while receiving him the Women In Politics Forum (WIPF).\n

\n

\n The girls were kidnapped from the Government Secondary School, Chibok, Borno State, on April 14, 2014.\n

\n

\n President Buhari had Wednesday during the presidential media chat said there was no credible intelligence report on the whereabouts and the condition of the missing girls.\n

\n

\n But the president assured Friday that the fight for the return of the abducted schoolgirls was ongoing and \"continues to be a most worrying issue\" to his administration.\n

\n

\n Buhari also disclosed that a committee to rehabilitate the infrastructure in the northeast and resettle the Internally Displaced Persons (IDPs) would soon be formally inaugurated.\n

\n

\n The president said the committee, to be headed by former Defence Minister General Theophilus Danjuma (rtd), would also include Aliko Dangote, saying local and foreign assistance received will be channelled through the committee.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n Buhari said he had compiled a list of damaged infrastructure including schools and bridges and handed them to the leaders of the G7 countries and the United States.\n

\n

\n \"I didn't ask for a kobo (in cash). It is up to them to choose what they will undertake. Already, some of them have sent teams to verify our assertions\", he said.\n

\n
\n
\n
\n
\n

\n The president lamented the effects of the activities of the Boko Haram terrorist group on women and children who he described as the worst-hit victims of the insurgency.\n

\n

\n \"In the north-east, what I saw for myself and on those clips is a source of concern for people with conscience. They (victims) are mostly women and children who are orphaned. Some of them don't even know where they come from. This is the pathetic situation in which the country has found itself\", he said.\n

\n

\n While acknowledging the case made by the WIPF for a better representation of women in his government, Buhari assured that women would \"fare well\" in the composition of federal parastatals and their boards in the first quarter of this year.\n

\n

\n On the allegation of slowness against his administration, President Buhari maintained that steps must taken with caution in order to avoid mistakes.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n \"People say we are slow. We are trying to change the structures put in place by our predecessors in office for 16 years. If we hurry it, we will make mistakes. That will be a disaster\", he said.\n

\n

\n The president described the 2016 budget proposal as good for employment and manufacturing, saying \"By the end of the second quarter, the full impact of these positive measures will be felt\".\n

\n

\n Earlier, the WIPF, comprising women leaders from 26 registered political parties and led by Ebere Ifendu of the Labour Party, had declared support for the federal government's war against corruption and insecurity.\n

\n

\n The forum, which sought laws that would promote gender equity, also urged action on the implementation of the Violence Against Persons Prohibition Act.\n

\n

\n A statement by the Senior Special Assistant to the President on Media and Publicity, Mallam Garba Shehu, said the WIPF made the record of being the first organisation to be received by Buhari in the new year.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C", "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"} -{"url": "http://www.ce_news_article.org/2016/01/02/201601020123.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 698, "end": 699, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 77, "end": 79, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 286, "end": 288, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 36, "end": 38, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 92, "end": 94, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 301, "end": 303, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}], "key": "jesus christ", "value": "Jesus Christ"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 67, "end": 69, "input": "tokens", "text": "Diocese , Most Rev . Augustine Ukwuoma on Friday unveiled the African "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Ukwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 82, "end": 84, "input": "tokens", "text": "Diocese , Most Rev . Augustine Ukwuoma on Friday unveiled the African "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Ukwuoma"}], "key": "augustine ukwuoma", "value": "Augustine Ukwuoma"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 115, "end": 118, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ramesses ii Abusimbel"}, {"source": {"segment": "content_relaxed", "context": {"start": 130, "end": 133, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ramesses ii Abusimbel"}], "key": "ramesses ii abusimbel", "value": "Ramesses ii Abusimbel"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 123, "end": 125, "input": "tokens", "text": "statue in Egypt . \n Ukwuoma Performed the ceremony shortly after a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma Performed"}, {"source": {"segment": "content_relaxed", "context": {"start": 138, "end": 140, "input": "tokens", "text": "statue in Egypt . \n Ukwuoma Performed the ceremony shortly after a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma Performed"}], "key": "ukwuoma performed", "value": "Ukwuoma Performed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 143, "end": 145, "input": "tokens", "text": "Diocese , Most Rev . Gregory Ochiagha , and more than 100 "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gregory Ochiagha"}, {"source": {"segment": "content_relaxed", "context": {"start": 158, "end": 160, "input": "tokens", "text": "Diocese , Most Rev . Gregory Ochiagha , and more than 100 "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gregory Ochiagha"}], "key": "gregory ochiagha", "value": "Gregory Ochiagha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 152, "end": 153, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_strict", "context": {"start": 191, "end": 192, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_relaxed", "context": {"start": 167, "end": 168, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_relaxed", "context": {"start": 206, "end": 207, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}], "key": "st", "value": "St"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 173, "end": 175, "input": "tokens", "text": "NAN ) reports that Chief Obinna Onuoha , who donated the Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 390, "end": 392, "input": "tokens", "text": "and unity . \n Chief Obinna Onuoha , the Managing Director of "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 188, "end": 190, "input": "tokens", "text": "NAN ) reports that Chief Obinna Onuoha , who donated the Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 405, "end": 407, "input": "tokens", "text": "and unity . \n Chief Obinna Onuoha , the Managing Director of "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}], "key": "obinna onuoha", "value": "Obinna Onuoha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 179, "end": 180, "input": "tokens", "text": "Onuoha , who donated the Jesus statue had constructed 2 , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}, {"source": {"segment": "content_relaxed", "context": {"start": 194, "end": 195, "input": "tokens", "text": "Onuoha , who donated the Jesus statue had constructed 2 , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}], "key": "jesus", "value": "Jesus"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 225, "end": 226, "input": "tokens", "text": "parents of Obinna , Chief Geoffrey , and Lolo Justina Onuoha "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Geoffrey"}, {"source": {"segment": "content_relaxed", "context": {"start": 240, "end": 241, "input": "tokens", "text": "parents of Obinna , Chief Geoffrey , and Lolo Justina Onuoha "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Geoffrey"}], "key": "geoffrey", "value": "Geoffrey"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 244, "end": 245, "input": "tokens", "text": "as magnificent , commended the Onuoha family for the gift and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 504, "end": 505, "input": "tokens", "text": "\" he said . \n Onuoha , who did not mention "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 259, "end": 260, "input": "tokens", "text": "as magnificent , commended the Onuoha family for the gift and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 519, "end": 520, "input": "tokens", "text": "\" he said . \n Onuoha , who did not mention "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}], "key": "onuoha", "value": "Onuoha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 312, "end": 313, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop"}, {"source": {"segment": "content_relaxed", "context": {"start": 327, "end": 328, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop"}], "key": "bishop", "value": "Bishop"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 398, "end": 400, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Petroleum Ltd"}, {"source": {"segment": "content_relaxed", "context": {"start": 413, "end": 415, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Petroleum Ltd"}], "key": "petroleum ltd", "value": "Petroleum Ltd"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Bishop Ukwuoma Unveils Tallest Jesus Statue in "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop Ukwuoma"}, {"source": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Bishop Ukwuoma Unveils Tallest Jesus Statue in "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop Ukwuoma"}], "key": "bishop ukwuoma", "value": "Bishop Ukwuoma"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "method": "rearrange_description"}], "key": "description", "value": " \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n The Bishop of Orlu Catholic Diocese, Most Rev. Augustine Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo. \n The statue made of marble is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt. \n Ukwuoma Performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Most Rev. Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday. \n The News Agency of Nigeria (NAN) reports that Chief Obinna Onuoha, who donated the Jesus statue had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012. \n NAN further reports that the unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Obinna, Chief Geoffrey, and Lolo Justina Onuoha. \n Ukwuoma, who described the statue as magnificent, commended the Onuoha family for the gift and their benevolence to the church. \n \"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us. \n \"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said. \n Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society. \n \"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity. \n Chief Obinna Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said that he constructed the statue to fulfill a vow he made to God in the year 1997. \n \"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith. \n \"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said. \n Onuoha, who did not mention the cost of the statue, added, \"it took about three years to construct and erect the Jesus De Saviour statue at Abajah.\" \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Unveils Tallest Jesus Statue in Africa \n Photo : \n Premium "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 52, "end": 53, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "title", "context": {"start": 9, "end": 10, "input": "tokens", "text": "Unveils Tallest Jesus Statue in Africa - allAfrica . com "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 668, "end": 669, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Bishop Ukwuoma Unveils Tallest Jesus Statue in Africa - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}, {"source": {"segment": "content_relaxed", "context": {"start": 19, "end": 21, "input": "tokens", "text": "Africa \n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}], "key": "premium times", "value": "Premium Times"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}, {"source": {"segment": "content_relaxed", "context": {"start": 22, "end": 25, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}], "key": "the catholic church", "value": "The Catholic Church"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 60, "end": 65, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}], "key": "the \" jesus de greatest", "value": "the \" Jesus de Greatest"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 57, "end": 63, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Most Rev . Augustine "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bishop of Orlu Catholic Diocese"}, {"source": {"segment": "content_relaxed", "context": {"start": 72, "end": 78, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Most Rev . Augustine "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bishop of Orlu Catholic Diocese"}], "key": "the bishop of orlu catholic diocese", "value": "The Bishop of Orlu Catholic Diocese"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 91, "end": 94, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Catholic Parish"}, {"source": {"segment": "content_relaxed", "context": {"start": 106, "end": 109, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Catholic Parish"}], "key": "aloysius catholic parish", "value": "Aloysius Catholic Parish"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 97, "end": 98, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue made "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo"}, {"source": {"segment": "content_relaxed", "context": {"start": 112, "end": 113, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue made "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo"}], "key": "imo", "value": "Imo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 133, "end": 137, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Most Rev "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bishop Emeritus of"}, {"source": {"segment": "content_relaxed", "context": {"start": 148, "end": 152, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Most Rev "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bishop Emeritus of"}], "key": "the bishop emeritus of", "value": "the Bishop Emeritus of"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 154, "end": 157, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Parish Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 169, "end": 172, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Parish Abajah"}], "key": "aloysius parish abajah", "value": "Aloysius Parish Abajah"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 162, "end": 165, "input": "tokens", "text": "compound on Friday . \n The News Agency of Nigeria ( NAN ) "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The News Agency"}, {"source": {"segment": "content_relaxed", "context": {"start": 177, "end": 180, "input": "tokens", "text": "compound on Friday . \n The News Agency of Nigeria ( NAN ) "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The News Agency"}], "key": "the news agency", "value": "The News Agency"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 168, "end": 169, "input": "tokens", "text": "News Agency of Nigeria ( NAN ) reports that Chief Obinna "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}, {"source": {"segment": "content_strict", "context": {"start": 200, "end": 201, "input": "tokens", "text": "the year 2012 . \n NAN further reports that the unveiling "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}, {"source": {"segment": "content_relaxed", "context": {"start": 183, "end": 184, "input": "tokens", "text": "News Agency of Nigeria ( NAN ) reports that Chief Obinna "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}, {"source": {"segment": "content_relaxed", "context": {"start": 215, "end": 216, "input": "tokens", "text": "the year 2012 . \n NAN further reports that the unveiling "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}], "key": "nan", "value": "NAN"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 222, "end": 223, "input": "tokens", "text": "ceremony of the parents of Obinna , Chief Geoffrey , and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna"}, {"source": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": "ceremony of the parents of Obinna , Chief Geoffrey , and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna"}], "key": "obinna", "value": "Obinna"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 228, "end": 231, "input": "tokens", "text": ", Chief Geoffrey , and Lolo Justina Onuoha . \n Ukwuoma , who "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lolo Justina Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 243, "end": 246, "input": "tokens", "text": ", Chief Geoffrey , and Lolo Justina Onuoha . \n Ukwuoma , who "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lolo Justina Onuoha"}], "key": "lolo justina onuoha", "value": "Lolo Justina Onuoha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 455, "end": 456, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}, {"source": {"segment": "content_relaxed", "context": {"start": 470, "end": 471, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}], "key": "jesus", "value": "Jesus"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 528, "end": 532, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Jesus De Saviour"}, {"source": {"segment": "content_relaxed", "context": {"start": 543, "end": 547, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Jesus De Saviour"}], "key": "the jesus de saviour", "value": "the Jesus De Saviour"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 556, "end": 557, "input": "tokens", "text": "\" \n Copyright \n 2016 Vanguard . All rights reserved . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vanguard"}], "key": "vanguard", "value": "Vanguard"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 562, "end": 563, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 564, "end": 567, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 166, "end": 167, "input": "tokens", "text": "\n The News Agency of Nigeria ( NAN ) reports that "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : Bishop Ukwuoma Unveils Tallest "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 26, "end": 27, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 181, "end": 182, "input": "tokens", "text": "\n The News Agency of Nigeria ( NAN ) reports that "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bishop Ukwuoma Unveils Tallest "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 95, "end": 96, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_strict", "context": {"start": 534, "end": 535, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 110, "end": 111, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 549, "end": 550, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n Copyright \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}], "key": "abajah", "value": "Abajah"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 120, "end": 121, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Ukwuoma Performed the "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}, {"source": {"segment": "content_relaxed", "context": {"start": 135, "end": 136, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Ukwuoma Performed the "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}], "key": "egypt", "value": "Egypt"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 233, "end": 234, "input": "tokens", "text": "Lolo Justina Onuoha . \n Ukwuoma , who described the statue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 248, "end": 249, "input": "tokens", "text": "Lolo Justina Onuoha . \n Ukwuoma , who described the statue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}], "key": "ukwuoma", "value": "Ukwuoma"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 73, "end": 74, "input": "tokens", "text": "Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 88, "end": 89, "input": "tokens", "text": "Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}], "key": "african", "value": "African"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 265, "end": 266, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_strict", "context": {"start": 450, "end": 451, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 280, "end": 281, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 465, "end": 466, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}], "key": "christian", "value": "Christian"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 274, "end": 275, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholics"}, {"source": {"segment": "content_relaxed", "context": {"start": 289, "end": 290, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholics"}], "key": "catholics", "value": "Catholics"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 453, "end": 454, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}, {"source": {"segment": "content_relaxed", "context": {"start": 468, "end": 469, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}], "key": "catholic", "value": "Catholic"}]}, "content_extraction": {"content_relaxed": {"text": " \n 2 January 2016 \n Nigeria: Bishop Ukwuoma Unveils Tallest Jesus Statue in Africa \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n The Bishop of Orlu Catholic Diocese, Most Rev. Augustine Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo. \n The statue made of marble is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt. \n Ukwuoma Performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Most Rev. Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday. \n The News Agency of Nigeria (NAN) reports that Chief Obinna Onuoha, who donated the Jesus statue had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012. \n NAN further reports that the unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Obinna, Chief Geoffrey, and Lolo Justina Onuoha. \n Ukwuoma, who described the statue as magnificent, commended the Onuoha family for the gift and their benevolence to the church. \n \"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us. \n \"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said. \n Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society. \n \"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity. \n Chief Obinna Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said that he constructed the statue to fulfill a vow he made to God in the year 1997. \n \"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith. \n \"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said. \n Onuoha, who did not mention the cost of the statue, added, \"it took about three years to construct and erect the Jesus De Saviour statue at Abajah.\" \n Copyright \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "2", "january", "2016", "\n", "nigeria", ":", "bishop", "ukwuoma", "unveils", "tallest", "jesus", "statue", "in", "africa", "\n", "photo", ":", "\n", "premium", "times", "\n", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "the", "bishop", "of", "orlu", "catholic", "diocese", ",", "most", "rev", ".", "augustine", "ukwuoma", "on", "friday", "unveiled", "the", "african", "tallest", "statue", "of", "jesus", "christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "st", ".", "aloysius", "catholic", "parish", ",", "abajah", ",", "imo", ".", "\n", "the", "statue", "made", "of", "marble", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "ramesses", "ii", "abusimbel", "statue", "in", "egypt", ".", "\n", "ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "bishop", "emeritus", "of", "orlu", "diocese", ",", "most", "rev", ".", "gregory", "ochiagha", ",", "and", "more", "than", "100", "priests", "at", "st", ".", "aloysius", "parish", "abajah", "compound", "on", "friday", ".", "\n", "the", "news", "agency", "of", "nigeria", "(", "nan", ")", "reports", "that", "chief", "obinna", "onuoha", ",", "who", "donated", "the", "jesus", "statue", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "st", ".", "aloysius", "in", "the", "year", "2012", ".", "\n", "nan", "further", "reports", "that", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "obinna", ",", "chief", "geoffrey", ",", "and", "lolo", "justina", "onuoha", ".", "\n", "ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\n", "\"", "this", "statue", "is", "a", "great", "symbol", "of", "christian", "faith", ",", "and", "i", "pray", "that", "for", "the", "catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "jesus", "christ", "stands", "for", "us", ".", "\n", "\"", "for", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "jesus", ",", "\"", "the", "bishop", "said", ".", "\n", "speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\n", "\"", "god", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "god", "'", "s", "peace", ",", "love", "and", "unity", ".", "\n", "chief", "obinna", "onuoha", ",", "the", "managing", "director", "of", "premier", "petroleum", "ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "that", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "god", "in", "the", "year", "1997", ".", "\n", "\"", "asking", "why", "i", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "i", "came", "to", "this", "world", ",", "i", "am", "a", "christian", "and", "a", "catholic", "and", "jesus", "statue", "represents", "my", "faith", ".", "\n", "\"", "i", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "i", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "\n", "onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "jesus", "de", "saviour", "statue", "at", "abajah", ".", "\"", "\n", "copyright", "\n", "2016", "vanguard", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "2", "January", "2016", "\n", "Nigeria", ":", "Bishop", "Ukwuoma", "Unveils", "Tallest", "Jesus", "Statue", "in", "Africa", "\n", "Photo", ":", "\n", "Premium", "Times", "\n", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "The", "Bishop", "of", "Orlu", "Catholic", "Diocese", ",", "Most", "Rev", ".", "Augustine", "Ukwuoma", "on", "Friday", "unveiled", "the", "African", "tallest", "statue", "of", "Jesus", "Christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "St", ".", "Aloysius", "Catholic", "Parish", ",", "Abajah", ",", "Imo", ".", "\n", "The", "statue", "made", "of", "marble", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "Ramesses", "ii", "Abusimbel", "statue", "in", "Egypt", ".", "\n", "Ukwuoma", "Performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "Bishop", "Emeritus", "of", "Orlu", "Diocese", ",", "Most", "Rev", ".", "Gregory", "Ochiagha", ",", "and", "more", "than", "100", "priests", "at", "St", ".", "Aloysius", "Parish", "Abajah", "compound", "on", "Friday", ".", "\n", "The", "News", "Agency", "of", "Nigeria", "(", "NAN", ")", "reports", "that", "Chief", "Obinna", "Onuoha", ",", "who", "donated", "the", "Jesus", "statue", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "St", ".", "Aloysius", "in", "the", "year", "2012", ".", "\n", "NAN", "further", "reports", "that", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "Obinna", ",", "Chief", "Geoffrey", ",", "and", "Lolo", "Justina", "Onuoha", ".", "\n", "Ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "Onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\n", "\"", "This", "statue", "is", "a", "great", "symbol", "of", "Christian", "faith", ",", "and", "I", "pray", "that", "for", "the", "Catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "Jesus", "Christ", "stands", "for", "us", ".", "\n", "\"", "For", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "Jesus", ",", "\"", "the", "Bishop", "said", ".", "\n", "Speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\n", "\"", "God", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "God", "'", "s", "peace", ",", "love", "and", "unity", ".", "\n", "Chief", "Obinna", "Onuoha", ",", "the", "Managing", "Director", "of", "Premier", "Petroleum", "Ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "that", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "God", "in", "the", "year", "1997", ".", "\n", "\"", "Asking", "why", "I", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "I", "came", "to", "this", "world", ",", "I", "am", "a", "Christian", "and", "a", "Catholic", "and", "Jesus", "statue", "represents", "my", "faith", ".", "\n", "\"", "I", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "I", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "\n", "Onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "Jesus", "De", "Saviour", "statue", "at", "Abajah", ".", "\"", "\n", "Copyright", "\n", "2016", "Vanguard", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 698, "end": 699, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "AllAfrica", "context": {"start": 698, "end": 699, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Bishop Ukwuoma Unveils Tallest Jesus Statue in "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Bishop Ukwuoma", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Bishop Ukwuoma Unveils Tallest Jesus Statue in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 36, "end": 38, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Jesus Christ", "context": {"start": 36, "end": 38, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 82, "end": 84, "input": "tokens", "text": "Diocese , Most Rev . Augustine Ukwuoma on Friday unveiled the African "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Augustine Ukwuoma", "context": {"start": 82, "end": 84, "input": "tokens", "text": "Diocese , Most Rev . Augustine Ukwuoma on Friday unveiled the African "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 92, "end": 94, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Jesus Christ", "context": {"start": 92, "end": 94, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 130, "end": 133, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Ramesses ii Abusimbel", "context": {"start": 130, "end": 133, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 138, "end": 140, "input": "tokens", "text": "statue in Egypt . \n Ukwuoma Performed the ceremony shortly after a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Ukwuoma Performed", "context": {"start": 138, "end": 140, "input": "tokens", "text": "statue in Egypt . \n Ukwuoma Performed the ceremony shortly after a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 158, "end": 160, "input": "tokens", "text": "Diocese , Most Rev . Gregory Ochiagha , and more than 100 "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Gregory Ochiagha", "context": {"start": 158, "end": 160, "input": "tokens", "text": "Diocese , Most Rev . Gregory Ochiagha , and more than 100 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 167, "end": 168, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "St", "context": {"start": 167, "end": 168, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 188, "end": 190, "input": "tokens", "text": "NAN ) reports that Chief Obinna Onuoha , who donated the Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Obinna Onuoha", "context": {"start": 188, "end": 190, "input": "tokens", "text": "NAN ) reports that Chief Obinna Onuoha , who donated the Jesus "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 194, "end": 195, "input": "tokens", "text": "Onuoha , who donated the Jesus statue had constructed 2 , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Jesus", "context": {"start": 194, "end": 195, "input": "tokens", "text": "Onuoha , who donated the Jesus statue had constructed 2 , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 206, "end": 207, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "St", "context": {"start": 206, "end": 207, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 240, "end": 241, "input": "tokens", "text": "parents of Obinna , Chief Geoffrey , and Lolo Justina Onuoha "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Geoffrey", "context": {"start": 240, "end": 241, "input": "tokens", "text": "parents of Obinna , Chief Geoffrey , and Lolo Justina Onuoha "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 259, "end": 260, "input": "tokens", "text": "as magnificent , commended the Onuoha family for the gift and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Onuoha", "context": {"start": 259, "end": 260, "input": "tokens", "text": "as magnificent , commended the Onuoha family for the gift and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 301, "end": 303, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Jesus Christ", "context": {"start": 301, "end": 303, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 327, "end": 328, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Bishop", "context": {"start": 327, "end": 328, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 405, "end": 407, "input": "tokens", "text": "and unity . \n Chief Obinna Onuoha , the Managing Director of "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Obinna Onuoha", "context": {"start": 405, "end": 407, "input": "tokens", "text": "and unity . \n Chief Obinna Onuoha , the Managing Director of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 413, "end": 415, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Petroleum Ltd", "context": {"start": 413, "end": 415, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 519, "end": 520, "input": "tokens", "text": "\" he said . \n Onuoha , who did not mention "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Onuoha", "context": {"start": 519, "end": 520, "input": "tokens", "text": "\" he said . \n Onuoha , who did not mention "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Unveils Tallest Jesus Statue in Africa \n Photo : \n Premium "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Africa", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Unveils Tallest Jesus Statue in Africa \n Photo : \n Premium "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 52, "end": 53, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Africa", "context": {"start": 52, "end": 53, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 668, "end": 669, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "AllAfrica", "context": {"start": 668, "end": 669, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 19, "end": 21, "input": "tokens", "text": "Africa \n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Premium Times", "context": {"start": 19, "end": 21, "input": "tokens", "text": "Africa \n Photo : \n Premium Times \n The Catholic Church in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 22, "end": 25, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "The Catholic Church", "context": {"start": 22, "end": 25, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 60, "end": 65, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "the \" Jesus de Greatest", "context": {"start": 60, "end": 65, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 72, "end": 78, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Most Rev . Augustine "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "The Bishop of Orlu Catholic Diocese", "context": {"start": 72, "end": 78, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Most Rev . Augustine "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 106, "end": 109, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Aloysius Catholic Parish", "context": {"start": 106, "end": 109, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 112, "end": 113, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue made "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Imo", "context": {"start": 112, "end": 113, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue made "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 148, "end": 152, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Most Rev "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "the Bishop Emeritus of", "context": {"start": 148, "end": 152, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Most Rev "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 169, "end": 172, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Aloysius Parish Abajah", "context": {"start": 169, "end": 172, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 177, "end": 180, "input": "tokens", "text": "compound on Friday . \n The News Agency of Nigeria ( NAN ) "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "The News Agency", "context": {"start": 177, "end": 180, "input": "tokens", "text": "compound on Friday . \n The News Agency of Nigeria ( NAN ) "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 183, "end": 184, "input": "tokens", "text": "News Agency of Nigeria ( NAN ) reports that Chief Obinna "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "NAN", "context": {"start": 183, "end": 184, "input": "tokens", "text": "News Agency of Nigeria ( NAN ) reports that Chief Obinna "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 215, "end": 216, "input": "tokens", "text": "the year 2012 . \n NAN further reports that the unveiling "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "NAN", "context": {"start": 215, "end": 216, "input": "tokens", "text": "the year 2012 . \n NAN further reports that the unveiling "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": "ceremony of the parents of Obinna , Chief Geoffrey , and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Obinna", "context": {"start": 237, "end": 238, "input": "tokens", "text": "ceremony of the parents of Obinna , Chief Geoffrey , and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 243, "end": 246, "input": "tokens", "text": ", Chief Geoffrey , and Lolo Justina Onuoha . \n Ukwuoma , who "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Lolo Justina Onuoha", "context": {"start": 243, "end": 246, "input": "tokens", "text": ", Chief Geoffrey , and Lolo Justina Onuoha . \n Ukwuoma , who "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 470, "end": 471, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Jesus", "context": {"start": 470, "end": 471, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 543, "end": 547, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "the Jesus De Saviour", "context": {"start": 543, "end": 547, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 556, "end": 557, "input": "tokens", "text": "\" \n Copyright \n 2016 Vanguard . All rights reserved . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Vanguard", "context": {"start": 556, "end": 557, "input": "tokens", "text": "\" \n Copyright \n 2016 Vanguard . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 562, "end": 563, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Distributed", "context": {"start": 562, "end": 563, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 564, "end": 567, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "AllAfrica Global Media", "context": {"start": 564, "end": 567, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : Bishop Ukwuoma Unveils Tallest "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : Bishop Ukwuoma Unveils Tallest "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 26, "end": 27, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Nigeria", "context": {"start": 26, "end": 27, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 110, "end": 111, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Abajah", "context": {"start": 110, "end": 111, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 135, "end": 136, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Ukwuoma Performed the "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Egypt", "context": {"start": 135, "end": 136, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Ukwuoma Performed the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 181, "end": 182, "input": "tokens", "text": "\n The News Agency of Nigeria ( NAN ) reports that "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Nigeria", "context": {"start": 181, "end": 182, "input": "tokens", "text": "\n The News Agency of Nigeria ( NAN ) reports that "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 248, "end": 249, "input": "tokens", "text": "Lolo Justina Onuoha . \n Ukwuoma , who described the statue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Ukwuoma", "context": {"start": 248, "end": 249, "input": "tokens", "text": "Lolo Justina Onuoha . \n Ukwuoma , who described the statue "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 549, "end": 550, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n Copyright \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Abajah", "context": {"start": 549, "end": 550, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n Copyright \n "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 88, "end": 89, "input": "tokens", "text": "Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "African", "context": {"start": 88, "end": 89, "input": "tokens", "text": "Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 280, "end": 281, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Christian", "context": {"start": 280, "end": 281, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 289, "end": 290, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Catholics", "context": {"start": 289, "end": 290, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 465, "end": 466, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Christian", "context": {"start": 465, "end": 466, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 468, "end": 469, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Catholic", "context": {"start": 468, "end": 469, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020123.html"}, "content_strict": {"text": " \n Photo: \n Premium Times \n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes. \n The Bishop of Orlu Catholic Diocese, Most Rev. Augustine Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo. \n The statue made of marble is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt. \n Ukwuoma Performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Most Rev. Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday. \n The News Agency of Nigeria (NAN) reports that Chief Obinna Onuoha, who donated the Jesus statue had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012. \n NAN further reports that the unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Obinna, Chief Geoffrey, and Lolo Justina Onuoha. \n Ukwuoma, who described the statue as magnificent, commended the Onuoha family for the gift and their benevolence to the church. \n \"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us. \n \"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said. \n Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society. \n \"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity. \n Chief Obinna Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said that he constructed the statue to fulfill a vow he made to God in the year 1997. \n \"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith. \n \"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said. \n Onuoha, who did not mention the cost of the statue, added, \"it took about three years to construct and erect the Jesus De Saviour statue at Abajah.\" \n ", "simple_tokens": ["\n", "photo", ":", "\n", "premium", "times", "\n", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "the", "bishop", "of", "orlu", "catholic", "diocese", ",", "most", "rev", ".", "augustine", "ukwuoma", "on", "friday", "unveiled", "the", "african", "tallest", "statue", "of", "jesus", "christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "st", ".", "aloysius", "catholic", "parish", ",", "abajah", ",", "imo", ".", "\n", "the", "statue", "made", "of", "marble", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "ramesses", "ii", "abusimbel", "statue", "in", "egypt", ".", "\n", "ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "bishop", "emeritus", "of", "orlu", "diocese", ",", "most", "rev", ".", "gregory", "ochiagha", ",", "and", "more", "than", "100", "priests", "at", "st", ".", "aloysius", "parish", "abajah", "compound", "on", "friday", ".", "\n", "the", "news", "agency", "of", "nigeria", "(", "nan", ")", "reports", "that", "chief", "obinna", "onuoha", ",", "who", "donated", "the", "jesus", "statue", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "st", ".", "aloysius", "in", "the", "year", "2012", ".", "\n", "nan", "further", "reports", "that", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "obinna", ",", "chief", "geoffrey", ",", "and", "lolo", "justina", "onuoha", ".", "\n", "ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\n", "\"", "this", "statue", "is", "a", "great", "symbol", "of", "christian", "faith", ",", "and", "i", "pray", "that", "for", "the", "catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "jesus", "christ", "stands", "for", "us", ".", "\n", "\"", "for", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "jesus", ",", "\"", "the", "bishop", "said", ".", "\n", "speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\n", "\"", "god", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "god", "'", "s", "peace", ",", "love", "and", "unity", ".", "\n", "chief", "obinna", "onuoha", ",", "the", "managing", "director", "of", "premier", "petroleum", "ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "that", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "god", "in", "the", "year", "1997", ".", "\n", "\"", "asking", "why", "i", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "i", "came", "to", "this", "world", ",", "i", "am", "a", "christian", "and", "a", "catholic", "and", "jesus", "statue", "represents", "my", "faith", ".", "\n", "\"", "i", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "i", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "\n", "onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "jesus", "de", "saviour", "statue", "at", "abajah", ".", "\"", "\n"], "simple_tokens_original_case": ["\n", "Photo", ":", "\n", "Premium", "Times", "\n", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "\n", "The", "Bishop", "of", "Orlu", "Catholic", "Diocese", ",", "Most", "Rev", ".", "Augustine", "Ukwuoma", "on", "Friday", "unveiled", "the", "African", "tallest", "statue", "of", "Jesus", "Christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "St", ".", "Aloysius", "Catholic", "Parish", ",", "Abajah", ",", "Imo", ".", "\n", "The", "statue", "made", "of", "marble", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "Ramesses", "ii", "Abusimbel", "statue", "in", "Egypt", ".", "\n", "Ukwuoma", "Performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "Bishop", "Emeritus", "of", "Orlu", "Diocese", ",", "Most", "Rev", ".", "Gregory", "Ochiagha", ",", "and", "more", "than", "100", "priests", "at", "St", ".", "Aloysius", "Parish", "Abajah", "compound", "on", "Friday", ".", "\n", "The", "News", "Agency", "of", "Nigeria", "(", "NAN", ")", "reports", "that", "Chief", "Obinna", "Onuoha", ",", "who", "donated", "the", "Jesus", "statue", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "St", ".", "Aloysius", "in", "the", "year", "2012", ".", "\n", "NAN", "further", "reports", "that", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "Obinna", ",", "Chief", "Geoffrey", ",", "and", "Lolo", "Justina", "Onuoha", ".", "\n", "Ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "Onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\n", "\"", "This", "statue", "is", "a", "great", "symbol", "of", "Christian", "faith", ",", "and", "I", "pray", "that", "for", "the", "Catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "Jesus", "Christ", "stands", "for", "us", ".", "\n", "\"", "For", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "Jesus", ",", "\"", "the", "Bishop", "said", ".", "\n", "Speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\n", "\"", "God", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "God", "'", "s", "peace", ",", "love", "and", "unity", ".", "\n", "Chief", "Obinna", "Onuoha", ",", "the", "Managing", "Director", "of", "Premier", "Petroleum", "Ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "that", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "God", "in", "the", "year", "1997", ".", "\n", "\"", "Asking", "why", "I", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "I", "came", "to", "this", "world", ",", "I", "am", "a", "Christian", "and", "a", "Catholic", "and", "Jesus", "statue", "represents", "my", "faith", ".", "\n", "\"", "I", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "I", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "\n", "Onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "Jesus", "De", "Saviour", "statue", "at", "Abajah", ".", "\"", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Premium Times", "context": {"start": 4, "end": 6, "input": "tokens", "text": "\n Photo : \n Premium Times \n The Catholic Church in "}}, {"origin": {"segment": "content_strict", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "The Catholic Church", "context": {"start": 7, "end": 10, "input": "tokens", "text": ": \n Premium Times \n The Catholic Church in Nigeria has unveiled a "}}, {"origin": {"segment": "content_strict", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "the \" Jesus de Greatest", "context": {"start": 45, "end": 50, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}}, {"origin": {"segment": "content_strict", "context": {"start": 57, "end": 63, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Most Rev . Augustine "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "The Bishop of Orlu Catholic Diocese", "context": {"start": 57, "end": 63, "input": "tokens", "text": "weighs 40 tonnes . \n The Bishop of Orlu Catholic Diocese , Most Rev . Augustine "}}, {"origin": {"segment": "content_strict", "context": {"start": 91, "end": 94, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Aloysius Catholic Parish", "context": {"start": 91, "end": 94, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}}, {"origin": {"segment": "content_strict", "context": {"start": 97, "end": 98, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue made "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Imo", "context": {"start": 97, "end": 98, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . \n The statue made "}}, {"origin": {"segment": "content_strict", "context": {"start": 133, "end": 137, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Most Rev "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "the Bishop Emeritus of", "context": {"start": 133, "end": 137, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Most Rev "}}, {"origin": {"segment": "content_strict", "context": {"start": 154, "end": 157, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Aloysius Parish Abajah", "context": {"start": 154, "end": 157, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 162, "end": 165, "input": "tokens", "text": "compound on Friday . \n The News Agency of Nigeria ( NAN ) "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "The News Agency", "context": {"start": 162, "end": 165, "input": "tokens", "text": "compound on Friday . \n The News Agency of Nigeria ( NAN ) "}}, {"origin": {"segment": "content_strict", "context": {"start": 168, "end": 169, "input": "tokens", "text": "News Agency of Nigeria ( NAN ) reports that Chief Obinna "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "NAN", "context": {"start": 168, "end": 169, "input": "tokens", "text": "News Agency of Nigeria ( NAN ) reports that Chief Obinna "}}, {"origin": {"segment": "content_strict", "context": {"start": 200, "end": 201, "input": "tokens", "text": "the year 2012 . \n NAN further reports that the unveiling "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "NAN", "context": {"start": 200, "end": 201, "input": "tokens", "text": "the year 2012 . \n NAN further reports that the unveiling "}}, {"origin": {"segment": "content_strict", "context": {"start": 222, "end": 223, "input": "tokens", "text": "ceremony of the parents of Obinna , Chief Geoffrey , and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Obinna", "context": {"start": 222, "end": 223, "input": "tokens", "text": "ceremony of the parents of Obinna , Chief Geoffrey , and "}}, {"origin": {"segment": "content_strict", "context": {"start": 228, "end": 231, "input": "tokens", "text": ", Chief Geoffrey , and Lolo Justina Onuoha . \n Ukwuoma , who "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Lolo Justina Onuoha", "context": {"start": 228, "end": 231, "input": "tokens", "text": ", Chief Geoffrey , and Lolo Justina Onuoha . \n Ukwuoma , who "}}, {"origin": {"segment": "content_strict", "context": {"start": 455, "end": 456, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Jesus", "context": {"start": 455, "end": 456, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}}, {"origin": {"segment": "content_strict", "context": {"start": 528, "end": 532, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "the Jesus De Saviour", "context": {"start": 528, "end": 532, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Nigeria", "context": {"start": 11, "end": 12, "input": "tokens", "text": "\n The Catholic Church in Nigeria has unveiled a nine - "}}, {"origin": {"segment": "content_strict", "context": {"start": 95, "end": 96, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Abajah", "context": {"start": 95, "end": 96, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . \n The "}}, {"origin": {"segment": "content_strict", "context": {"start": 120, "end": 121, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Ukwuoma Performed the "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Egypt", "context": {"start": 120, "end": 121, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . \n Ukwuoma Performed the "}}, {"origin": {"segment": "content_strict", "context": {"start": 166, "end": 167, "input": "tokens", "text": "\n The News Agency of Nigeria ( NAN ) reports that "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Nigeria", "context": {"start": 166, "end": 167, "input": "tokens", "text": "\n The News Agency of Nigeria ( NAN ) reports that "}}, {"origin": {"segment": "content_strict", "context": {"start": 233, "end": 234, "input": "tokens", "text": "Lolo Justina Onuoha . \n Ukwuoma , who described the statue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Ukwuoma", "context": {"start": 233, "end": 234, "input": "tokens", "text": "Lolo Justina Onuoha . \n Ukwuoma , who described the statue "}}, {"origin": {"segment": "content_strict", "context": {"start": 534, "end": 535, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Abajah", "context": {"start": 534, "end": 535, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" \n "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Jesus Christ", "context": {"start": 21, "end": 23, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}}, {"origin": {"segment": "content_strict", "context": {"start": 67, "end": 69, "input": "tokens", "text": "Diocese , Most Rev . Augustine Ukwuoma on Friday unveiled the African "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Augustine Ukwuoma", "context": {"start": 67, "end": 69, "input": "tokens", "text": "Diocese , Most Rev . Augustine Ukwuoma on Friday unveiled the African "}}, {"origin": {"segment": "content_strict", "context": {"start": 77, "end": 79, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Jesus Christ", "context": {"start": 77, "end": 79, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}}, {"origin": {"segment": "content_strict", "context": {"start": 115, "end": 118, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Ramesses ii Abusimbel", "context": {"start": 115, "end": 118, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 123, "end": 125, "input": "tokens", "text": "statue in Egypt . \n Ukwuoma Performed the ceremony shortly after a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Ukwuoma Performed", "context": {"start": 123, "end": 125, "input": "tokens", "text": "statue in Egypt . \n Ukwuoma Performed the ceremony shortly after a "}}, {"origin": {"segment": "content_strict", "context": {"start": 143, "end": 145, "input": "tokens", "text": "Diocese , Most Rev . Gregory Ochiagha , and more than 100 "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Gregory Ochiagha", "context": {"start": 143, "end": 145, "input": "tokens", "text": "Diocese , Most Rev . Gregory Ochiagha , and more than 100 "}}, {"origin": {"segment": "content_strict", "context": {"start": 152, "end": 153, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "St", "context": {"start": 152, "end": 153, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}}, {"origin": {"segment": "content_strict", "context": {"start": 173, "end": 175, "input": "tokens", "text": "NAN ) reports that Chief Obinna Onuoha , who donated the Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Obinna Onuoha", "context": {"start": 173, "end": 175, "input": "tokens", "text": "NAN ) reports that Chief Obinna Onuoha , who donated the Jesus "}}, {"origin": {"segment": "content_strict", "context": {"start": 179, "end": 180, "input": "tokens", "text": "Onuoha , who donated the Jesus statue had constructed 2 , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Jesus", "context": {"start": 179, "end": 180, "input": "tokens", "text": "Onuoha , who donated the Jesus statue had constructed 2 , "}}, {"origin": {"segment": "content_strict", "context": {"start": 191, "end": 192, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "St", "context": {"start": 191, "end": 192, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}}, {"origin": {"segment": "content_strict", "context": {"start": 225, "end": 226, "input": "tokens", "text": "parents of Obinna , Chief Geoffrey , and Lolo Justina Onuoha "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Geoffrey", "context": {"start": 225, "end": 226, "input": "tokens", "text": "parents of Obinna , Chief Geoffrey , and Lolo Justina Onuoha "}}, {"origin": {"segment": "content_strict", "context": {"start": 244, "end": 245, "input": "tokens", "text": "as magnificent , commended the Onuoha family for the gift and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Onuoha", "context": {"start": 244, "end": 245, "input": "tokens", "text": "as magnificent , commended the Onuoha family for the gift and "}}, {"origin": {"segment": "content_strict", "context": {"start": 286, "end": 288, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Jesus Christ", "context": {"start": 286, "end": 288, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 312, "end": 313, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Bishop", "context": {"start": 312, "end": 313, "input": "tokens", "text": "to Jesus , \" the Bishop said . \n Speaking on "}}, {"origin": {"segment": "content_strict", "context": {"start": 390, "end": 392, "input": "tokens", "text": "and unity . \n Chief Obinna Onuoha , the Managing Director of "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Obinna Onuoha", "context": {"start": 390, "end": 392, "input": "tokens", "text": "and unity . \n Chief Obinna Onuoha , the Managing Director of "}}, {"origin": {"segment": "content_strict", "context": {"start": 398, "end": 400, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Petroleum Ltd", "context": {"start": 398, "end": 400, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}}, {"origin": {"segment": "content_strict", "context": {"start": 504, "end": 505, "input": "tokens", "text": "\" he said . \n Onuoha , who did not mention "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Onuoha", "context": {"start": 504, "end": 505, "input": "tokens", "text": "\" he said . \n Onuoha , who did not mention "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Africa", "context": {"start": 37, "end": 38, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 73, "end": 74, "input": "tokens", "text": "Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "African", "context": {"start": 73, "end": 74, "input": "tokens", "text": "Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ "}}, {"origin": {"segment": "content_strict", "context": {"start": 265, "end": 266, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Christian", "context": {"start": 265, "end": 266, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}}, {"origin": {"segment": "content_strict", "context": {"start": 274, "end": 275, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Catholics", "context": {"start": 274, "end": 275, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}}, {"origin": {"segment": "content_strict", "context": {"start": 450, "end": 451, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Christian", "context": {"start": 450, "end": 451, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}}, {"origin": {"segment": "content_strict", "context": {"start": 453, "end": 454, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Catholic", "context": {"start": 453, "end": 454, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}}]}}}}, "title": {"text": " Nigeria: Bishop Ukwuoma Unveils Tallest Jesus Statue in Africa - allAfrica.com ", "simple_tokens": ["nigeria", ":", "bishop", "ukwuoma", "unveils", "tallest", "jesus", "statue", "in", "africa", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Bishop", "Ukwuoma", "Unveils", "Tallest", "Jesus", "Statue", "in", "Africa", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bishop Ukwuoma Unveils Tallest "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bishop Ukwuoma Unveils Tallest "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Bishop Ukwuoma Unveils Tallest Jesus Statue in "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Bishop Ukwuoma", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Bishop Ukwuoma Unveils Tallest Jesus Statue in "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 9, "end": 10, "input": "tokens", "text": "Unveils Tallest Jesus Statue in Africa - allAfrica . com "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "value": "Africa", "context": {"start": 9, "end": 10, "input": "tokens", "text": "Unveils Tallest Jesus Statue in Africa - allAfrica . com "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:12.073135", "@etk_process_time": 0.5386009216308594, "@etk_start_time": "2017-11-15T01:34:11.534534"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Bishop Ukwuoma Unveils Tallest Jesus Statue in Africa - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Nigeria: Bishop Ukwuoma Unveils Tallest Jesus Statue in Africa\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n \n \n Photo:\n \n Premium Times\n \n \n
\n
\n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.\n
\n
\n

\n The Bishop of Orlu Catholic Diocese, Most Rev. Augustine Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo.\n

\n

\n The statue made of marble is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt.\n

\n

\n Ukwuoma Performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Most Rev. Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday.\n

\n

\n The News Agency of Nigeria (NAN) reports that Chief Obinna Onuoha, who donated the Jesus statue had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n NAN further reports that the unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Obinna, Chief Geoffrey, and Lolo Justina Onuoha.\n

\n

\n Ukwuoma, who described the statue as magnificent, commended the Onuoha family for the gift and their benevolence to the church.\n

\n

\n \"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us.\n

\n
\n
\n
\n
\n

\n \"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said.\n

\n

\n Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n \"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity.\n

\n

\n Chief Obinna Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said that he constructed the statue to fulfill a vow he made to God in the year 1997.\n

\n

\n \"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith.\n

\n

\n \"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said.\n

\n

\n Onuoha, who did not mention the cost of the statue, added, \"it took about three years to construct and erect the Jesus De Saviour statue at Abajah.\"\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24", "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"} -{"url": "http://www.ce_news_article.org/2016/01/02/201601020124.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 379, "end": 380, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 28, "end": 29, "input": "tokens", "text": "ban on Hijab , the Muslim women ' s dressing symbol "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 207, "end": 208, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 42, "end": 43, "input": "tokens", "text": "ban on Hijab , the Muslim women ' s dressing symbol "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 221, "end": 222, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 83, "end": 84, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 97, "end": 98, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "method": "rearrange_description"}], "key": "description", "value": " \n By Mohammed Abubakar \n Abuja \u2014 THE Presidency has denied insinuations and rumours that the President Muhammadu Buhari administration was considering a ban on Hijab, the Muslim women's dressing symbol of modesty. \n Giving a clarification on Buhari's pronouncement during the Presidential Media Chat on Wednesday, his Senior Special Assistant on Media and Publicity, Garba Shehu, said the speculations were unfounded. He addded that the administration would always respect the rights of Muslims to protect their modesty and allow religious freedom. \n Shehu, while admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, however said the President would not take any decision on the issue without due consultation with all the stakeholders. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" Shehu said. \n He added that the increasing abuse of the Hijab by terrorists to perpetrate criminal activities and other atrocities is a reality, but that government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 349, "end": 350, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: No Ban On Hijab, Presidency Clarifies - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 47, "end": 51, "input": "tokens", "text": "Buhari ' s pronouncement during the Presidential Media Chat on Wednesday , his Senior "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Presidential Media Chat"}, {"source": {"segment": "content_relaxed", "context": {"start": 61, "end": 65, "input": "tokens", "text": "Buhari ' s pronouncement during the Presidential Media Chat on Wednesday , his Senior "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Presidential Media Chat"}], "key": "the presidential media chat", "value": "the Presidential Media Chat"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 120, "end": 121, "input": "tokens", "text": "which violates the teachings of Islam , however said the President "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}, {"source": {"segment": "content_relaxed", "context": {"start": 134, "end": 135, "input": "tokens", "text": "which violates the teachings of Islam , however said the President "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}], "key": "islam", "value": "Islam"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": "\n Copyright \n 2016 The Guardian . All rights reserved . "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Guardian"}], "key": "guardian", "value": "Guardian"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 243, "end": 244, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 245, "end": 248, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 7, "end": 11, "input": "tokens", "text": "No Ban On Hijab , Presidency Clarifies - allAfrica . com "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Presidency Clarifies - allAfrica"}], "key": "presidency clarifies - allafrica", "value": "Presidency Clarifies - allAfrica"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 25, "end": 26, "input": "tokens", "text": "was considering a ban on Hijab , the Muslim women ' "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Presidency Clarifies \n By "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 39, "end": 40, "input": "tokens", "text": "was considering a ban on Hijab , the Muslim women ' "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "title", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Presidency Clarifies - allAfrica "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : No Ban On Hijab "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Mohammed Abubakar \n Abuja \u2014 THE Presidency "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mohammed Abubakar"}, {"source": {"segment": "content_relaxed", "context": {"start": 16, "end": 18, "input": "tokens", "text": ", Presidency Clarifies \n By Mohammed Abubakar \n Abuja \u2014 THE Presidency "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mohammed Abubakar"}], "key": "mohammed abubakar", "value": "Mohammed Abubakar"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n By Mohammed Abubakar \n Abuja \u2014 THE Presidency has denied "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 19, "end": 20, "input": "tokens", "text": "\n By Mohammed Abubakar \n Abuja \u2014 THE Presidency has denied "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 17, "end": 19, "input": "tokens", "text": "and rumours that the President Muhammadu Buhari administration was considering a ban "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 31, "end": 33, "input": "tokens", "text": "and rumours that the President Muhammadu Buhari administration was considering a ban "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}], "key": "muhammadu buhari", "value": "Muhammadu Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 42, "end": 43, "input": "tokens", "text": "\n Giving a clarification on Buhari ' s pronouncement during the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 56, "end": 57, "input": "tokens", "text": "\n Giving a clarification on Buhari ' s pronouncement during the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 63, "end": 65, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 77, "end": 79, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}], "key": "garba shehu", "value": "Garba Shehu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 94, "end": 95, "input": "tokens", "text": "allow religious freedom . \n Shehu , while admitting that the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_strict", "context": {"start": 170, "end": 171, "input": "tokens", "text": "by the constitution , \" Shehu said . \n He added "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": "allow religious freedom . \n Shehu , while admitting that the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 184, "end": 185, "input": "tokens", "text": "by the constitution , \" Shehu said . \n He added "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 100, "end": 101, "input": "tokens", "text": ", while admitting that the Hijab was being abused by terrorists "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 114, "end": 115, "input": "tokens", "text": ", while admitting that the Hijab was being abused by terrorists "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}]}, "content_extraction": {"content_relaxed": {"text": " \n 2 January 2016 \n Nigeria: No Ban On Hijab, Presidency Clarifies \n By Mohammed Abubakar \n Abuja \u2014 THE Presidency has denied insinuations and rumours that the President Muhammadu Buhari administration was considering a ban on Hijab, the Muslim women's dressing symbol of modesty. \n Giving a clarification on Buhari's pronouncement during the Presidential Media Chat on Wednesday, his Senior Special Assistant on Media and Publicity, Garba Shehu, said the speculations were unfounded. He addded that the administration would always respect the rights of Muslims to protect their modesty and allow religious freedom. \n Shehu, while admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, however said the President would not take any decision on the issue without due consultation with all the stakeholders. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" Shehu said. \n He added that the increasing abuse of the Hijab by terrorists to perpetrate criminal activities and other atrocities is a reality, but that government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n Copyright \n 2016 The Guardian. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "2", "january", "2016", "\n", "nigeria", ":", "no", "ban", "on", "hijab", ",", "presidency", "clarifies", "\n", "by", "mohammed", "abubakar", "\n", "abuja", "\u2014", "the", "presidency", "has", "denied", "insinuations", "and", "rumours", "that", "the", "president", "muhammadu", "buhari", "administration", "was", "considering", "a", "ban", "on", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "giving", "a", "clarification", "on", "buhari", "'", "s", "pronouncement", "during", "the", "presidential", "media", "chat", "on", "wednesday", ",", "his", "senior", "special", "assistant", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "the", "speculations", "were", "unfounded", ".", "he", "addded", "that", "the", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "\n", "shehu", ",", "while", "admitting", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "islam", ",", "however", "said", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "shehu", "said", ".", "\n", "he", "added", "that", "the", "increasing", "abuse", "of", "the", "hijab", "by", "terrorists", "to", "perpetrate", "criminal", "activities", "and", "other", "atrocities", "is", "a", "reality", ",", "but", "that", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n", "copyright", "\n", "2016", "the", "guardian", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u2014", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "2", "January", "2016", "\n", "Nigeria", ":", "No", "Ban", "On", "Hijab", ",", "Presidency", "Clarifies", "\n", "By", "Mohammed", "Abubakar", "\n", "Abuja", "\u2014", "THE", "Presidency", "has", "denied", "insinuations", "and", "rumours", "that", "the", "President", "Muhammadu", "Buhari", "administration", "was", "considering", "a", "ban", "on", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "Giving", "a", "clarification", "on", "Buhari", "'", "s", "pronouncement", "during", "the", "Presidential", "Media", "Chat", "on", "Wednesday", ",", "his", "Senior", "Special", "Assistant", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "the", "speculations", "were", "unfounded", ".", "He", "addded", "that", "the", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "\n", "Shehu", ",", "while", "admitting", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "Islam", ",", "however", "said", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "Shehu", "said", ".", "\n", "He", "added", "that", "the", "increasing", "abuse", "of", "the", "Hijab", "by", "terrorists", "to", "perpetrate", "criminal", "activities", "and", "other", "atrocities", "is", "a", "reality", ",", "but", "that", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n", "Copyright", "\n", "2016", "The", "Guardian", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u2014", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 379, "end": 380, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "AllAfrica", "context": {"start": 379, "end": 380, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 16, "end": 18, "input": "tokens", "text": ", Presidency Clarifies \n By Mohammed Abubakar \n Abuja \u2014 THE Presidency "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Mohammed Abubakar", "context": {"start": 16, "end": 18, "input": "tokens", "text": ", Presidency Clarifies \n By Mohammed Abubakar \n Abuja \u2014 THE Presidency "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 19, "end": 20, "input": "tokens", "text": "\n By Mohammed Abubakar \n Abuja \u2014 THE Presidency has denied "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Abuja", "context": {"start": 19, "end": 20, "input": "tokens", "text": "\n By Mohammed Abubakar \n Abuja \u2014 THE Presidency has denied "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 31, "end": 33, "input": "tokens", "text": "and rumours that the President Muhammadu Buhari administration was considering a ban "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Muhammadu Buhari", "context": {"start": 31, "end": 33, "input": "tokens", "text": "and rumours that the President Muhammadu Buhari administration was considering a ban "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 56, "end": 57, "input": "tokens", "text": "\n Giving a clarification on Buhari ' s pronouncement during the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Buhari", "context": {"start": 56, "end": 57, "input": "tokens", "text": "\n Giving a clarification on Buhari ' s pronouncement during the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 77, "end": 79, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Garba Shehu", "context": {"start": 77, "end": 79, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": "allow religious freedom . \n Shehu , while admitting that the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Shehu", "context": {"start": 108, "end": 109, "input": "tokens", "text": "allow religious freedom . \n Shehu , while admitting that the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 114, "end": 115, "input": "tokens", "text": ", while admitting that the Hijab was being abused by terrorists "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Hijab", "context": {"start": 114, "end": 115, "input": "tokens", "text": ", while admitting that the Hijab was being abused by terrorists "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 184, "end": 185, "input": "tokens", "text": "by the constitution , \" Shehu said . \n He added "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Shehu", "context": {"start": 184, "end": 185, "input": "tokens", "text": "by the constitution , \" Shehu said . \n He added "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 349, "end": 350, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "AllAfrica", "context": {"start": 349, "end": 350, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 61, "end": 65, "input": "tokens", "text": "Buhari ' s pronouncement during the Presidential Media Chat on Wednesday , his Senior "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "the Presidential Media Chat", "context": {"start": 61, "end": 65, "input": "tokens", "text": "Buhari ' s pronouncement during the Presidential Media Chat on Wednesday , his Senior "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 134, "end": 135, "input": "tokens", "text": "which violates the teachings of Islam , however said the President "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Islam", "context": {"start": 134, "end": 135, "input": "tokens", "text": "which violates the teachings of Islam , however said the President "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": "\n Copyright \n 2016 The Guardian . All rights reserved . "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Guardian", "context": {"start": 237, "end": 238, "input": "tokens", "text": "\n Copyright \n 2016 The Guardian . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 243, "end": 244, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Distributed", "context": {"start": 243, "end": 244, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 245, "end": 248, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "AllAfrica Global Media", "context": {"start": 245, "end": 248, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : No Ban On Hijab "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Nigeria : No Ban On Hijab "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Presidency Clarifies \n By "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Hijab", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Presidency Clarifies \n By "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 39, "end": 40, "input": "tokens", "text": "was considering a ban on Hijab , the Muslim women ' "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Hijab", "context": {"start": 39, "end": 40, "input": "tokens", "text": "was considering a ban on Hijab , the Muslim women ' "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 42, "end": 43, "input": "tokens", "text": "ban on Hijab , the Muslim women ' s dressing symbol "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Muslim", "context": {"start": 42, "end": 43, "input": "tokens", "text": "ban on Hijab , the Muslim women ' s dressing symbol "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 97, "end": 98, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Muslims", "context": {"start": 97, "end": 98, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 221, "end": 222, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Muslim", "context": {"start": 221, "end": 222, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020124.html"}, "content_strict": {"text": " \n By Mohammed Abubakar \n Abuja \u2014 THE Presidency has denied insinuations and rumours that the President Muhammadu Buhari administration was considering a ban on Hijab, the Muslim women's dressing symbol of modesty. \n Giving a clarification on Buhari's pronouncement during the Presidential Media Chat on Wednesday, his Senior Special Assistant on Media and Publicity, Garba Shehu, said the speculations were unfounded. He addded that the administration would always respect the rights of Muslims to protect their modesty and allow religious freedom. \n Shehu, while admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, however said the President would not take any decision on the issue without due consultation with all the stakeholders. \n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" Shehu said. \n He added that the increasing abuse of the Hijab by terrorists to perpetrate criminal activities and other atrocities is a reality, but that government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution. \n ", "simple_tokens": ["\n", "by", "mohammed", "abubakar", "\n", "abuja", "\u2014", "the", "presidency", "has", "denied", "insinuations", "and", "rumours", "that", "the", "president", "muhammadu", "buhari", "administration", "was", "considering", "a", "ban", "on", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "giving", "a", "clarification", "on", "buhari", "'", "s", "pronouncement", "during", "the", "presidential", "media", "chat", "on", "wednesday", ",", "his", "senior", "special", "assistant", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "the", "speculations", "were", "unfounded", ".", "he", "addded", "that", "the", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "\n", "shehu", ",", "while", "admitting", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "islam", ",", "however", "said", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "shehu", "said", ".", "\n", "he", "added", "that", "the", "increasing", "abuse", "of", "the", "hijab", "by", "terrorists", "to", "perpetrate", "criminal", "activities", "and", "other", "atrocities", "is", "a", "reality", ",", "but", "that", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n"], "simple_tokens_original_case": ["\n", "By", "Mohammed", "Abubakar", "\n", "Abuja", "\u2014", "THE", "Presidency", "has", "denied", "insinuations", "and", "rumours", "that", "the", "President", "Muhammadu", "Buhari", "administration", "was", "considering", "a", "ban", "on", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "\n", "Giving", "a", "clarification", "on", "Buhari", "'", "s", "pronouncement", "during", "the", "Presidential", "Media", "Chat", "on", "Wednesday", ",", "his", "Senior", "Special", "Assistant", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "the", "speculations", "were", "unfounded", ".", "He", "addded", "that", "the", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "\n", "Shehu", ",", "while", "admitting", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "Islam", ",", "however", "said", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\n", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "Shehu", "said", ".", "\n", "He", "added", "that", "the", "increasing", "abuse", "of", "the", "Hijab", "by", "terrorists", "to", "perpetrate", "criminal", "activities", "and", "other", "atrocities", "is", "a", "reality", ",", "but", "that", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\n"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 25, "end": 26, "input": "tokens", "text": "was considering a ban on Hijab , the Muslim women ' "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Hijab", "context": {"start": 25, "end": 26, "input": "tokens", "text": "was considering a ban on Hijab , the Muslim women ' "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 47, "end": 51, "input": "tokens", "text": "Buhari ' s pronouncement during the Presidential Media Chat on Wednesday , his Senior "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "the Presidential Media Chat", "context": {"start": 47, "end": 51, "input": "tokens", "text": "Buhari ' s pronouncement during the Presidential Media Chat on Wednesday , his Senior "}}, {"origin": {"segment": "content_strict", "context": {"start": 120, "end": 121, "input": "tokens", "text": "which violates the teachings of Islam , however said the President "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Islam", "context": {"start": 120, "end": 121, "input": "tokens", "text": "which violates the teachings of Islam , however said the President "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 28, "end": 29, "input": "tokens", "text": "ban on Hijab , the Muslim women ' s dressing symbol "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Muslim", "context": {"start": 28, "end": 29, "input": "tokens", "text": "ban on Hijab , the Muslim women ' s dressing symbol "}}, {"origin": {"segment": "content_strict", "context": {"start": 83, "end": 84, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Muslims", "context": {"start": 83, "end": 84, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}}, {"origin": {"segment": "content_strict", "context": {"start": 207, "end": 208, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Muslim", "context": {"start": 207, "end": 208, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Mohammed Abubakar \n Abuja \u2014 THE Presidency "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Mohammed Abubakar", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Mohammed Abubakar \n Abuja \u2014 THE Presidency "}}, {"origin": {"segment": "content_strict", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n By Mohammed Abubakar \n Abuja \u2014 THE Presidency has denied "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Abuja", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n By Mohammed Abubakar \n Abuja \u2014 THE Presidency has denied "}}, {"origin": {"segment": "content_strict", "context": {"start": 17, "end": 19, "input": "tokens", "text": "and rumours that the President Muhammadu Buhari administration was considering a ban "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Muhammadu Buhari", "context": {"start": 17, "end": 19, "input": "tokens", "text": "and rumours that the President Muhammadu Buhari administration was considering a ban "}}, {"origin": {"segment": "content_strict", "context": {"start": 42, "end": 43, "input": "tokens", "text": "\n Giving a clarification on Buhari ' s pronouncement during the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Buhari", "context": {"start": 42, "end": 43, "input": "tokens", "text": "\n Giving a clarification on Buhari ' s pronouncement during the "}}, {"origin": {"segment": "content_strict", "context": {"start": 63, "end": 65, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Garba Shehu", "context": {"start": 63, "end": 65, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}}, {"origin": {"segment": "content_strict", "context": {"start": 94, "end": 95, "input": "tokens", "text": "allow religious freedom . \n Shehu , while admitting that the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Shehu", "context": {"start": 94, "end": 95, "input": "tokens", "text": "allow religious freedom . \n Shehu , while admitting that the "}}, {"origin": {"segment": "content_strict", "context": {"start": 100, "end": 101, "input": "tokens", "text": ", while admitting that the Hijab was being abused by terrorists "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Hijab", "context": {"start": 100, "end": 101, "input": "tokens", "text": ", while admitting that the Hijab was being abused by terrorists "}}, {"origin": {"segment": "content_strict", "context": {"start": 170, "end": 171, "input": "tokens", "text": "by the constitution , \" Shehu said . \n He added "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Shehu", "context": {"start": 170, "end": 171, "input": "tokens", "text": "by the constitution , \" Shehu said . \n He added "}}]}}}}, "title": {"text": " Nigeria: No Ban On Hijab, Presidency Clarifies - allAfrica.com ", "simple_tokens": ["nigeria", ":", "no", "ban", "on", "hijab", ",", "presidency", "clarifies", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "No", "Ban", "On", "Hijab", ",", "Presidency", "Clarifies", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}}, {"origin": {"segment": "title", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Presidency Clarifies - allAfrica "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Hijab", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Presidency Clarifies - allAfrica "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 7, "end": 11, "input": "tokens", "text": "No Ban On Hijab , Presidency Clarifies - allAfrica . com "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "value": "Presidency Clarifies - allAfrica", "context": {"start": 7, "end": 11, "input": "tokens", "text": "No Ban On Hijab , Presidency Clarifies - allAfrica . com "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:12.270891", "@etk_process_time": 0.19498586654663086, "@etk_start_time": "2017-11-15T01:34:12.075905"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: No Ban On Hijab, Presidency Clarifies - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Nigeria: No Ban On Hijab, Presidency Clarifies\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Mohammed Abubakar\n \n

\n Abuja — THE Presidency has denied insinuations and rumours that the President Muhammadu Buhari administration was considering a ban on Hijab, the Muslim women's dressing symbol of modesty.\n

\n

\n Giving a clarification on Buhari's pronouncement during the Presidential Media Chat on Wednesday, his Senior Special Assistant on Media and Publicity, Garba Shehu, said the speculations were unfounded. He addded that the administration would always respect the rights of Muslims to protect their modesty and allow religious freedom.\n

\n

\n Shehu, while admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, however said the President would not take any decision on the issue without due consultation with all the stakeholders.\n

\n
\n
\n

\n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" Shehu said.\n

\n

\n He added that the increasing abuse of the Hijab by terrorists to perpetrate criminal activities and other atrocities is a reality, but that government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 The Guardian. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27", "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"} -{"url": "http://www.ce_news_article.org/2016/01/03/201601030077.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 264, "end": 265, "input": "tokens", "text": "a strict version of the Sharia . The organization has carried "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sharia"}, {"source": {"segment": "content_relaxed", "context": {"start": 285, "end": 286, "input": "tokens", "text": "a strict version of the Sharia . The organization has carried "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sharia"}], "key": "sharia", "value": "Sharia"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 455, "end": 456, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 5, "end": 8, "input": "tokens", "text": "\n Somalian terror group , al - Shabab , has used clips of "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Shabab"}, {"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 10, "input": "tokens", "text": "January 2016 \n Africa : Al - Shabab Uses Trump ' s Anti "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Al - Shabab"}, {"source": {"segment": "content_relaxed", "context": {"start": 26, "end": 29, "input": "tokens", "text": "\n Somalian terror group , al - Shabab , has used clips of "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Shabab"}, {"source": {"segment": "title", "context": {"start": 2, "end": 5, "input": "tokens", "text": "Africa : Al - Shabab Uses Trump ' s Anti "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Al - Shabab"}], "key": "al - shabab", "value": "al - Shabab"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 16, "end": 18, "input": "tokens", "text": "clips of US presidential candidate Donald Trump in its propaganda film . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Donald Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 37, "end": 39, "input": "tokens", "text": "clips of US presidential candidate Donald Trump in its propaganda film . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Donald Trump"}], "key": "donald trump", "value": "Donald Trump"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 23, "end": 24, "input": "tokens", "text": "in its propaganda film . Trump courted controversy in December when "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_strict", "context": {"start": 70, "end": 71, "input": "tokens", "text": "terrorists used a clip from Trump ' s December speech , "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_strict", "context": {"start": 100, "end": 101, "input": "tokens", "text": ". Many American politicians condemned Trump ' s statement and said "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_strict", "context": {"start": 129, "end": 130, "input": "tokens", "text": "have done exactly that . Trump ' s clip in the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 11, "end": 12, "input": "tokens", "text": ": Al - Shabab Uses Trump ' s Anti - Muslim "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 44, "end": 45, "input": "tokens", "text": "in its propaganda film . Trump courted controversy in December when "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 91, "end": 92, "input": "tokens", "text": "terrorists used a clip from Trump ' s December speech , "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 121, "end": 122, "input": "tokens", "text": ". Many American politicians condemned Trump ' s statement and said "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 150, "end": 151, "input": "tokens", "text": "have done exactly that . Trump ' s clip in the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "title", "context": {"start": 6, "end": 7, "input": "tokens", "text": ": Al - Shabab Uses Trump ' s Anti - Muslim "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}], "key": "trump", "value": "Trump"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 53, "end": 56, "input": "tokens", "text": "distributed on Twitter by the al - Kataib Media Foundation , an Islamist "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Kataib"}, {"source": {"segment": "content_relaxed", "context": {"start": 74, "end": 77, "input": "tokens", "text": "distributed on Twitter by the al - Kataib Media Foundation , an Islamist "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Kataib"}], "key": "al - kataib", "value": "al - Kataib"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 148, "end": 152, "input": "tokens", "text": "between clips of militant leader Anwar al - Awlaki saying that Muslims would face "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Anwar al - Awlaki"}, {"source": {"segment": "content_relaxed", "context": {"start": 169, "end": 173, "input": "tokens", "text": "between clips of militant leader Anwar al - Awlaki saying that Muslims would face "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Anwar al - Awlaki"}], "key": "anwar al - awlaki", "value": "Anwar al - Awlaki"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 223, "end": 225, "input": "tokens", "text": "the African - American activist Malcolm X , who was killed in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Malcolm X"}, {"source": {"segment": "content_relaxed", "context": {"start": 244, "end": 246, "input": "tokens", "text": "the African - American activist Malcolm X , who was killed in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Malcolm X"}], "key": "malcolm x", "value": "Malcolm X"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 19, "end": 20, "input": "tokens", "text": "Anti - Muslim Tirade to Woo Supporters \n Somalian terror group "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Woo"}], "key": "woo", "value": "Woo"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 14, "end": 18, "input": "tokens", "text": "Anti - Muslim Tirade to Woo Supporters - allAfrica . com "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Woo Supporters - allAfrica"}], "key": "woo supporters - allafrica", "value": "Woo Supporters - allAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "method": "rearrange_description"}], "key": "description", "value": " \n Somalian terror group, al-Shabab, has used clips of US presidential candidate Donald Trump in its propaganda film. Trump courted controversy in December when he demanded that all Muslims be barred from entering the US. \n The al-Shabab video was distributed on Twitter by the al-Kataib Media Foundation, an Islamist organization. \n The terrorists used a clip from Trump's December speech, where he made calls for the United States to bar Muslims from entering the country as his supporters cheered. Many American politicians condemned Trump's statement and said his views could be used as propaganda by militant organizations. \n The al-Shabab seemed to have done exactly that. Trump's clip in the 51-minute-long film was sandwiched between clips of militant leader Anwar al-Awlaki saying that Muslims would face a choice between leaving for Islamic countries or staying at home to fight the West, SITE monitoring reported. Al-Awlaki was killed in a drone strike in Yemen in 2011. \n The video, confirmed to be genuine by experts, has footage of the US police using force against black people as well as speeches of the African-American activist Malcolm X, who was killed in 1965. \n The al-Shabab, an affiliate of the al-Qaida, seeks to overthrow Somalia's government and impose an Islamic regime following a strict version of the Sharia. The organization has carried out many attacks in Kenya and Ethiopia. \n mg/se (Reuters, dpa) \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 171, "end": 172, "input": "tokens", "text": "at home to fight the West , SITE monitoring reported . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "West"}, {"source": {"segment": "content_relaxed", "context": {"start": 192, "end": 193, "input": "tokens", "text": "at home to fight the West , SITE monitoring reported . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "West"}], "key": "west", "value": "West"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Africa : Al - Shabab Uses "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 425, "end": 426, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "method": "rearrange_title"}], "key": "title", "value": " Africa: Al-Shabab Uses Trump's Anti-Muslim Tirade to Woo Supporters - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 177, "end": 180, "input": "tokens", "text": ", SITE monitoring reported . Al - Awlaki was killed in a drone "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Al - Awlaki"}, {"source": {"segment": "content_relaxed", "context": {"start": 198, "end": 201, "input": "tokens", "text": ", SITE monitoring reported . Al - Awlaki was killed in a drone "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Al - Awlaki"}], "key": "al - awlaki", "value": "Al - Awlaki"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 242, "end": 245, "input": "tokens", "text": ", an affiliate of the al - Qaida , seeks to overthrow Somalia "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Qaida"}, {"source": {"segment": "content_relaxed", "context": {"start": 263, "end": 266, "input": "tokens", "text": ", an affiliate of the al - Qaida , seeks to overthrow Somalia "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Qaida"}], "key": "al - qaida", "value": "al - Qaida"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 283, "end": 284, "input": "tokens", "text": "\n mg / se ( Reuters , dpa ) \n "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Reuters"}, {"source": {"segment": "content_relaxed", "context": {"start": 304, "end": 305, "input": "tokens", "text": "\n mg / se ( Reuters , dpa ) \n Copyright "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Reuters"}], "key": "reuters", "value": "Reuters"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 14, "end": 18, "input": "tokens", "text": "Shabab Uses Trump ' s Anti - Muslim Tirade to Woo Supporters \n Somalian "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Anti - Muslim Tirade"}, {"source": {"segment": "title", "context": {"start": 9, "end": 13, "input": "tokens", "text": "Shabab Uses Trump ' s Anti - Muslim Tirade to Woo Supporters - allAfrica "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Anti - Muslim Tirade"}], "key": "anti - muslim tirade", "value": "Anti - Muslim Tirade"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 319, "end": 320, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 321, "end": 324, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 13, "end": 14, "input": "tokens", "text": ", has used clips of US presidential candidate Donald Trump in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_strict", "context": {"start": 39, "end": 40, "input": "tokens", "text": "be barred from entering the US . \n The al - "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_strict", "context": {"start": 206, "end": 207, "input": "tokens", "text": ", has footage of the US police using force against black "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_relaxed", "context": {"start": 34, "end": 35, "input": "tokens", "text": ", has used clips of US presidential candidate Donald Trump in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_relaxed", "context": {"start": 60, "end": 61, "input": "tokens", "text": "be barred from entering the US . \n The al - "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_relaxed", "context": {"start": 227, "end": 228, "input": "tokens", "text": ", has footage of the US police using force against black "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}], "key": "us", "value": "US"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 81, "end": 84, "input": "tokens", "text": "where he made calls for the United States to bar Muslims from entering "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 102, "end": 105, "input": "tokens", "text": "where he made calls for the United States to bar Muslims from entering "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}], "key": "the united states", "value": "the United States"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 187, "end": 188, "input": "tokens", "text": "in a drone strike in Yemen in 2011 . \n The "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yemen"}, {"source": {"segment": "content_relaxed", "context": {"start": 208, "end": 209, "input": "tokens", "text": "in a drone strike in Yemen in 2011 . \n The "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yemen"}], "key": "yemen", "value": "Yemen"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 249, "end": 250, "input": "tokens", "text": "Qaida , seeks to overthrow Somalia ' s government and impose "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}, {"source": {"segment": "content_relaxed", "context": {"start": 270, "end": 271, "input": "tokens", "text": "Qaida , seeks to overthrow Somalia ' s government and impose "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}], "key": "somalia", "value": "Somalia"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 274, "end": 275, "input": "tokens", "text": "carried out many attacks in Kenya and Ethiopia . \n mg "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kenya"}, {"source": {"segment": "content_relaxed", "context": {"start": 295, "end": 296, "input": "tokens", "text": "carried out many attacks in Kenya and Ethiopia . \n mg "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kenya"}], "key": "kenya", "value": "Kenya"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 276, "end": 277, "input": "tokens", "text": "many attacks in Kenya and Ethiopia . \n mg / se "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ethiopia"}, {"source": {"segment": "content_relaxed", "context": {"start": 297, "end": 298, "input": "tokens", "text": "many attacks in Kenya and Ethiopia . \n mg / se "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ethiopia"}], "key": "ethiopia", "value": "Ethiopia"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 2, "input": "tokens", "text": "\n Somalian terror group , al - "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalian"}, {"source": {"segment": "content_relaxed", "context": {"start": 22, "end": 23, "input": "tokens", "text": "Tirade to Woo Supporters \n Somalian terror group , al - "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalian"}], "key": "somalian", "value": "Somalian"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 33, "end": 34, "input": "tokens", "text": "when he demanded that all Muslims be barred from entering the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_strict", "context": {"start": 86, "end": 87, "input": "tokens", "text": "the United States to bar Muslims from entering the country as "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_strict", "context": {"start": 154, "end": 155, "input": "tokens", "text": "al - Awlaki saying that Muslims would face a choice between "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 54, "end": 55, "input": "tokens", "text": "when he demanded that all Muslims be barred from entering the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 107, "end": 108, "input": "tokens", "text": "the United States to bar Muslims from entering the country as "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 175, "end": 176, "input": "tokens", "text": "al - Awlaki saying that Muslims would face a choice between "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 60, "end": 61, "input": "tokens", "text": "Kataib Media Foundation , an Islamist organization . \n The terrorists "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_relaxed", "context": {"start": 81, "end": 82, "input": "tokens", "text": "Kataib Media Foundation , an Islamist organization . \n The terrorists "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}], "key": "islamist", "value": "Islamist"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 96, "end": 98, "input": "tokens", "text": "as his supporters cheered . Many American politicians condemned Trump ' s "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Many American"}, {"source": {"segment": "content_relaxed", "context": {"start": 117, "end": 119, "input": "tokens", "text": "as his supporters cheered . Many American politicians condemned Trump ' s "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Many American"}], "key": "many american", "value": "Many American"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 162, "end": 163, "input": "tokens", "text": "a choice between leaving for Islamic countries or staying at home "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamic"}, {"source": {"segment": "content_strict", "context": {"start": 256, "end": 257, "input": "tokens", "text": "s government and impose an Islamic regime following a strict version "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamic"}, {"source": {"segment": "content_relaxed", "context": {"start": 183, "end": 184, "input": "tokens", "text": "a choice between leaving for Islamic countries or staying at home "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamic"}, {"source": {"segment": "content_relaxed", "context": {"start": 277, "end": 278, "input": "tokens", "text": "s government and impose an Islamic regime following a strict version "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamic"}], "key": "islamic", "value": "Islamic"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 219, "end": 220, "input": "tokens", "text": "well as speeches of the African - American activist Malcolm X "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 240, "end": 241, "input": "tokens", "text": "well as speeches of the African - American activist Malcolm X "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}], "key": "african", "value": "African"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 221, "end": 222, "input": "tokens", "text": "speeches of the African - American activist Malcolm X , who "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_relaxed", "context": {"start": 242, "end": 243, "input": "tokens", "text": "speeches of the African - American activist Malcolm X , who "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}], "key": "american", "value": "American"}]}, "content_extraction": {"content_relaxed": {"text": " \n 2 January 2016 \n Africa: Al-Shabab Uses Trump's Anti-Muslim Tirade to Woo Supporters \n Somalian terror group, al-Shabab, has used clips of US presidential candidate Donald Trump in its propaganda film. Trump courted controversy in December when he demanded that all Muslims be barred from entering the US. \n The al-Shabab video was distributed on Twitter by the al-Kataib Media Foundation, an Islamist organization. \n The terrorists used a clip from Trump's December speech, where he made calls for the United States to bar Muslims from entering the country as his supporters cheered. Many American politicians condemned Trump's statement and said his views could be used as propaganda by militant organizations. \n The al-Shabab seemed to have done exactly that. Trump's clip in the 51-minute-long film was sandwiched between clips of militant leader Anwar al-Awlaki saying that Muslims would face a choice between leaving for Islamic countries or staying at home to fight the West, SITE monitoring reported. Al-Awlaki was killed in a drone strike in Yemen in 2011. \n The video, confirmed to be genuine by experts, has footage of the US police using force against black people as well as speeches of the African-American activist Malcolm X, who was killed in 1965. \n The al-Shabab, an affiliate of the al-Qaida, seeks to overthrow Somalia's government and impose an Islamic regime following a strict version of the Sharia. The organization has carried out many attacks in Kenya and Ethiopia. \n mg/se (Reuters, dpa) \n Copyright \n 2016 Deutsche Welle. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "2", "january", "2016", "\n", "africa", ":", "al", "-", "shabab", "uses", "trump", "'", "s", "anti", "-", "muslim", "tirade", "to", "woo", "supporters", "\n", "somalian", "terror", "group", ",", "al", "-", "shabab", ",", "has", "used", "clips", "of", "us", "presidential", "candidate", "donald", "trump", "in", "its", "propaganda", "film", ".", "trump", "courted", "controversy", "in", "december", "when", "he", "demanded", "that", "all", "muslims", "be", "barred", "from", "entering", "the", "us", ".", "\n", "the", "al", "-", "shabab", "video", "was", "distributed", "on", "twitter", "by", "the", "al", "-", "kataib", "media", "foundation", ",", "an", "islamist", "organization", ".", "\n", "the", "terrorists", "used", "a", "clip", "from", "trump", "'", "s", "december", "speech", ",", "where", "he", "made", "calls", "for", "the", "united", "states", "to", "bar", "muslims", "from", "entering", "the", "country", "as", "his", "supporters", "cheered", ".", "many", "american", "politicians", "condemned", "trump", "'", "s", "statement", "and", "said", "his", "views", "could", "be", "used", "as", "propaganda", "by", "militant", "organizations", ".", "\n", "the", "al", "-", "shabab", "seemed", "to", "have", "done", "exactly", "that", ".", "trump", "'", "s", "clip", "in", "the", "51", "-", "minute", "-", "long", "film", "was", "sandwiched", "between", "clips", "of", "militant", "leader", "anwar", "al", "-", "awlaki", "saying", "that", "muslims", "would", "face", "a", "choice", "between", "leaving", "for", "islamic", "countries", "or", "staying", "at", "home", "to", "fight", "the", "west", ",", "site", "monitoring", "reported", ".", "al", "-", "awlaki", "was", "killed", "in", "a", "drone", "strike", "in", "yemen", "in", "2011", ".", "\n", "the", "video", ",", "confirmed", "to", "be", "genuine", "by", "experts", ",", "has", "footage", "of", "the", "us", "police", "using", "force", "against", "black", "people", "as", "well", "as", "speeches", "of", "the", "african", "-", "american", "activist", "malcolm", "x", ",", "who", "was", "killed", "in", "1965", ".", "\n", "the", "al", "-", "shabab", ",", "an", "affiliate", "of", "the", "al", "-", "qaida", ",", "seeks", "to", "overthrow", "somalia", "'", "s", "government", "and", "impose", "an", "islamic", "regime", "following", "a", "strict", "version", "of", "the", "sharia", ".", "the", "organization", "has", "carried", "out", "many", "attacks", "in", "kenya", "and", "ethiopia", ".", "\n", "mg", "/", "se", "(", "reuters", ",", "dpa", ")", "\n", "copyright", "\n", "2016", "deutsche", "welle", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "2", "January", "2016", "\n", "Africa", ":", "Al", "-", "Shabab", "Uses", "Trump", "'", "s", "Anti", "-", "Muslim", "Tirade", "to", "Woo", "Supporters", "\n", "Somalian", "terror", "group", ",", "al", "-", "Shabab", ",", "has", "used", "clips", "of", "US", "presidential", "candidate", "Donald", "Trump", "in", "its", "propaganda", "film", ".", "Trump", "courted", "controversy", "in", "December", "when", "he", "demanded", "that", "all", "Muslims", "be", "barred", "from", "entering", "the", "US", ".", "\n", "The", "al", "-", "Shabab", "video", "was", "distributed", "on", "Twitter", "by", "the", "al", "-", "Kataib", "Media", "Foundation", ",", "an", "Islamist", "organization", ".", "\n", "The", "terrorists", "used", "a", "clip", "from", "Trump", "'", "s", "December", "speech", ",", "where", "he", "made", "calls", "for", "the", "United", "States", "to", "bar", "Muslims", "from", "entering", "the", "country", "as", "his", "supporters", "cheered", ".", "Many", "American", "politicians", "condemned", "Trump", "'", "s", "statement", "and", "said", "his", "views", "could", "be", "used", "as", "propaganda", "by", "militant", "organizations", ".", "\n", "The", "al", "-", "Shabab", "seemed", "to", "have", "done", "exactly", "that", ".", "Trump", "'", "s", "clip", "in", "the", "51", "-", "minute", "-", "long", "film", "was", "sandwiched", "between", "clips", "of", "militant", "leader", "Anwar", "al", "-", "Awlaki", "saying", "that", "Muslims", "would", "face", "a", "choice", "between", "leaving", "for", "Islamic", "countries", "or", "staying", "at", "home", "to", "fight", "the", "West", ",", "SITE", "monitoring", "reported", ".", "Al", "-", "Awlaki", "was", "killed", "in", "a", "drone", "strike", "in", "Yemen", "in", "2011", ".", "\n", "The", "video", ",", "confirmed", "to", "be", "genuine", "by", "experts", ",", "has", "footage", "of", "the", "US", "police", "using", "force", "against", "black", "people", "as", "well", "as", "speeches", "of", "the", "African", "-", "American", "activist", "Malcolm", "X", ",", "who", "was", "killed", "in", "1965", ".", "\n", "The", "al", "-", "Shabab", ",", "an", "affiliate", "of", "the", "al", "-", "Qaida", ",", "seeks", "to", "overthrow", "Somalia", "'", "s", "government", "and", "impose", "an", "Islamic", "regime", "following", "a", "strict", "version", "of", "the", "Sharia", ".", "The", "organization", "has", "carried", "out", "many", "attacks", "in", "Kenya", "and", "Ethiopia", ".", "\n", "mg", "/", "se", "(", "Reuters", ",", "dpa", ")", "\n", "Copyright", "\n", "2016", "Deutsche", "Welle", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 285, "end": 286, "input": "tokens", "text": "a strict version of the Sharia . The organization has carried "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Sharia", "context": {"start": 285, "end": 286, "input": "tokens", "text": "a strict version of the Sharia . The organization has carried "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 455, "end": 456, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "AllAfrica", "context": {"start": 455, "end": 456, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 7, "end": 10, "input": "tokens", "text": "January 2016 \n Africa : Al - Shabab Uses Trump ' s Anti "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Al - Shabab", "context": {"start": 7, "end": 10, "input": "tokens", "text": "January 2016 \n Africa : Al - Shabab Uses Trump ' s Anti "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 11, "end": 12, "input": "tokens", "text": ": Al - Shabab Uses Trump ' s Anti - Muslim "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Trump", "context": {"start": 11, "end": 12, "input": "tokens", "text": ": Al - Shabab Uses Trump ' s Anti - Muslim "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 19, "end": 20, "input": "tokens", "text": "Anti - Muslim Tirade to Woo Supporters \n Somalian terror group "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Woo", "context": {"start": 19, "end": 20, "input": "tokens", "text": "Anti - Muslim Tirade to Woo Supporters \n Somalian terror group "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 26, "end": 29, "input": "tokens", "text": "\n Somalian terror group , al - Shabab , has used clips of "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "al - Shabab", "context": {"start": 26, "end": 29, "input": "tokens", "text": "\n Somalian terror group , al - Shabab , has used clips of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 37, "end": 39, "input": "tokens", "text": "clips of US presidential candidate Donald Trump in its propaganda film . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Donald Trump", "context": {"start": 37, "end": 39, "input": "tokens", "text": "clips of US presidential candidate Donald Trump in its propaganda film . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 44, "end": 45, "input": "tokens", "text": "in its propaganda film . Trump courted controversy in December when "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Trump", "context": {"start": 44, "end": 45, "input": "tokens", "text": "in its propaganda film . Trump courted controversy in December when "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 74, "end": 77, "input": "tokens", "text": "distributed on Twitter by the al - Kataib Media Foundation , an Islamist "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "al - Kataib", "context": {"start": 74, "end": 77, "input": "tokens", "text": "distributed on Twitter by the al - Kataib Media Foundation , an Islamist "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 91, "end": 92, "input": "tokens", "text": "terrorists used a clip from Trump ' s December speech , "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Trump", "context": {"start": 91, "end": 92, "input": "tokens", "text": "terrorists used a clip from Trump ' s December speech , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 121, "end": 122, "input": "tokens", "text": ". Many American politicians condemned Trump ' s statement and said "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Trump", "context": {"start": 121, "end": 122, "input": "tokens", "text": ". Many American politicians condemned Trump ' s statement and said "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 150, "end": 151, "input": "tokens", "text": "have done exactly that . Trump ' s clip in the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Trump", "context": {"start": 150, "end": 151, "input": "tokens", "text": "have done exactly that . Trump ' s clip in the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 169, "end": 173, "input": "tokens", "text": "between clips of militant leader Anwar al - Awlaki saying that Muslims would face "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Anwar al - Awlaki", "context": {"start": 169, "end": 173, "input": "tokens", "text": "between clips of militant leader Anwar al - Awlaki saying that Muslims would face "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 244, "end": 246, "input": "tokens", "text": "the African - American activist Malcolm X , who was killed in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Malcolm X", "context": {"start": 244, "end": 246, "input": "tokens", "text": "the African - American activist Malcolm X , who was killed in "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Africa : Al - Shabab Uses "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Africa", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 2 January 2016 \n Africa : Al - Shabab Uses "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 192, "end": 193, "input": "tokens", "text": "at home to fight the West , SITE monitoring reported . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "West", "context": {"start": 192, "end": 193, "input": "tokens", "text": "at home to fight the West , SITE monitoring reported . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 425, "end": 426, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "AllAfrica", "context": {"start": 425, "end": 426, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 14, "end": 18, "input": "tokens", "text": "Shabab Uses Trump ' s Anti - Muslim Tirade to Woo Supporters \n Somalian "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Anti - Muslim Tirade", "context": {"start": 14, "end": 18, "input": "tokens", "text": "Shabab Uses Trump ' s Anti - Muslim Tirade to Woo Supporters \n Somalian "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 198, "end": 201, "input": "tokens", "text": ", SITE monitoring reported . Al - Awlaki was killed in a drone "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Al - Awlaki", "context": {"start": 198, "end": 201, "input": "tokens", "text": ", SITE monitoring reported . Al - Awlaki was killed in a drone "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 263, "end": 266, "input": "tokens", "text": ", an affiliate of the al - Qaida , seeks to overthrow Somalia "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "al - Qaida", "context": {"start": 263, "end": 266, "input": "tokens", "text": ", an affiliate of the al - Qaida , seeks to overthrow Somalia "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 304, "end": 305, "input": "tokens", "text": "\n mg / se ( Reuters , dpa ) \n Copyright "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Reuters", "context": {"start": 304, "end": 305, "input": "tokens", "text": "\n mg / se ( Reuters , dpa ) \n Copyright "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 319, "end": 320, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Distributed", "context": {"start": 319, "end": 320, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 321, "end": 324, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "AllAfrica Global Media", "context": {"start": 321, "end": 324, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 34, "end": 35, "input": "tokens", "text": ", has used clips of US presidential candidate Donald Trump in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "US", "context": {"start": 34, "end": 35, "input": "tokens", "text": ", has used clips of US presidential candidate Donald Trump in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 60, "end": 61, "input": "tokens", "text": "be barred from entering the US . \n The al - "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "US", "context": {"start": 60, "end": 61, "input": "tokens", "text": "be barred from entering the US . \n The al - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 102, "end": 105, "input": "tokens", "text": "where he made calls for the United States to bar Muslims from entering "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "the United States", "context": {"start": 102, "end": 105, "input": "tokens", "text": "where he made calls for the United States to bar Muslims from entering "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 208, "end": 209, "input": "tokens", "text": "in a drone strike in Yemen in 2011 . \n The "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Yemen", "context": {"start": 208, "end": 209, "input": "tokens", "text": "in a drone strike in Yemen in 2011 . \n The "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 227, "end": 228, "input": "tokens", "text": ", has footage of the US police using force against black "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "US", "context": {"start": 227, "end": 228, "input": "tokens", "text": ", has footage of the US police using force against black "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 270, "end": 271, "input": "tokens", "text": "Qaida , seeks to overthrow Somalia ' s government and impose "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Somalia", "context": {"start": 270, "end": 271, "input": "tokens", "text": "Qaida , seeks to overthrow Somalia ' s government and impose "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 295, "end": 296, "input": "tokens", "text": "carried out many attacks in Kenya and Ethiopia . \n mg "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Kenya", "context": {"start": 295, "end": 296, "input": "tokens", "text": "carried out many attacks in Kenya and Ethiopia . \n mg "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 297, "end": 298, "input": "tokens", "text": "many attacks in Kenya and Ethiopia . \n mg / se "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Ethiopia", "context": {"start": 297, "end": 298, "input": "tokens", "text": "many attacks in Kenya and Ethiopia . \n mg / se "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 22, "end": 23, "input": "tokens", "text": "Tirade to Woo Supporters \n Somalian terror group , al - "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Somalian", "context": {"start": 22, "end": 23, "input": "tokens", "text": "Tirade to Woo Supporters \n Somalian terror group , al - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 54, "end": 55, "input": "tokens", "text": "when he demanded that all Muslims be barred from entering the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Muslims", "context": {"start": 54, "end": 55, "input": "tokens", "text": "when he demanded that all Muslims be barred from entering the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 81, "end": 82, "input": "tokens", "text": "Kataib Media Foundation , an Islamist organization . \n The terrorists "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Islamist", "context": {"start": 81, "end": 82, "input": "tokens", "text": "Kataib Media Foundation , an Islamist organization . \n The terrorists "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 107, "end": 108, "input": "tokens", "text": "the United States to bar Muslims from entering the country as "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Muslims", "context": {"start": 107, "end": 108, "input": "tokens", "text": "the United States to bar Muslims from entering the country as "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 117, "end": 119, "input": "tokens", "text": "as his supporters cheered . Many American politicians condemned Trump ' s "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Many American", "context": {"start": 117, "end": 119, "input": "tokens", "text": "as his supporters cheered . Many American politicians condemned Trump ' s "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 175, "end": 176, "input": "tokens", "text": "al - Awlaki saying that Muslims would face a choice between "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Muslims", "context": {"start": 175, "end": 176, "input": "tokens", "text": "al - Awlaki saying that Muslims would face a choice between "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 183, "end": 184, "input": "tokens", "text": "a choice between leaving for Islamic countries or staying at home "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Islamic", "context": {"start": 183, "end": 184, "input": "tokens", "text": "a choice between leaving for Islamic countries or staying at home "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 240, "end": 241, "input": "tokens", "text": "well as speeches of the African - American activist Malcolm X "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "African", "context": {"start": 240, "end": 241, "input": "tokens", "text": "well as speeches of the African - American activist Malcolm X "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 242, "end": 243, "input": "tokens", "text": "speeches of the African - American activist Malcolm X , who "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "American", "context": {"start": 242, "end": 243, "input": "tokens", "text": "speeches of the African - American activist Malcolm X , who "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 277, "end": 278, "input": "tokens", "text": "s government and impose an Islamic regime following a strict version "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Islamic", "context": {"start": 277, "end": 278, "input": "tokens", "text": "s government and impose an Islamic regime following a strict version "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/03/201601030077.html"}, "content_strict": {"text": " \n Somalian terror group, al-Shabab, has used clips of US presidential candidate Donald Trump in its propaganda film. Trump courted controversy in December when he demanded that all Muslims be barred from entering the US. \n The al-Shabab video was distributed on Twitter by the al-Kataib Media Foundation, an Islamist organization. \n The terrorists used a clip from Trump's December speech, where he made calls for the United States to bar Muslims from entering the country as his supporters cheered. Many American politicians condemned Trump's statement and said his views could be used as propaganda by militant organizations. \n The al-Shabab seemed to have done exactly that. Trump's clip in the 51-minute-long film was sandwiched between clips of militant leader Anwar al-Awlaki saying that Muslims would face a choice between leaving for Islamic countries or staying at home to fight the West, SITE monitoring reported. Al-Awlaki was killed in a drone strike in Yemen in 2011. \n The video, confirmed to be genuine by experts, has footage of the US police using force against black people as well as speeches of the African-American activist Malcolm X, who was killed in 1965. \n The al-Shabab, an affiliate of the al-Qaida, seeks to overthrow Somalia's government and impose an Islamic regime following a strict version of the Sharia. The organization has carried out many attacks in Kenya and Ethiopia. \n mg/se (Reuters, dpa) \n ", "simple_tokens": ["\n", "somalian", "terror", "group", ",", "al", "-", "shabab", ",", "has", "used", "clips", "of", "us", "presidential", "candidate", "donald", "trump", "in", "its", "propaganda", "film", ".", "trump", "courted", "controversy", "in", "december", "when", "he", "demanded", "that", "all", "muslims", "be", "barred", "from", "entering", "the", "us", ".", "\n", "the", "al", "-", "shabab", "video", "was", "distributed", "on", "twitter", "by", "the", "al", "-", "kataib", "media", "foundation", ",", "an", "islamist", "organization", ".", "\n", "the", "terrorists", "used", "a", "clip", "from", "trump", "'", "s", "december", "speech", ",", "where", "he", "made", "calls", "for", "the", "united", "states", "to", "bar", "muslims", "from", "entering", "the", "country", "as", "his", "supporters", "cheered", ".", "many", "american", "politicians", "condemned", "trump", "'", "s", "statement", "and", "said", "his", "views", "could", "be", "used", "as", "propaganda", "by", "militant", "organizations", ".", "\n", "the", "al", "-", "shabab", "seemed", "to", "have", "done", "exactly", "that", ".", "trump", "'", "s", "clip", "in", "the", "51", "-", "minute", "-", "long", "film", "was", "sandwiched", "between", "clips", "of", "militant", "leader", "anwar", "al", "-", "awlaki", "saying", "that", "muslims", "would", "face", "a", "choice", "between", "leaving", "for", "islamic", "countries", "or", "staying", "at", "home", "to", "fight", "the", "west", ",", "site", "monitoring", "reported", ".", "al", "-", "awlaki", "was", "killed", "in", "a", "drone", "strike", "in", "yemen", "in", "2011", ".", "\n", "the", "video", ",", "confirmed", "to", "be", "genuine", "by", "experts", ",", "has", "footage", "of", "the", "us", "police", "using", "force", "against", "black", "people", "as", "well", "as", "speeches", "of", "the", "african", "-", "american", "activist", "malcolm", "x", ",", "who", "was", "killed", "in", "1965", ".", "\n", "the", "al", "-", "shabab", ",", "an", "affiliate", "of", "the", "al", "-", "qaida", ",", "seeks", "to", "overthrow", "somalia", "'", "s", "government", "and", "impose", "an", "islamic", "regime", "following", "a", "strict", "version", "of", "the", "sharia", ".", "the", "organization", "has", "carried", "out", "many", "attacks", "in", "kenya", "and", "ethiopia", ".", "\n", "mg", "/", "se", "(", "reuters", ",", "dpa", ")", "\n"], "simple_tokens_original_case": ["\n", "Somalian", "terror", "group", ",", "al", "-", "Shabab", ",", "has", "used", "clips", "of", "US", "presidential", "candidate", "Donald", "Trump", "in", "its", "propaganda", "film", ".", "Trump", "courted", "controversy", "in", "December", "when", "he", "demanded", "that", "all", "Muslims", "be", "barred", "from", "entering", "the", "US", ".", "\n", "The", "al", "-", "Shabab", "video", "was", "distributed", "on", "Twitter", "by", "the", "al", "-", "Kataib", "Media", "Foundation", ",", "an", "Islamist", "organization", ".", "\n", "The", "terrorists", "used", "a", "clip", "from", "Trump", "'", "s", "December", "speech", ",", "where", "he", "made", "calls", "for", "the", "United", "States", "to", "bar", "Muslims", "from", "entering", "the", "country", "as", "his", "supporters", "cheered", ".", "Many", "American", "politicians", "condemned", "Trump", "'", "s", "statement", "and", "said", "his", "views", "could", "be", "used", "as", "propaganda", "by", "militant", "organizations", ".", "\n", "The", "al", "-", "Shabab", "seemed", "to", "have", "done", "exactly", "that", ".", "Trump", "'", "s", "clip", "in", "the", "51", "-", "minute", "-", "long", "film", "was", "sandwiched", "between", "clips", "of", "militant", "leader", "Anwar", "al", "-", "Awlaki", "saying", "that", "Muslims", "would", "face", "a", "choice", "between", "leaving", "for", "Islamic", "countries", "or", "staying", "at", "home", "to", "fight", "the", "West", ",", "SITE", "monitoring", "reported", ".", "Al", "-", "Awlaki", "was", "killed", "in", "a", "drone", "strike", "in", "Yemen", "in", "2011", ".", "\n", "The", "video", ",", "confirmed", "to", "be", "genuine", "by", "experts", ",", "has", "footage", "of", "the", "US", "police", "using", "force", "against", "black", "people", "as", "well", "as", "speeches", "of", "the", "African", "-", "American", "activist", "Malcolm", "X", ",", "who", "was", "killed", "in", "1965", ".", "\n", "The", "al", "-", "Shabab", ",", "an", "affiliate", "of", "the", "al", "-", "Qaida", ",", "seeks", "to", "overthrow", "Somalia", "'", "s", "government", "and", "impose", "an", "Islamic", "regime", "following", "a", "strict", "version", "of", "the", "Sharia", ".", "The", "organization", "has", "carried", "out", "many", "attacks", "in", "Kenya", "and", "Ethiopia", ".", "\n", "mg", "/", "se", "(", "Reuters", ",", "dpa", ")", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 264, "end": 265, "input": "tokens", "text": "a strict version of the Sharia . The organization has carried "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Sharia", "context": {"start": 264, "end": 265, "input": "tokens", "text": "a strict version of the Sharia . The organization has carried "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 5, "end": 8, "input": "tokens", "text": "\n Somalian terror group , al - Shabab , has used clips of "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "al - Shabab", "context": {"start": 5, "end": 8, "input": "tokens", "text": "\n Somalian terror group , al - Shabab , has used clips of "}}, {"origin": {"segment": "content_strict", "context": {"start": 16, "end": 18, "input": "tokens", "text": "clips of US presidential candidate Donald Trump in its propaganda film . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Donald Trump", "context": {"start": 16, "end": 18, "input": "tokens", "text": "clips of US presidential candidate Donald Trump in its propaganda film . "}}, {"origin": {"segment": "content_strict", "context": {"start": 23, "end": 24, "input": "tokens", "text": "in its propaganda film . Trump courted controversy in December when "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Trump", "context": {"start": 23, "end": 24, "input": "tokens", "text": "in its propaganda film . Trump courted controversy in December when "}}, {"origin": {"segment": "content_strict", "context": {"start": 53, "end": 56, "input": "tokens", "text": "distributed on Twitter by the al - Kataib Media Foundation , an Islamist "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "al - Kataib", "context": {"start": 53, "end": 56, "input": "tokens", "text": "distributed on Twitter by the al - Kataib Media Foundation , an Islamist "}}, {"origin": {"segment": "content_strict", "context": {"start": 70, "end": 71, "input": "tokens", "text": "terrorists used a clip from Trump ' s December speech , "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Trump", "context": {"start": 70, "end": 71, "input": "tokens", "text": "terrorists used a clip from Trump ' s December speech , "}}, {"origin": {"segment": "content_strict", "context": {"start": 100, "end": 101, "input": "tokens", "text": ". Many American politicians condemned Trump ' s statement and said "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Trump", "context": {"start": 100, "end": 101, "input": "tokens", "text": ". Many American politicians condemned Trump ' s statement and said "}}, {"origin": {"segment": "content_strict", "context": {"start": 129, "end": 130, "input": "tokens", "text": "have done exactly that . Trump ' s clip in the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Trump", "context": {"start": 129, "end": 130, "input": "tokens", "text": "have done exactly that . Trump ' s clip in the "}}, {"origin": {"segment": "content_strict", "context": {"start": 148, "end": 152, "input": "tokens", "text": "between clips of militant leader Anwar al - Awlaki saying that Muslims would face "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Anwar al - Awlaki", "context": {"start": 148, "end": 152, "input": "tokens", "text": "between clips of militant leader Anwar al - Awlaki saying that Muslims would face "}}, {"origin": {"segment": "content_strict", "context": {"start": 223, "end": 225, "input": "tokens", "text": "the African - American activist Malcolm X , who was killed in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Malcolm X", "context": {"start": 223, "end": 225, "input": "tokens", "text": "the African - American activist Malcolm X , who was killed in "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 171, "end": 172, "input": "tokens", "text": "at home to fight the West , SITE monitoring reported . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "West", "context": {"start": 171, "end": 172, "input": "tokens", "text": "at home to fight the West , SITE monitoring reported . "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 177, "end": 180, "input": "tokens", "text": ", SITE monitoring reported . Al - Awlaki was killed in a drone "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Al - Awlaki", "context": {"start": 177, "end": 180, "input": "tokens", "text": ", SITE monitoring reported . Al - Awlaki was killed in a drone "}}, {"origin": {"segment": "content_strict", "context": {"start": 242, "end": 245, "input": "tokens", "text": ", an affiliate of the al - Qaida , seeks to overthrow Somalia "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "al - Qaida", "context": {"start": 242, "end": 245, "input": "tokens", "text": ", an affiliate of the al - Qaida , seeks to overthrow Somalia "}}, {"origin": {"segment": "content_strict", "context": {"start": 283, "end": 284, "input": "tokens", "text": "\n mg / se ( Reuters , dpa ) \n "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Reuters", "context": {"start": 283, "end": 284, "input": "tokens", "text": "\n mg / se ( Reuters , dpa ) \n "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 13, "end": 14, "input": "tokens", "text": ", has used clips of US presidential candidate Donald Trump in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "US", "context": {"start": 13, "end": 14, "input": "tokens", "text": ", has used clips of US presidential candidate Donald Trump in "}}, {"origin": {"segment": "content_strict", "context": {"start": 39, "end": 40, "input": "tokens", "text": "be barred from entering the US . \n The al - "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "US", "context": {"start": 39, "end": 40, "input": "tokens", "text": "be barred from entering the US . \n The al - "}}, {"origin": {"segment": "content_strict", "context": {"start": 81, "end": 84, "input": "tokens", "text": "where he made calls for the United States to bar Muslims from entering "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "the United States", "context": {"start": 81, "end": 84, "input": "tokens", "text": "where he made calls for the United States to bar Muslims from entering "}}, {"origin": {"segment": "content_strict", "context": {"start": 187, "end": 188, "input": "tokens", "text": "in a drone strike in Yemen in 2011 . \n The "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Yemen", "context": {"start": 187, "end": 188, "input": "tokens", "text": "in a drone strike in Yemen in 2011 . \n The "}}, {"origin": {"segment": "content_strict", "context": {"start": 206, "end": 207, "input": "tokens", "text": ", has footage of the US police using force against black "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "US", "context": {"start": 206, "end": 207, "input": "tokens", "text": ", has footage of the US police using force against black "}}, {"origin": {"segment": "content_strict", "context": {"start": 249, "end": 250, "input": "tokens", "text": "Qaida , seeks to overthrow Somalia ' s government and impose "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Somalia", "context": {"start": 249, "end": 250, "input": "tokens", "text": "Qaida , seeks to overthrow Somalia ' s government and impose "}}, {"origin": {"segment": "content_strict", "context": {"start": 274, "end": 275, "input": "tokens", "text": "carried out many attacks in Kenya and Ethiopia . \n mg "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Kenya", "context": {"start": 274, "end": 275, "input": "tokens", "text": "carried out many attacks in Kenya and Ethiopia . \n mg "}}, {"origin": {"segment": "content_strict", "context": {"start": 276, "end": 277, "input": "tokens", "text": "many attacks in Kenya and Ethiopia . \n mg / se "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Ethiopia", "context": {"start": 276, "end": 277, "input": "tokens", "text": "many attacks in Kenya and Ethiopia . \n mg / se "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 1, "end": 2, "input": "tokens", "text": "\n Somalian terror group , al - "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Somalian", "context": {"start": 1, "end": 2, "input": "tokens", "text": "\n Somalian terror group , al - "}}, {"origin": {"segment": "content_strict", "context": {"start": 33, "end": 34, "input": "tokens", "text": "when he demanded that all Muslims be barred from entering the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Muslims", "context": {"start": 33, "end": 34, "input": "tokens", "text": "when he demanded that all Muslims be barred from entering the "}}, {"origin": {"segment": "content_strict", "context": {"start": 60, "end": 61, "input": "tokens", "text": "Kataib Media Foundation , an Islamist organization . \n The terrorists "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Islamist", "context": {"start": 60, "end": 61, "input": "tokens", "text": "Kataib Media Foundation , an Islamist organization . \n The terrorists "}}, {"origin": {"segment": "content_strict", "context": {"start": 86, "end": 87, "input": "tokens", "text": "the United States to bar Muslims from entering the country as "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Muslims", "context": {"start": 86, "end": 87, "input": "tokens", "text": "the United States to bar Muslims from entering the country as "}}, {"origin": {"segment": "content_strict", "context": {"start": 96, "end": 98, "input": "tokens", "text": "as his supporters cheered . Many American politicians condemned Trump ' s "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Many American", "context": {"start": 96, "end": 98, "input": "tokens", "text": "as his supporters cheered . Many American politicians condemned Trump ' s "}}, {"origin": {"segment": "content_strict", "context": {"start": 154, "end": 155, "input": "tokens", "text": "al - Awlaki saying that Muslims would face a choice between "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Muslims", "context": {"start": 154, "end": 155, "input": "tokens", "text": "al - Awlaki saying that Muslims would face a choice between "}}, {"origin": {"segment": "content_strict", "context": {"start": 162, "end": 163, "input": "tokens", "text": "a choice between leaving for Islamic countries or staying at home "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Islamic", "context": {"start": 162, "end": 163, "input": "tokens", "text": "a choice between leaving for Islamic countries or staying at home "}}, {"origin": {"segment": "content_strict", "context": {"start": 219, "end": 220, "input": "tokens", "text": "well as speeches of the African - American activist Malcolm X "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "African", "context": {"start": 219, "end": 220, "input": "tokens", "text": "well as speeches of the African - American activist Malcolm X "}}, {"origin": {"segment": "content_strict", "context": {"start": 221, "end": 222, "input": "tokens", "text": "speeches of the African - American activist Malcolm X , who "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "American", "context": {"start": 221, "end": 222, "input": "tokens", "text": "speeches of the African - American activist Malcolm X , who "}}, {"origin": {"segment": "content_strict", "context": {"start": 256, "end": 257, "input": "tokens", "text": "s government and impose an Islamic regime following a strict version "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Islamic", "context": {"start": 256, "end": 257, "input": "tokens", "text": "s government and impose an Islamic regime following a strict version "}}]}}}}, "title": {"text": " Africa: Al-Shabab Uses Trump's Anti-Muslim Tirade to Woo Supporters - allAfrica.com ", "simple_tokens": ["africa", ":", "al", "-", "shabab", "uses", "trump", "'", "s", "anti", "-", "muslim", "tirade", "to", "woo", "supporters", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Africa", ":", "Al", "-", "Shabab", "Uses", "Trump", "'", "s", "Anti", "-", "Muslim", "Tirade", "to", "Woo", "Supporters", "-", "allAfrica", ".", "com"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 9, "end": 13, "input": "tokens", "text": "Shabab Uses Trump ' s Anti - Muslim Tirade to Woo Supporters - allAfrica "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Anti - Muslim Tirade", "context": {"start": 9, "end": 13, "input": "tokens", "text": "Shabab Uses Trump ' s Anti - Muslim Tirade to Woo Supporters - allAfrica "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 2, "end": 5, "input": "tokens", "text": "Africa : Al - Shabab Uses Trump ' s Anti "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Al - Shabab", "context": {"start": 2, "end": 5, "input": "tokens", "text": "Africa : Al - Shabab Uses Trump ' s Anti "}}, {"origin": {"segment": "title", "context": {"start": 6, "end": 7, "input": "tokens", "text": ": Al - Shabab Uses Trump ' s Anti - Muslim "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Trump", "context": {"start": 6, "end": 7, "input": "tokens", "text": ": Al - Shabab Uses Trump ' s Anti - Muslim "}}, {"origin": {"segment": "title", "context": {"start": 14, "end": 18, "input": "tokens", "text": "Anti - Muslim Tirade to Woo Supporters - allAfrica . com "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "value": "Woo Supporters - allAfrica", "context": {"start": 14, "end": 18, "input": "tokens", "text": "Anti - Muslim Tirade to Woo Supporters - allAfrica . com "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:12.665853", "@etk_process_time": 0.3935260772705078, "@etk_start_time": "2017-11-15T01:34:12.272327"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Africa: Al-Shabab Uses Trump's Anti-Muslim Tirade to Woo Supporters - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Africa: Al-Shabab Uses Trump's Anti-Muslim Tirade to Woo Supporters\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n

\n \n Somalian terror group, al-Shabab, has used clips of US presidential candidate Donald Trump in its propaganda film. Trump courted controversy in December when he demanded that all Muslims be barred from entering the US.\n \n

\n

\n The al-Shabab video was distributed on Twitter by the al-Kataib Media Foundation, an Islamist organization.\n

\n

\n The terrorists used a clip from Trump's December speech, where he made calls for the United States to bar Muslims from entering the country as his supporters cheered. Many American politicians condemned Trump's statement and said his views could be used as propaganda by militant organizations.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n The al-Shabab seemed to have done exactly that. Trump's clip in the 51-minute-long film was sandwiched between clips of militant leader Anwar al-Awlaki saying that Muslims would face a choice between leaving for Islamic countries or staying at home to fight the West, SITE monitoring reported. Al-Awlaki was killed in a drone strike in Yemen in 2011.\n

\n
\n
\n
\n
\n

\n The video, confirmed to be genuine by experts, has footage of the US police using force against black people as well as speeches of the African-American activist Malcolm X, who was killed in 1965.\n

\n

\n The al-Shabab, an affiliate of the al-Qaida, seeks to overthrow Somalia's government and impose an Islamic regime following a strict version of the Sharia. The organization has carried out many attacks in Kenya and Ethiopia.\n

\n

\n \n mg/se (Reuters, dpa)\n \n

\n
\n
\n
\n \n
\n
\n
\n
\n
\n \n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Deutsche Welle. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B", "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"} -{"url": "http://www.ce_news_article.org/2016/01/03/201601030144.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 411, "end": 412, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 3, "input": "tokens", "text": "\n Mikel Obi posted a fine display on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel Obi"}, {"source": {"segment": "content_relaxed", "context": {"start": 19, "end": 21, "input": "tokens", "text": "Give Hiddink First Win \n Mikel Obi posted a fine display on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel Obi"}], "key": "mikel obi", "value": "Mikel Obi"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 31, "end": 33, "input": "tokens", "text": ". \n Chelsea ' s Obi Mikel , Willian , Zouma and "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obi Mikel"}, {"source": {"segment": "content_relaxed", "context": {"start": 49, "end": 51, "input": "tokens", "text": ". \n Chelsea ' s Obi Mikel , Willian , Zouma and "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obi Mikel"}], "key": "obi mikel", "value": "Obi Mikel"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 50, "end": 52, "input": "tokens", "text": "the match . Photograph : Dylan Martinez / Reuters \n The win "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dylan Martinez"}, {"source": {"segment": "content_relaxed", "context": {"start": 68, "end": 70, "input": "tokens", "text": "the match . Photograph : Dylan Martinez / Reuters \n The win "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dylan Martinez"}], "key": "dylan martinez", "value": "Dylan Martinez"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 58, "end": 60, "input": "tokens", "text": "Reuters \n The win was Guus Hiddink ' s first of his "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Guus Hiddink"}, {"source": {"segment": "content_relaxed", "context": {"start": 76, "end": 78, "input": "tokens", "text": "Reuters \n The win was Guus Hiddink ' s first of his "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Guus Hiddink"}], "key": "guus hiddink", "value": "Guus Hiddink"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 90, "end": 91, "input": "tokens", "text": "the move that led to Oscar ' s opening goal in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar"}, {"source": {"segment": "content_strict", "context": {"start": 236, "end": 237, "input": "tokens", "text": "cut the ball back for Oscar to slide a simple finish "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar"}, {"source": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": "the move that led to Oscar ' s opening goal in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar"}, {"source": {"segment": "content_relaxed", "context": {"start": 254, "end": 255, "input": "tokens", "text": "cut the ball back for Oscar to slide a simple finish "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar"}], "key": "oscar", "value": "Oscar"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 101, "end": 102, "input": "tokens", "text": "the first half . \n Mikel had 96 % pass accuracy "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel"}, {"source": {"segment": "content_relaxed", "context": {"start": 119, "end": 120, "input": "tokens", "text": "the first half . \n Mikel had 96 % pass accuracy "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel"}], "key": "mikel", "value": "Mikel"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 153, "end": 155, "input": "tokens", "text": "from Oscar , Willian and Diego Costa ensured that they got 2016 "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Diego Costa"}, {"source": {"segment": "content_strict", "context": {"start": 221, "end": 223, "input": "tokens", "text": "Fabregas ' s pass sent Diego Costa through down the right channel "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Diego Costa"}, {"source": {"segment": "content_relaxed", "context": {"start": 171, "end": 173, "input": "tokens", "text": "from Oscar , Willian and Diego Costa ensured that they got 2016 "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Diego Costa"}, {"source": {"segment": "content_relaxed", "context": {"start": 239, "end": 241, "input": "tokens", "text": "Fabregas ' s pass sent Diego Costa through down the right channel "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Diego Costa"}], "key": "diego costa", "value": "Diego Costa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 169, "end": 171, "input": "tokens", "text": "start in the first Premier League London derby of the year . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "League London"}, {"source": {"segment": "content_relaxed", "context": {"start": 187, "end": 189, "input": "tokens", "text": "start in the first Premier League London derby of the year . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "League London"}], "key": "league london", "value": "League London"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 177, "end": 179, "input": "tokens", "text": "of the year . \n Eden Hazard was forced off early with "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Eden Hazard"}, {"source": {"segment": "content_relaxed", "context": {"start": 195, "end": 197, "input": "tokens", "text": "of the year . \n Eden Hazard was forced off early with "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Eden Hazard"}], "key": "eden hazard", "value": "Eden Hazard"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 215, "end": 217, "input": "tokens", "text": "mark , however , as Cesc Fabregas ' s pass sent Diego "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cesc Fabregas"}, {"source": {"segment": "content_relaxed", "context": {"start": 233, "end": 235, "input": "tokens", "text": "mark , however , as Cesc Fabregas ' s pass sent Diego "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cesc Fabregas"}], "key": "cesc fabregas", "value": "Cesc Fabregas"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Mikel Shines As Chelsea Beat Palace to "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel Shines"}, {"source": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Mikel Shines As Chelsea Beat Palace to "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel Shines"}], "key": "mikel shines", "value": "Mikel Shines"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 11, "end": 15, "input": "tokens", "text": "Beat Palace to Give Hiddink First Win - allAfrica . com "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "First Win - allAfrica"}], "key": "first win - allafrica", "value": "First Win - allAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "method": "rearrange_description"}], "key": "description", "value": " \n Mikel Obi posted a fine display on Sunday, as Chelsea defeated Crystal Palace 3-0 in a Premier League clash at Selhurst Park. \n Chelsea's Obi Mikel, Willian, Zouma and Ivanovic applaud fans at the end of the match. Photograph: Dylan Martinez/Reuters \n The win was Guus Hiddink's first of his second spell in charge of Chelsea. \n Super Eagles star Mikel was solid in the Chelsea midfield and started the move that led to Oscar's opening goal in the first half. \n Mikel had 96% pass accuracy, won three tackles, had two blocks and one interception and was one of Chelsea's outstanding players. \n The Blues went into the match on a seven-game winless streak on the road, but goals from Oscar, Willian and Diego Costa ensured that they got 2016 off to an encouraging start in the first Premier League London derby of the year. \n Eden Hazard was forced off early with an injury but that did not stop Chelsea from putting up a dominant performance. \n Chelsea took the lead shortly before the half-hour mark, however, as Cesc Fabregas's pass sent Diego Costa through down the right channel and the striker cut the ball back for Oscar to slide a simple finish into an unguarded net. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 381, "end": 382, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Mikel Shines As Chelsea Beat Palace to Give Hiddink First Win - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "display on Sunday , as Chelsea defeated Crystal Palace 3 - "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 28, "end": 29, "input": "tokens", "text": "at Selhurst Park . \n Chelsea ' s Obi Mikel , "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 70, "end": 71, "input": "tokens", "text": "second spell in charge of Chelsea . \n Super Eagles star "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 81, "end": 82, "input": "tokens", "text": "Mikel was solid in the Chelsea midfield and started the move "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 122, "end": 123, "input": "tokens", "text": "interception and was one of Chelsea ' s outstanding players . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 191, "end": 192, "input": "tokens", "text": "but that did not stop Chelsea from putting up a dominant "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 200, "end": 201, "input": "tokens", "text": "a dominant performance . \n Chelsea took the lead shortly before "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 29, "end": 30, "input": "tokens", "text": "display on Sunday , as Chelsea defeated Crystal Palace 3 - "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 46, "end": 47, "input": "tokens", "text": "at Selhurst Park . \n Chelsea ' s Obi Mikel , "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 88, "end": 89, "input": "tokens", "text": "second spell in charge of Chelsea . \n Super Eagles star "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 99, "end": 100, "input": "tokens", "text": "Mikel was solid in the Chelsea midfield and started the move "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 140, "end": 141, "input": "tokens", "text": "interception and was one of Chelsea ' s outstanding players . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 209, "end": 210, "input": "tokens", "text": "but that did not stop Chelsea from putting up a dominant "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 218, "end": 219, "input": "tokens", "text": "a dominant performance . \n Chelsea took the lead shortly before "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}], "key": "chelsea", "value": "Chelsea"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 13, "end": 15, "input": "tokens", "text": "Sunday , as Chelsea defeated Crystal Palace 3 - 0 in a "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Crystal Palace"}, {"source": {"segment": "content_relaxed", "context": {"start": 31, "end": 33, "input": "tokens", "text": "Sunday , as Chelsea defeated Crystal Palace 3 - 0 in a "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Crystal Palace"}], "key": "crystal palace", "value": "Crystal Palace"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 73, "end": 75, "input": "tokens", "text": "charge of Chelsea . \n Super Eagles star Mikel was solid in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Super Eagles"}, {"source": {"segment": "content_relaxed", "context": {"start": 91, "end": 93, "input": "tokens", "text": "charge of Chelsea . \n Super Eagles star Mikel was solid in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Super Eagles"}], "key": "super eagles", "value": "Super Eagles"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 76, "end": 77, "input": "tokens", "text": ". \n Super Eagles star Mikel was solid in the Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel"}, {"source": {"segment": "content_relaxed", "context": {"start": 94, "end": 95, "input": "tokens", "text": ". \n Super Eagles star Mikel was solid in the Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel"}], "key": "mikel", "value": "Mikel"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 130, "end": 131, "input": "tokens", "text": "outstanding players . \n The Blues went into the match on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blues"}, {"source": {"segment": "content_relaxed", "context": {"start": 148, "end": 149, "input": "tokens", "text": "outstanding players . \n The Blues went into the match on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blues"}], "key": "blues", "value": "Blues"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 269, "end": 270, "input": "tokens", "text": ". \n Copyright \n 2016 Vanguard . All rights reserved . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vanguard"}], "key": "vanguard", "value": "Vanguard"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 275, "end": 276, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 277, "end": 280, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 34, "end": 35, "input": "tokens", "text": "' s Obi Mikel , Willian , Zouma and Ivanovic applaud "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Willian"}, {"source": {"segment": "content_relaxed", "context": {"start": 52, "end": 53, "input": "tokens", "text": "' s Obi Mikel , Willian , Zouma and Ivanovic applaud "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Willian"}], "key": "willian", "value": "Willian"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 36, "end": 37, "input": "tokens", "text": "Obi Mikel , Willian , Zouma and Ivanovic applaud fans at "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zouma"}, {"source": {"segment": "content_relaxed", "context": {"start": 54, "end": 55, "input": "tokens", "text": "Obi Mikel , Willian , Zouma and Ivanovic applaud fans at "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zouma"}], "key": "zouma", "value": "Zouma"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 38, "end": 39, "input": "tokens", "text": ", Willian , Zouma and Ivanovic applaud fans at the end "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivanovic"}, {"source": {"segment": "content_relaxed", "context": {"start": 56, "end": 57, "input": "tokens", "text": ", Willian , Zouma and Ivanovic applaud fans at the end "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivanovic"}], "key": "ivanovic", "value": "Ivanovic"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 149, "end": 152, "input": "tokens", "text": "road , but goals from Oscar , Willian and Diego Costa ensured that "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar , Willian"}, {"source": {"segment": "content_relaxed", "context": {"start": 167, "end": 170, "input": "tokens", "text": "road , but goals from Oscar , Willian and Diego Costa ensured that "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar , Willian"}], "key": "oscar , willian", "value": "Oscar , Willian"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 3 January 2016 \n Nigeria : Mikel Shines As Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Mikel Shines As Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}]}, "content_extraction": {"content_relaxed": {"text": " \n 3 January 2016 \n Nigeria: Mikel Shines As Chelsea Beat Palace to Give Hiddink First Win \n Mikel Obi posted a fine display on Sunday, as Chelsea defeated Crystal Palace 3-0 in a Premier League clash at Selhurst Park. \n Chelsea's Obi Mikel, Willian, Zouma and Ivanovic applaud fans at the end of the match. Photograph: Dylan Martinez/Reuters \n The win was Guus Hiddink's first of his second spell in charge of Chelsea. \n Super Eagles star Mikel was solid in the Chelsea midfield and started the move that led to Oscar's opening goal in the first half. \n Mikel had 96% pass accuracy, won three tackles, had two blocks and one interception and was one of Chelsea's outstanding players. \n The Blues went into the match on a seven-game winless streak on the road, but goals from Oscar, Willian and Diego Costa ensured that they got 2016 off to an encouraging start in the first Premier League London derby of the year. \n Eden Hazard was forced off early with an injury but that did not stop Chelsea from putting up a dominant performance. \n Chelsea took the lead shortly before the half-hour mark, however, as Cesc Fabregas's pass sent Diego Costa through down the right channel and the striker cut the ball back for Oscar to slide a simple finish into an unguarded net. \n Copyright \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "3", "january", "2016", "\n", "nigeria", ":", "mikel", "shines", "as", "chelsea", "beat", "palace", "to", "give", "hiddink", "first", "win", "\n", "mikel", "obi", "posted", "a", "fine", "display", "on", "sunday", ",", "as", "chelsea", "defeated", "crystal", "palace", "3", "-", "0", "in", "a", "premier", "league", "clash", "at", "selhurst", "park", ".", "\n", "chelsea", "'", "s", "obi", "mikel", ",", "willian", ",", "zouma", "and", "ivanovic", "applaud", "fans", "at", "the", "end", "of", "the", "match", ".", "photograph", ":", "dylan", "martinez", "/", "reuters", "\n", "the", "win", "was", "guus", "hiddink", "'", "s", "first", "of", "his", "second", "spell", "in", "charge", "of", "chelsea", ".", "\n", "super", "eagles", "star", "mikel", "was", "solid", "in", "the", "chelsea", "midfield", "and", "started", "the", "move", "that", "led", "to", "oscar", "'", "s", "opening", "goal", "in", "the", "first", "half", ".", "\n", "mikel", "had", "96", "%", "pass", "accuracy", ",", "won", "three", "tackles", ",", "had", "two", "blocks", "and", "one", "interception", "and", "was", "one", "of", "chelsea", "'", "s", "outstanding", "players", ".", "\n", "the", "blues", "went", "into", "the", "match", "on", "a", "seven", "-", "game", "winless", "streak", "on", "the", "road", ",", "but", "goals", "from", "oscar", ",", "willian", "and", "diego", "costa", "ensured", "that", "they", "got", "2016", "off", "to", "an", "encouraging", "start", "in", "the", "first", "premier", "league", "london", "derby", "of", "the", "year", ".", "\n", "eden", "hazard", "was", "forced", "off", "early", "with", "an", "injury", "but", "that", "did", "not", "stop", "chelsea", "from", "putting", "up", "a", "dominant", "performance", ".", "\n", "chelsea", "took", "the", "lead", "shortly", "before", "the", "half", "-", "hour", "mark", ",", "however", ",", "as", "cesc", "fabregas", "'", "s", "pass", "sent", "diego", "costa", "through", "down", "the", "right", "channel", "and", "the", "striker", "cut", "the", "ball", "back", "for", "oscar", "to", "slide", "a", "simple", "finish", "into", "an", "unguarded", "net", ".", "\n", "copyright", "\n", "2016", "vanguard", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "3", "January", "2016", "\n", "Nigeria", ":", "Mikel", "Shines", "As", "Chelsea", "Beat", "Palace", "to", "Give", "Hiddink", "First", "Win", "\n", "Mikel", "Obi", "posted", "a", "fine", "display", "on", "Sunday", ",", "as", "Chelsea", "defeated", "Crystal", "Palace", "3", "-", "0", "in", "a", "Premier", "League", "clash", "at", "Selhurst", "Park", ".", "\n", "Chelsea", "'", "s", "Obi", "Mikel", ",", "Willian", ",", "Zouma", "and", "Ivanovic", "applaud", "fans", "at", "the", "end", "of", "the", "match", ".", "Photograph", ":", "Dylan", "Martinez", "/", "Reuters", "\n", "The", "win", "was", "Guus", "Hiddink", "'", "s", "first", "of", "his", "second", "spell", "in", "charge", "of", "Chelsea", ".", "\n", "Super", "Eagles", "star", "Mikel", "was", "solid", "in", "the", "Chelsea", "midfield", "and", "started", "the", "move", "that", "led", "to", "Oscar", "'", "s", "opening", "goal", "in", "the", "first", "half", ".", "\n", "Mikel", "had", "96", "%", "pass", "accuracy", ",", "won", "three", "tackles", ",", "had", "two", "blocks", "and", "one", "interception", "and", "was", "one", "of", "Chelsea", "'", "s", "outstanding", "players", ".", "\n", "The", "Blues", "went", "into", "the", "match", "on", "a", "seven", "-", "game", "winless", "streak", "on", "the", "road", ",", "but", "goals", "from", "Oscar", ",", "Willian", "and", "Diego", "Costa", "ensured", "that", "they", "got", "2016", "off", "to", "an", "encouraging", "start", "in", "the", "first", "Premier", "League", "London", "derby", "of", "the", "year", ".", "\n", "Eden", "Hazard", "was", "forced", "off", "early", "with", "an", "injury", "but", "that", "did", "not", "stop", "Chelsea", "from", "putting", "up", "a", "dominant", "performance", ".", "\n", "Chelsea", "took", "the", "lead", "shortly", "before", "the", "half", "-", "hour", "mark", ",", "however", ",", "as", "Cesc", "Fabregas", "'", "s", "pass", "sent", "Diego", "Costa", "through", "down", "the", "right", "channel", "and", "the", "striker", "cut", "the", "ball", "back", "for", "Oscar", "to", "slide", "a", "simple", "finish", "into", "an", "unguarded", "net", ".", "\n", "Copyright", "\n", "2016", "Vanguard", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 3 January 2016 \n Nigeria : Mikel Shines As Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 3 January 2016 \n Nigeria : Mikel Shines As Chelsea "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 52, "end": 53, "input": "tokens", "text": "' s Obi Mikel , Willian , Zouma and Ivanovic applaud "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Willian", "context": {"start": 52, "end": 53, "input": "tokens", "text": "' s Obi Mikel , Willian , Zouma and Ivanovic applaud "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 54, "end": 55, "input": "tokens", "text": "Obi Mikel , Willian , Zouma and Ivanovic applaud fans at "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Zouma", "context": {"start": 54, "end": 55, "input": "tokens", "text": "Obi Mikel , Willian , Zouma and Ivanovic applaud fans at "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 56, "end": 57, "input": "tokens", "text": ", Willian , Zouma and Ivanovic applaud fans at the end "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Ivanovic", "context": {"start": 56, "end": 57, "input": "tokens", "text": ", Willian , Zouma and Ivanovic applaud fans at the end "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 167, "end": 170, "input": "tokens", "text": "road , but goals from Oscar , Willian and Diego Costa ensured that "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Oscar , Willian", "context": {"start": 167, "end": 170, "input": "tokens", "text": "road , but goals from Oscar , Willian and Diego Costa ensured that "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 29, "end": 30, "input": "tokens", "text": "display on Sunday , as Chelsea defeated Crystal Palace 3 - "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 29, "end": 30, "input": "tokens", "text": "display on Sunday , as Chelsea defeated Crystal Palace 3 - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 31, "end": 33, "input": "tokens", "text": "Sunday , as Chelsea defeated Crystal Palace 3 - 0 in a "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Crystal Palace", "context": {"start": 31, "end": 33, "input": "tokens", "text": "Sunday , as Chelsea defeated Crystal Palace 3 - 0 in a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 46, "end": 47, "input": "tokens", "text": "at Selhurst Park . \n Chelsea ' s Obi Mikel , "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 46, "end": 47, "input": "tokens", "text": "at Selhurst Park . \n Chelsea ' s Obi Mikel , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 88, "end": 89, "input": "tokens", "text": "second spell in charge of Chelsea . \n Super Eagles star "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 88, "end": 89, "input": "tokens", "text": "second spell in charge of Chelsea . \n Super Eagles star "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 91, "end": 93, "input": "tokens", "text": "charge of Chelsea . \n Super Eagles star Mikel was solid in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Super Eagles", "context": {"start": 91, "end": 93, "input": "tokens", "text": "charge of Chelsea . \n Super Eagles star Mikel was solid in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 94, "end": 95, "input": "tokens", "text": ". \n Super Eagles star Mikel was solid in the Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Mikel", "context": {"start": 94, "end": 95, "input": "tokens", "text": ". \n Super Eagles star Mikel was solid in the Chelsea "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 99, "end": 100, "input": "tokens", "text": "Mikel was solid in the Chelsea midfield and started the move "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 99, "end": 100, "input": "tokens", "text": "Mikel was solid in the Chelsea midfield and started the move "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 140, "end": 141, "input": "tokens", "text": "interception and was one of Chelsea ' s outstanding players . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 140, "end": 141, "input": "tokens", "text": "interception and was one of Chelsea ' s outstanding players . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 148, "end": 149, "input": "tokens", "text": "outstanding players . \n The Blues went into the match on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Blues", "context": {"start": 148, "end": 149, "input": "tokens", "text": "outstanding players . \n The Blues went into the match on "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 209, "end": 210, "input": "tokens", "text": "but that did not stop Chelsea from putting up a dominant "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 209, "end": 210, "input": "tokens", "text": "but that did not stop Chelsea from putting up a dominant "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 218, "end": 219, "input": "tokens", "text": "a dominant performance . \n Chelsea took the lead shortly before "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 218, "end": 219, "input": "tokens", "text": "a dominant performance . \n Chelsea took the lead shortly before "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 269, "end": 270, "input": "tokens", "text": ". \n Copyright \n 2016 Vanguard . All rights reserved . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Vanguard", "context": {"start": 269, "end": 270, "input": "tokens", "text": ". \n Copyright \n 2016 Vanguard . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 275, "end": 276, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Distributed", "context": {"start": 275, "end": 276, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 277, "end": 280, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "AllAfrica Global Media", "context": {"start": 277, "end": 280, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 411, "end": 412, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "AllAfrica", "context": {"start": 411, "end": 412, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Mikel Shines As Chelsea Beat Palace to "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Mikel Shines", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Mikel Shines As Chelsea Beat Palace to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 19, "end": 21, "input": "tokens", "text": "Give Hiddink First Win \n Mikel Obi posted a fine display on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Mikel Obi", "context": {"start": 19, "end": 21, "input": "tokens", "text": "Give Hiddink First Win \n Mikel Obi posted a fine display on "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 49, "end": 51, "input": "tokens", "text": ". \n Chelsea ' s Obi Mikel , Willian , Zouma and "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Obi Mikel", "context": {"start": 49, "end": 51, "input": "tokens", "text": ". \n Chelsea ' s Obi Mikel , Willian , Zouma and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 68, "end": 70, "input": "tokens", "text": "the match . Photograph : Dylan Martinez / Reuters \n The win "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Dylan Martinez", "context": {"start": 68, "end": 70, "input": "tokens", "text": "the match . Photograph : Dylan Martinez / Reuters \n The win "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 76, "end": 78, "input": "tokens", "text": "Reuters \n The win was Guus Hiddink ' s first of his "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Guus Hiddink", "context": {"start": 76, "end": 78, "input": "tokens", "text": "Reuters \n The win was Guus Hiddink ' s first of his "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": "the move that led to Oscar ' s opening goal in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Oscar", "context": {"start": 108, "end": 109, "input": "tokens", "text": "the move that led to Oscar ' s opening goal in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 119, "end": 120, "input": "tokens", "text": "the first half . \n Mikel had 96 % pass accuracy "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Mikel", "context": {"start": 119, "end": 120, "input": "tokens", "text": "the first half . \n Mikel had 96 % pass accuracy "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 171, "end": 173, "input": "tokens", "text": "from Oscar , Willian and Diego Costa ensured that they got 2016 "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Diego Costa", "context": {"start": 171, "end": 173, "input": "tokens", "text": "from Oscar , Willian and Diego Costa ensured that they got 2016 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 187, "end": 189, "input": "tokens", "text": "start in the first Premier League London derby of the year . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "League London", "context": {"start": 187, "end": 189, "input": "tokens", "text": "start in the first Premier League London derby of the year . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 195, "end": 197, "input": "tokens", "text": "of the year . \n Eden Hazard was forced off early with "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Eden Hazard", "context": {"start": 195, "end": 197, "input": "tokens", "text": "of the year . \n Eden Hazard was forced off early with "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 233, "end": 235, "input": "tokens", "text": "mark , however , as Cesc Fabregas ' s pass sent Diego "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Cesc Fabregas", "context": {"start": 233, "end": 235, "input": "tokens", "text": "mark , however , as Cesc Fabregas ' s pass sent Diego "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 239, "end": 241, "input": "tokens", "text": "Fabregas ' s pass sent Diego Costa through down the right channel "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Diego Costa", "context": {"start": 239, "end": 241, "input": "tokens", "text": "Fabregas ' s pass sent Diego Costa through down the right channel "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 254, "end": 255, "input": "tokens", "text": "cut the ball back for Oscar to slide a simple finish "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Oscar", "context": {"start": 254, "end": 255, "input": "tokens", "text": "cut the ball back for Oscar to slide a simple finish "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 381, "end": 382, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "AllAfrica", "context": {"start": 381, "end": 382, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/03/201601030144.html"}, "content_strict": {"text": " \n Mikel Obi posted a fine display on Sunday, as Chelsea defeated Crystal Palace 3-0 in a Premier League clash at Selhurst Park. \n Chelsea's Obi Mikel, Willian, Zouma and Ivanovic applaud fans at the end of the match. Photograph: Dylan Martinez/Reuters \n The win was Guus Hiddink's first of his second spell in charge of Chelsea. \n Super Eagles star Mikel was solid in the Chelsea midfield and started the move that led to Oscar's opening goal in the first half. \n Mikel had 96% pass accuracy, won three tackles, had two blocks and one interception and was one of Chelsea's outstanding players. \n The Blues went into the match on a seven-game winless streak on the road, but goals from Oscar, Willian and Diego Costa ensured that they got 2016 off to an encouraging start in the first Premier League London derby of the year. \n Eden Hazard was forced off early with an injury but that did not stop Chelsea from putting up a dominant performance. \n Chelsea took the lead shortly before the half-hour mark, however, as Cesc Fabregas's pass sent Diego Costa through down the right channel and the striker cut the ball back for Oscar to slide a simple finish into an unguarded net. \n ", "simple_tokens": ["\n", "mikel", "obi", "posted", "a", "fine", "display", "on", "sunday", ",", "as", "chelsea", "defeated", "crystal", "palace", "3", "-", "0", "in", "a", "premier", "league", "clash", "at", "selhurst", "park", ".", "\n", "chelsea", "'", "s", "obi", "mikel", ",", "willian", ",", "zouma", "and", "ivanovic", "applaud", "fans", "at", "the", "end", "of", "the", "match", ".", "photograph", ":", "dylan", "martinez", "/", "reuters", "\n", "the", "win", "was", "guus", "hiddink", "'", "s", "first", "of", "his", "second", "spell", "in", "charge", "of", "chelsea", ".", "\n", "super", "eagles", "star", "mikel", "was", "solid", "in", "the", "chelsea", "midfield", "and", "started", "the", "move", "that", "led", "to", "oscar", "'", "s", "opening", "goal", "in", "the", "first", "half", ".", "\n", "mikel", "had", "96", "%", "pass", "accuracy", ",", "won", "three", "tackles", ",", "had", "two", "blocks", "and", "one", "interception", "and", "was", "one", "of", "chelsea", "'", "s", "outstanding", "players", ".", "\n", "the", "blues", "went", "into", "the", "match", "on", "a", "seven", "-", "game", "winless", "streak", "on", "the", "road", ",", "but", "goals", "from", "oscar", ",", "willian", "and", "diego", "costa", "ensured", "that", "they", "got", "2016", "off", "to", "an", "encouraging", "start", "in", "the", "first", "premier", "league", "london", "derby", "of", "the", "year", ".", "\n", "eden", "hazard", "was", "forced", "off", "early", "with", "an", "injury", "but", "that", "did", "not", "stop", "chelsea", "from", "putting", "up", "a", "dominant", "performance", ".", "\n", "chelsea", "took", "the", "lead", "shortly", "before", "the", "half", "-", "hour", "mark", ",", "however", ",", "as", "cesc", "fabregas", "'", "s", "pass", "sent", "diego", "costa", "through", "down", "the", "right", "channel", "and", "the", "striker", "cut", "the", "ball", "back", "for", "oscar", "to", "slide", "a", "simple", "finish", "into", "an", "unguarded", "net", ".", "\n"], "simple_tokens_original_case": ["\n", "Mikel", "Obi", "posted", "a", "fine", "display", "on", "Sunday", ",", "as", "Chelsea", "defeated", "Crystal", "Palace", "3", "-", "0", "in", "a", "Premier", "League", "clash", "at", "Selhurst", "Park", ".", "\n", "Chelsea", "'", "s", "Obi", "Mikel", ",", "Willian", ",", "Zouma", "and", "Ivanovic", "applaud", "fans", "at", "the", "end", "of", "the", "match", ".", "Photograph", ":", "Dylan", "Martinez", "/", "Reuters", "\n", "The", "win", "was", "Guus", "Hiddink", "'", "s", "first", "of", "his", "second", "spell", "in", "charge", "of", "Chelsea", ".", "\n", "Super", "Eagles", "star", "Mikel", "was", "solid", "in", "the", "Chelsea", "midfield", "and", "started", "the", "move", "that", "led", "to", "Oscar", "'", "s", "opening", "goal", "in", "the", "first", "half", ".", "\n", "Mikel", "had", "96", "%", "pass", "accuracy", ",", "won", "three", "tackles", ",", "had", "two", "blocks", "and", "one", "interception", "and", "was", "one", "of", "Chelsea", "'", "s", "outstanding", "players", ".", "\n", "The", "Blues", "went", "into", "the", "match", "on", "a", "seven", "-", "game", "winless", "streak", "on", "the", "road", ",", "but", "goals", "from", "Oscar", ",", "Willian", "and", "Diego", "Costa", "ensured", "that", "they", "got", "2016", "off", "to", "an", "encouraging", "start", "in", "the", "first", "Premier", "League", "London", "derby", "of", "the", "year", ".", "\n", "Eden", "Hazard", "was", "forced", "off", "early", "with", "an", "injury", "but", "that", "did", "not", "stop", "Chelsea", "from", "putting", "up", "a", "dominant", "performance", ".", "\n", "Chelsea", "took", "the", "lead", "shortly", "before", "the", "half", "-", "hour", "mark", ",", "however", ",", "as", "Cesc", "Fabregas", "'", "s", "pass", "sent", "Diego", "Costa", "through", "down", "the", "right", "channel", "and", "the", "striker", "cut", "the", "ball", "back", "for", "Oscar", "to", "slide", "a", "simple", "finish", "into", "an", "unguarded", "net", ".", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "display on Sunday , as Chelsea defeated Crystal Palace 3 - "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 11, "end": 12, "input": "tokens", "text": "display on Sunday , as Chelsea defeated Crystal Palace 3 - "}}, {"origin": {"segment": "content_strict", "context": {"start": 13, "end": 15, "input": "tokens", "text": "Sunday , as Chelsea defeated Crystal Palace 3 - 0 in a "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Crystal Palace", "context": {"start": 13, "end": 15, "input": "tokens", "text": "Sunday , as Chelsea defeated Crystal Palace 3 - 0 in a "}}, {"origin": {"segment": "content_strict", "context": {"start": 28, "end": 29, "input": "tokens", "text": "at Selhurst Park . \n Chelsea ' s Obi Mikel , "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 28, "end": 29, "input": "tokens", "text": "at Selhurst Park . \n Chelsea ' s Obi Mikel , "}}, {"origin": {"segment": "content_strict", "context": {"start": 70, "end": 71, "input": "tokens", "text": "second spell in charge of Chelsea . \n Super Eagles star "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 70, "end": 71, "input": "tokens", "text": "second spell in charge of Chelsea . \n Super Eagles star "}}, {"origin": {"segment": "content_strict", "context": {"start": 73, "end": 75, "input": "tokens", "text": "charge of Chelsea . \n Super Eagles star Mikel was solid in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Super Eagles", "context": {"start": 73, "end": 75, "input": "tokens", "text": "charge of Chelsea . \n Super Eagles star Mikel was solid in "}}, {"origin": {"segment": "content_strict", "context": {"start": 76, "end": 77, "input": "tokens", "text": ". \n Super Eagles star Mikel was solid in the Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Mikel", "context": {"start": 76, "end": 77, "input": "tokens", "text": ". \n Super Eagles star Mikel was solid in the Chelsea "}}, {"origin": {"segment": "content_strict", "context": {"start": 81, "end": 82, "input": "tokens", "text": "Mikel was solid in the Chelsea midfield and started the move "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 81, "end": 82, "input": "tokens", "text": "Mikel was solid in the Chelsea midfield and started the move "}}, {"origin": {"segment": "content_strict", "context": {"start": 122, "end": 123, "input": "tokens", "text": "interception and was one of Chelsea ' s outstanding players . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 122, "end": 123, "input": "tokens", "text": "interception and was one of Chelsea ' s outstanding players . "}}, {"origin": {"segment": "content_strict", "context": {"start": 130, "end": 131, "input": "tokens", "text": "outstanding players . \n The Blues went into the match on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Blues", "context": {"start": 130, "end": 131, "input": "tokens", "text": "outstanding players . \n The Blues went into the match on "}}, {"origin": {"segment": "content_strict", "context": {"start": 191, "end": 192, "input": "tokens", "text": "but that did not stop Chelsea from putting up a dominant "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 191, "end": 192, "input": "tokens", "text": "but that did not stop Chelsea from putting up a dominant "}}, {"origin": {"segment": "content_strict", "context": {"start": 200, "end": 201, "input": "tokens", "text": "a dominant performance . \n Chelsea took the lead shortly before "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Chelsea", "context": {"start": 200, "end": 201, "input": "tokens", "text": "a dominant performance . \n Chelsea took the lead shortly before "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 34, "end": 35, "input": "tokens", "text": "' s Obi Mikel , Willian , Zouma and Ivanovic applaud "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Willian", "context": {"start": 34, "end": 35, "input": "tokens", "text": "' s Obi Mikel , Willian , Zouma and Ivanovic applaud "}}, {"origin": {"segment": "content_strict", "context": {"start": 36, "end": 37, "input": "tokens", "text": "Obi Mikel , Willian , Zouma and Ivanovic applaud fans at "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Zouma", "context": {"start": 36, "end": 37, "input": "tokens", "text": "Obi Mikel , Willian , Zouma and Ivanovic applaud fans at "}}, {"origin": {"segment": "content_strict", "context": {"start": 38, "end": 39, "input": "tokens", "text": ", Willian , Zouma and Ivanovic applaud fans at the end "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Ivanovic", "context": {"start": 38, "end": 39, "input": "tokens", "text": ", Willian , Zouma and Ivanovic applaud fans at the end "}}, {"origin": {"segment": "content_strict", "context": {"start": 149, "end": 152, "input": "tokens", "text": "road , but goals from Oscar , Willian and Diego Costa ensured that "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Oscar , Willian", "context": {"start": 149, "end": 152, "input": "tokens", "text": "road , but goals from Oscar , Willian and Diego Costa ensured that "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 1, "end": 3, "input": "tokens", "text": "\n Mikel Obi posted a fine display on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Mikel Obi", "context": {"start": 1, "end": 3, "input": "tokens", "text": "\n Mikel Obi posted a fine display on "}}, {"origin": {"segment": "content_strict", "context": {"start": 31, "end": 33, "input": "tokens", "text": ". \n Chelsea ' s Obi Mikel , Willian , Zouma and "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Obi Mikel", "context": {"start": 31, "end": 33, "input": "tokens", "text": ". \n Chelsea ' s Obi Mikel , Willian , Zouma and "}}, {"origin": {"segment": "content_strict", "context": {"start": 50, "end": 52, "input": "tokens", "text": "the match . Photograph : Dylan Martinez / Reuters \n The win "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Dylan Martinez", "context": {"start": 50, "end": 52, "input": "tokens", "text": "the match . Photograph : Dylan Martinez / Reuters \n The win "}}, {"origin": {"segment": "content_strict", "context": {"start": 58, "end": 60, "input": "tokens", "text": "Reuters \n The win was Guus Hiddink ' s first of his "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Guus Hiddink", "context": {"start": 58, "end": 60, "input": "tokens", "text": "Reuters \n The win was Guus Hiddink ' s first of his "}}, {"origin": {"segment": "content_strict", "context": {"start": 90, "end": 91, "input": "tokens", "text": "the move that led to Oscar ' s opening goal in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Oscar", "context": {"start": 90, "end": 91, "input": "tokens", "text": "the move that led to Oscar ' s opening goal in "}}, {"origin": {"segment": "content_strict", "context": {"start": 101, "end": 102, "input": "tokens", "text": "the first half . \n Mikel had 96 % pass accuracy "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Mikel", "context": {"start": 101, "end": 102, "input": "tokens", "text": "the first half . \n Mikel had 96 % pass accuracy "}}, {"origin": {"segment": "content_strict", "context": {"start": 153, "end": 155, "input": "tokens", "text": "from Oscar , Willian and Diego Costa ensured that they got 2016 "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Diego Costa", "context": {"start": 153, "end": 155, "input": "tokens", "text": "from Oscar , Willian and Diego Costa ensured that they got 2016 "}}, {"origin": {"segment": "content_strict", "context": {"start": 169, "end": 171, "input": "tokens", "text": "start in the first Premier League London derby of the year . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "League London", "context": {"start": 169, "end": 171, "input": "tokens", "text": "start in the first Premier League London derby of the year . "}}, {"origin": {"segment": "content_strict", "context": {"start": 177, "end": 179, "input": "tokens", "text": "of the year . \n Eden Hazard was forced off early with "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Eden Hazard", "context": {"start": 177, "end": 179, "input": "tokens", "text": "of the year . \n Eden Hazard was forced off early with "}}, {"origin": {"segment": "content_strict", "context": {"start": 215, "end": 217, "input": "tokens", "text": "mark , however , as Cesc Fabregas ' s pass sent Diego "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Cesc Fabregas", "context": {"start": 215, "end": 217, "input": "tokens", "text": "mark , however , as Cesc Fabregas ' s pass sent Diego "}}, {"origin": {"segment": "content_strict", "context": {"start": 221, "end": 223, "input": "tokens", "text": "Fabregas ' s pass sent Diego Costa through down the right channel "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Diego Costa", "context": {"start": 221, "end": 223, "input": "tokens", "text": "Fabregas ' s pass sent Diego Costa through down the right channel "}}, {"origin": {"segment": "content_strict", "context": {"start": 236, "end": 237, "input": "tokens", "text": "cut the ball back for Oscar to slide a simple finish "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Oscar", "context": {"start": 236, "end": 237, "input": "tokens", "text": "cut the ball back for Oscar to slide a simple finish "}}]}}}}, "title": {"text": " Nigeria: Mikel Shines As Chelsea Beat Palace to Give Hiddink First Win - allAfrica.com ", "simple_tokens": ["nigeria", ":", "mikel", "shines", "as", "chelsea", "beat", "palace", "to", "give", "hiddink", "first", "win", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Mikel", "Shines", "As", "Chelsea", "Beat", "Palace", "to", "Give", "Hiddink", "First", "Win", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Mikel Shines As Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Mikel Shines As Chelsea "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Mikel Shines As Chelsea Beat Palace to "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "Mikel Shines", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Mikel Shines As Chelsea Beat Palace to "}}, {"origin": {"segment": "title", "context": {"start": 11, "end": 15, "input": "tokens", "text": "Beat Palace to Give Hiddink First Win - allAfrica . com "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "value": "First Win - allAfrica", "context": {"start": 11, "end": 15, "input": "tokens", "text": "Beat Palace to Give Hiddink First Win - allAfrica . com "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:13.033366", "@etk_process_time": 0.3656148910522461, "@etk_start_time": "2017-11-15T01:34:12.667751"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Mikel Shines As Chelsea Beat Palace to Give Hiddink First Win - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 3 January 2016\n
\n \n \n

\n Nigeria: Mikel Shines As Chelsea Beat Palace to Give Hiddink First Win\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n

\n Mikel Obi posted a fine display on Sunday, as Chelsea defeated Crystal Palace 3-0 in a Premier League clash at Selhurst Park.\n

\n

\n Chelsea's Obi Mikel, Willian, Zouma and Ivanovic applaud fans at the end of the match. Photograph: Dylan Martinez/Reuters\n

\n

\n The win was Guus Hiddink's first of his second spell in charge of Chelsea.\n

\n

\n Super Eagles star Mikel was solid in the Chelsea midfield and started the move that led to Oscar's opening goal in the first half.\n

\n
\n
\n
\n
\n

\n Mikel had 96% pass accuracy, won three tackles, had two blocks and one interception and was one of Chelsea's outstanding players.\n

\n

\n The Blues went into the match on a seven-game winless streak on the road, but goals from Oscar, Willian and Diego Costa ensured that they got 2016 off to an encouraging start in the first Premier League London derby of the year.\n

\n

\n Eden Hazard was forced off early with an injury but that did not stop Chelsea from putting up a dominant performance.\n

\n

\n Chelsea took the lead shortly before the half-hour mark, however, as Cesc Fabregas's pass sent Diego Costa through down the right channel and the striker cut the ball back for Oscar to slide a simple finish into an unguarded net.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1", "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"} -{"url": "http://www.ce_news_article.org/2016/01/03/201601030145.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1102, "end": 1103, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Madelaine Meier \n The year 2015 will "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Madelaine Meier"}, {"source": {"segment": "content_relaxed", "context": {"start": 20, "end": 22, "input": "tokens", "text": "to Democracy ? \n By Madelaine Meier \n The year 2015 will "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Madelaine Meier"}], "key": "madelaine meier", "value": "Madelaine Meier"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 86, "end": 88, "input": "tokens", "text": "In this case it was Goodluck Jonathan handing over power to Muhammadu "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 104, "end": 106, "input": "tokens", "text": "In this case it was Goodluck Jonathan handing over power to Muhammadu "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}], "key": "goodluck jonathan", "value": "Goodluck Jonathan"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 101, "end": 103, "input": "tokens", "text": "Six months later it was Burkina Faso ' s turn to elect "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}, {"source": {"segment": "content_relaxed", "context": {"start": 119, "end": 121, "input": "tokens", "text": "Six months later it was Burkina Faso ' s turn to elect "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}], "key": "burkina faso", "value": "Burkina Faso"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 140, "end": 142, "input": "tokens", "text": "the past three decades under Blaise Compaore ' s rule when the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blaise Compaore"}, {"source": {"segment": "content_relaxed", "context": {"start": 158, "end": 160, "input": "tokens", "text": "the past three decades under Blaise Compaore ' s rule when the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blaise Compaore"}], "key": "blaise compaore", "value": "Blaise Compaore"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 160, "end": 162, "input": "tokens", "text": "Burundi violence erupted over President Pierre Nkuruziza ' s third term bid "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pierre Nkuruziza"}, {"source": {"segment": "content_relaxed", "context": {"start": 178, "end": 180, "input": "tokens", "text": "Burundi violence erupted over President Pierre Nkuruziza ' s third term bid "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pierre Nkuruziza"}], "key": "pierre nkuruziza", "value": "Pierre Nkuruziza"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 234, "end": 235, "input": "tokens", "text": "opposition and rights activists . Nkuruziza was again elected in July "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nkuruziza"}, {"source": {"segment": "content_relaxed", "context": {"start": 252, "end": 253, "input": "tokens", "text": "opposition and rights activists . Nkuruziza was again elected in July "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nkuruziza"}], "key": "nkuruziza", "value": "Nkuruziza"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 308, "end": 310, "input": "tokens", "text": "African politics , \" said Jakkie Cilliers , executive director of the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jakkie Cilliers"}, {"source": {"segment": "content_relaxed", "context": {"start": 326, "end": 328, "input": "tokens", "text": "African politics , \" said Jakkie Cilliers , executive director of the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jakkie Cilliers"}], "key": "jakkie cilliers", "value": "Jakkie Cilliers"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 403, "end": 405, "input": "tokens", "text": "The most thrilling election according Ulf Engel , a professor of African "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ulf Engel"}, {"source": {"segment": "content_relaxed", "context": {"start": 421, "end": 423, "input": "tokens", "text": "The most thrilling election according Ulf Engel , a professor of African "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ulf Engel"}], "key": "ulf engel", "value": "Ulf Engel"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 428, "end": 430, "input": "tokens", "text": ". Unlike Zimbabwe ' s Robert Mugabe and Uganda ' s Yoweri "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Robert Mugabe"}, {"source": {"segment": "content_relaxed", "context": {"start": 446, "end": 448, "input": "tokens", "text": ". Unlike Zimbabwe ' s Robert Mugabe and Uganda ' s Yoweri "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Robert Mugabe"}], "key": "robert mugabe", "value": "Robert Mugabe"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 434, "end": 436, "input": "tokens", "text": "Mugabe and Uganda ' s Yoweri Museveni who are still clinging on "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yoweri Museveni"}, {"source": {"segment": "content_relaxed", "context": {"start": 452, "end": 454, "input": "tokens", "text": "Mugabe and Uganda ' s Yoweri Museveni who are still clinging on "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yoweri Museveni"}], "key": "yoweri museveni", "value": "Yoweri Museveni"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 445, "end": 447, "input": "tokens", "text": "on to power , President Jakaya Kikwete did not run for presidency "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jakaya Kikwete"}, {"source": {"segment": "content_relaxed", "context": {"start": 463, "end": 465, "input": "tokens", "text": "on to power , President Jakaya Kikwete did not run for presidency "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jakaya Kikwete"}], "key": "jakaya kikwete", "value": "Jakaya Kikwete"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 482, "end": 485, "input": "tokens", "text": "neck race between the ruling Chama Cha Mapinduzi ( CCM ) party and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chama Cha Mapinduzi"}, {"source": {"segment": "content_relaxed", "context": {"start": 500, "end": 503, "input": "tokens", "text": "neck race between the ruling Chama Cha Mapinduzi ( CCM ) party and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chama Cha Mapinduzi"}], "key": "chama cha mapinduzi", "value": "Chama Cha Mapinduzi"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 521, "end": 522, "input": "tokens", "text": "through smoothly , \" said Engel . Nevertheless John Magufuli - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Engel"}, {"source": {"segment": "content_relaxed", "context": {"start": 539, "end": 540, "input": "tokens", "text": "through smoothly , \" said Engel . Nevertheless John Magufuli - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Engel"}], "key": "engel", "value": "Engel"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 524, "end": 528, "input": "tokens", "text": "\" said Engel . Nevertheless John Magufuli - the ruling party ' s candidate "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Magufuli - the"}, {"source": {"segment": "content_relaxed", "context": {"start": 542, "end": 546, "input": "tokens", "text": "\" said Engel . Nevertheless John Magufuli - the ruling party ' s candidate "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Magufuli - the"}], "key": "john magufuli - the", "value": "John Magufuli - the"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 808, "end": 811, "input": "tokens", "text": "new leaders . \n President Sassou - Nguesso lately set the course for "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sassou - Nguesso"}, {"source": {"segment": "content_relaxed", "context": {"start": 826, "end": 829, "input": "tokens", "text": "new leaders . \n President Sassou - Nguesso lately set the course for "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sassou - Nguesso"}], "key": "sassou - nguesso", "value": "Sassou - Nguesso"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 869, "end": 871, "input": "tokens", "text": "a lot suggests that President Joseph Kabila will not abide by the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Joseph Kabila"}, {"source": {"segment": "content_relaxed", "context": {"start": 887, "end": 889, "input": "tokens", "text": "a lot suggests that President Joseph Kabila will not abide by the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Joseph Kabila"}], "key": "joseph kabila", "value": "Joseph Kabila"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 908, "end": 910, "input": "tokens", "text": ". Rwanda ' s leader Paul Kagame should also leave office in "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Paul Kagame"}, {"source": {"segment": "content_relaxed", "context": {"start": 926, "end": 928, "input": "tokens", "text": ". Rwanda ' s leader Paul Kagame should also leave office in "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Paul Kagame"}], "key": "paul kagame", "value": "Paul Kagame"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "method": "rearrange_description"}], "key": "description", "value": " \n By Madelaine Meier \n The year 2015 will go down in history as one of elections in Africa. Overall there were thirteen of them. According to observers, eligible voters realized the importance and civic duty to take part in the elections. \n For the first time in Nigeria's history, a sitting president was defeated and accepted the outcome of the election. He later willingly handed over power to his main rival. In this case it was Goodluck Jonathan handing over power to Muhammadu Buhari. \n Six months later it was Burkina Faso's turn to elect its new leader. Voters endured long queues at polling stations to elect a new leader, knowing that this time their vote counted, unlike in the past three decades under Blaise Compaore's rule when the results were long certain. \n Elsewhere in Burundi violence erupted over President Pierre Nkuruziza's third term bid in office. Like was the case in 2014 in Burkina Faso, citizens and human rights activists protested in Burundi against their president's thirst for power as he, with the help of the state apparatus went ahead and run for a third term. His government violently crushed the protests and systematically embarked on a crackdown of the opposition and rights activists. Nkuruziza was again elected in July - many of his critics have since fled the country. \n In the constitutions of many African countries, the presidential term is restricted to two, like in Burundi. This does not always hold. \"So this contradiction between leaders seeking their third term and protesters and voters standing against that, is certainly an interesting new trend in African politics,\" said Jakkie Cilliers, executive director of the Institute for Security Studies (ISS) in Pretoria. \n However Cilliers also told DW that this varies from one country to another. \"Previously voters accepted that leaders have an inevitable right to stay in power for almost as long as they want to. And that certainly is changing,\" he said. Elections are no longer an easy way for the government to secure its power. Voters have become activists. \n Voters' choice \n The most thrilling election according Ulf Engel, a professor of African Studies at the University of Leipzig, was the one held in Tanzania. Unlike Zimbabwe's Robert Mugabe and Uganda's Yoweri Museveni who are still clinging on to power, President Jakaya Kikwete did not run for presidency after the end of his two terms. He made way for a new president. \n Observers had predicted a neck-and-neck race between the ruling Chama Cha Mapinduzi (CCM) party and the opposition. But the results in the end did not quite turn out as expected. \"The ruling party was worried that would sail through smoothly,\" said Engel. Nevertheless John Magufuli - the ruling party's candidate - won the election. Cilliers agrees that Tanzania is a good example, of increasing pressure on the rulers. \"For the first time there was a relative sense of unease amongst the ruling CCM-party, that it may really face a challenge.\" \n Hard times for election fraud \n For Sudan, Togo, Guinea-Conakry and Ivory Coast, leaders remained in power. In Ethiopia the ruling government obtained 100 percent according to official results. Every country has its own dynamics and its own political traditions. But developments like in Burkina Faso or in Tanzania show that voters are becoming increasingly critical and want to make themselves heard. \n The advancement in technology has also eased the voting exercise. For example in Nigeria, Ivory Coast and Tanzania voters were issued with biometric cards that contained all data from finger prints and personal details. \n \"It's no longer as easy as it was in the past to manipulate elections and to staff ballot boxes. The electronic voting and the standards that the international community have brought to bear on elections have changed practices and reduced the ability of governing parties and leaders to manipulate the results,\" said Cilliers. \n A technology that prevents misuse of power has not yet been invented. The New Year therefore, compared to the year 2015, is not promising much. In the Democratic Republic of Congo and in neighboring Congo-Brazzaville voters will head to the polls to elect new leaders. \n President Sassou-Nguesso lately set the course for his re-election. He changed the constitution making it possible for him to run for a third term. This was then passed in a disputed referendum. There were protests against the referendum which led to deaths and casualties. \n In the DRC, a lot suggests that President Joseph Kabila will not abide by the constitution and step down after his two terms. Recently he fired seven politicians in his coalition, after they asked him to abide by the constitution. Rwanda's leader Paul Kagame should also leave office in 2017, but has announced his intention to get re-elected for a third term after parliament amended the constitution. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 18, "end": 19, "input": "tokens", "text": "as one of elections in Africa . Overall there were thirteen "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Africa ' s Election Year 2015 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 36, "end": 37, "input": "tokens", "text": "as one of elections in Africa . Overall there were thirteen "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Africa ' s Election Year 2015 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1072, "end": 1073, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "method": "rearrange_title"}], "key": "title", "value": " Africa's Election Year 2015 - a Long Way to Democracy? - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 92, "end": 94, "input": "tokens", "text": "Jonathan handing over power to Muhammadu Buhari . \n Six months later "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 110, "end": 112, "input": "tokens", "text": "Jonathan handing over power to Muhammadu Buhari . \n Six months later "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}], "key": "muhammadu buhari", "value": "Muhammadu Buhari"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 314, "end": 319, "input": "tokens", "text": "Cilliers , executive director of the Institute for Security Studies ( ISS ) in Pretoria "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Institute for Security Studies"}, {"source": {"segment": "content_relaxed", "context": {"start": 332, "end": 337, "input": "tokens", "text": "Cilliers , executive director of the Institute for Security Studies ( ISS ) in Pretoria "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Institute for Security Studies"}], "key": "the institute for security studies", "value": "the Institute for Security Studies"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 320, "end": 321, "input": "tokens", "text": "Institute for Security Studies ( ISS ) in Pretoria . \n "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "ISS"}, {"source": {"segment": "content_relaxed", "context": {"start": 338, "end": 339, "input": "tokens", "text": "Institute for Security Studies ( ISS ) in Pretoria . \n "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "ISS"}], "key": "iss", "value": "ISS"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 327, "end": 328, "input": "tokens", "text": "in Pretoria . \n However Cilliers also told DW that this "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cilliers"}, {"source": {"segment": "content_strict", "context": {"start": 751, "end": 752, "input": "tokens", "text": "the results , \" said Cilliers . \n A technology that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cilliers"}, {"source": {"segment": "content_relaxed", "context": {"start": 345, "end": 346, "input": "tokens", "text": "in Pretoria . \n However Cilliers also told DW that this "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cilliers"}, {"source": {"segment": "content_relaxed", "context": {"start": 769, "end": 770, "input": "tokens", "text": "the results , \" said Cilliers . \n A technology that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cilliers"}], "key": "cilliers", "value": "Cilliers"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 330, "end": 331, "input": "tokens", "text": "\n However Cilliers also told DW that this varies from one "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DW"}, {"source": {"segment": "content_relaxed", "context": {"start": 348, "end": 349, "input": "tokens", "text": "\n However Cilliers also told DW that this varies from one "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DW"}], "key": "dw", "value": "DW"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 409, "end": 411, "input": "tokens", "text": "Engel , a professor of African Studies at the University of Leipzig "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African Studies"}, {"source": {"segment": "content_relaxed", "context": {"start": 427, "end": 429, "input": "tokens", "text": "Engel , a professor of African Studies at the University of Leipzig "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African Studies"}], "key": "african studies", "value": "African Studies"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 412, "end": 416, "input": "tokens", "text": "professor of African Studies at the University of Leipzig , was the one held "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the University of Leipzig"}, {"source": {"segment": "content_relaxed", "context": {"start": 430, "end": 434, "input": "tokens", "text": "professor of African Studies at the University of Leipzig , was the one held "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the University of Leipzig"}], "key": "the university of leipzig", "value": "the University of Leipzig"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 486, "end": 487, "input": "tokens", "text": "ruling Chama Cha Mapinduzi ( CCM ) party and the opposition "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CCM"}, {"source": {"segment": "content_relaxed", "context": {"start": 504, "end": 505, "input": "tokens", "text": "ruling Chama Cha Mapinduzi ( CCM ) party and the opposition "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CCM"}], "key": "ccm", "value": "CCM"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 569, "end": 572, "input": "tokens", "text": "of unease amongst the ruling CCM - party , that it may really "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CCM - party"}, {"source": {"segment": "content_relaxed", "context": {"start": 587, "end": 590, "input": "tokens", "text": "of unease amongst the ruling CCM - party , that it may really "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CCM - party"}], "key": "ccm - party", "value": "CCM - party"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 594, "end": 597, "input": "tokens", "text": "For Sudan , Togo , Guinea - Conakry and Ivory Coast , leaders "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Guinea - Conakry"}, {"source": {"segment": "content_relaxed", "context": {"start": 612, "end": 615, "input": "tokens", "text": "For Sudan , Togo , Guinea - Conakry and Ivory Coast , leaders "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Guinea - Conakry"}], "key": "guinea - conakry", "value": "Guinea - Conakry"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 767, "end": 770, "input": "tokens", "text": "not yet been invented . The New Year therefore , compared to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The New Year"}, {"source": {"segment": "content_relaxed", "context": {"start": 785, "end": 788, "input": "tokens", "text": "not yet been invented . The New Year therefore , compared to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The New Year"}], "key": "the new year", "value": "The New Year"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 862, "end": 863, "input": "tokens", "text": "casualties . \n In the DRC , a lot suggests that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_relaxed", "context": {"start": 880, "end": 881, "input": "tokens", "text": "casualties . \n In the DRC , a lot suggests that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}], "key": "drc", "value": "DRC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 966, "end": 967, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 968, "end": 971, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 52, "end": 53, "input": "tokens", "text": "For the first time in Nigeria ' s history , a "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 669, "end": 670, "input": "tokens", "text": "exercise . For example in Nigeria , Ivory Coast and Tanzania "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 70, "end": 71, "input": "tokens", "text": "For the first time in Nigeria ' s history , a "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 687, "end": 688, "input": "tokens", "text": "exercise . For example in Nigeria , Ivory Coast and Tanzania "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 155, "end": 156, "input": "tokens", "text": "certain . \n Elsewhere in Burundi violence erupted over President Pierre "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 187, "end": 188, "input": "tokens", "text": "human rights activists protested in Burundi against their president ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 270, "end": 271, "input": "tokens", "text": "to two , like in Burundi . This does not always "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 173, "end": 174, "input": "tokens", "text": "certain . \n Elsewhere in Burundi violence erupted over President Pierre "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 205, "end": 206, "input": "tokens", "text": "human rights activists protested in Burundi against their president ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 288, "end": 289, "input": "tokens", "text": "to two , like in Burundi . This does not always "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}], "key": "burundi", "value": "Burundi"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 177, "end": 179, "input": "tokens", "text": "the case in 2014 in Burkina Faso , citizens and human rights "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}, {"source": {"segment": "content_strict", "context": {"start": 635, "end": 637, "input": "tokens", "text": ". But developments like in Burkina Faso or in Tanzania show that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}, {"source": {"segment": "content_relaxed", "context": {"start": 195, "end": 197, "input": "tokens", "text": "the case in 2014 in Burkina Faso , citizens and human rights "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}, {"source": {"segment": "content_relaxed", "context": {"start": 653, "end": 655, "input": "tokens", "text": ". But developments like in Burkina Faso or in Tanzania show that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}], "key": "burkina faso", "value": "Burkina Faso"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 323, "end": 324, "input": "tokens", "text": "Studies ( ISS ) in Pretoria . \n However Cilliers also "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pretoria"}, {"source": {"segment": "content_relaxed", "context": {"start": 341, "end": 342, "input": "tokens", "text": "Studies ( ISS ) in Pretoria . \n However Cilliers also "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pretoria"}], "key": "pretoria", "value": "Pretoria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 422, "end": 423, "input": "tokens", "text": "was the one held in Tanzania . Unlike Zimbabwe ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 541, "end": 542, "input": "tokens", "text": "election . Cilliers agrees that Tanzania is a good example , "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 639, "end": 640, "input": "tokens", "text": "in Burkina Faso or in Tanzania show that voters are becoming "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 674, "end": 675, "input": "tokens", "text": "Nigeria , Ivory Coast and Tanzania voters were issued with biometric "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 440, "end": 441, "input": "tokens", "text": "was the one held in Tanzania . Unlike Zimbabwe ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 559, "end": 560, "input": "tokens", "text": "election . Cilliers agrees that Tanzania is a good example , "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 657, "end": 658, "input": "tokens", "text": "in Burkina Faso or in Tanzania show that voters are becoming "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 692, "end": 693, "input": "tokens", "text": "Nigeria , Ivory Coast and Tanzania voters were issued with biometric "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}], "key": "tanzania", "value": "Tanzania"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 425, "end": 426, "input": "tokens", "text": "held in Tanzania . Unlike Zimbabwe ' s Robert Mugabe and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zimbabwe"}, {"source": {"segment": "content_relaxed", "context": {"start": 443, "end": 444, "input": "tokens", "text": "held in Tanzania . Unlike Zimbabwe ' s Robert Mugabe and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zimbabwe"}], "key": "zimbabwe", "value": "Zimbabwe"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 431, "end": 432, "input": "tokens", "text": "' s Robert Mugabe and Uganda ' s Yoweri Museveni who "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}, {"source": {"segment": "content_relaxed", "context": {"start": 449, "end": 450, "input": "tokens", "text": "' s Robert Mugabe and Uganda ' s Yoweri Museveni who "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}], "key": "uganda", "value": "Uganda"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 590, "end": 591, "input": "tokens", "text": "for election fraud \n For Sudan , Togo , Guinea - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_relaxed", "context": {"start": 608, "end": 609, "input": "tokens", "text": "for election fraud \n For Sudan , Togo , Guinea - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}], "key": "sudan", "value": "Sudan"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 592, "end": 593, "input": "tokens", "text": "fraud \n For Sudan , Togo , Guinea - Conakry and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Togo"}, {"source": {"segment": "content_relaxed", "context": {"start": 610, "end": 611, "input": "tokens", "text": "fraud \n For Sudan , Togo , Guinea - Conakry and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Togo"}], "key": "togo", "value": "Togo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 598, "end": 600, "input": "tokens", "text": ", Guinea - Conakry and Ivory Coast , leaders remained in power "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivory Coast"}, {"source": {"segment": "content_strict", "context": {"start": 671, "end": 673, "input": "tokens", "text": "For example in Nigeria , Ivory Coast and Tanzania voters were issued "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivory Coast"}, {"source": {"segment": "content_relaxed", "context": {"start": 616, "end": 618, "input": "tokens", "text": ", Guinea - Conakry and Ivory Coast , leaders remained in power "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivory Coast"}, {"source": {"segment": "content_relaxed", "context": {"start": 689, "end": 691, "input": "tokens", "text": "For example in Nigeria , Ivory Coast and Tanzania voters were issued "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivory Coast"}], "key": "ivory coast", "value": "Ivory Coast"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 607, "end": 608, "input": "tokens", "text": "remained in power . In Ethiopia the ruling government obtained 100 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ethiopia"}, {"source": {"segment": "content_relaxed", "context": {"start": 625, "end": 626, "input": "tokens", "text": "remained in power . In Ethiopia the ruling government obtained 100 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ethiopia"}], "key": "ethiopia", "value": "Ethiopia"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 784, "end": 789, "input": "tokens", "text": "not promising much . In the Democratic Republic of Congo and in neighboring Congo - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Democratic Republic of Congo"}, {"source": {"segment": "content_relaxed", "context": {"start": 802, "end": 807, "input": "tokens", "text": "not promising much . In the Democratic Republic of Congo and in neighboring Congo - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Democratic Republic of Congo"}], "key": "the democratic republic of congo", "value": "the Democratic Republic of Congo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 792, "end": 793, "input": "tokens", "text": "of Congo and in neighboring Congo - Brazzaville voters will head "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}, {"source": {"segment": "content_relaxed", "context": {"start": 810, "end": 811, "input": "tokens", "text": "of Congo and in neighboring Congo - Brazzaville voters will head "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}], "key": "congo", "value": "Congo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 794, "end": 795, "input": "tokens", "text": "and in neighboring Congo - Brazzaville voters will head to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Brazzaville"}, {"source": {"segment": "content_relaxed", "context": {"start": 812, "end": 813, "input": "tokens", "text": "and in neighboring Congo - Brazzaville voters will head to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Brazzaville"}], "key": "brazzaville", "value": "Brazzaville"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 904, "end": 905, "input": "tokens", "text": "abide by the constitution . Rwanda ' s leader Paul Kagame "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_relaxed", "context": {"start": 922, "end": 923, "input": "tokens", "text": "abide by the constitution . Rwanda ' s leader Paul Kagame "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}], "key": "rwanda", "value": "Rwanda"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 257, "end": 258, "input": "tokens", "text": "In the constitutions of many African countries , the presidential term "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_strict", "context": {"start": 303, "end": 304, "input": "tokens", "text": "an interesting new trend in African politics , \" said Jakkie "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 275, "end": 276, "input": "tokens", "text": "In the constitutions of many African countries , the presidential term "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 321, "end": 322, "input": "tokens", "text": "an interesting new trend in African politics , \" said Jakkie "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}], "key": "african", "value": "African"}]}, "content_extraction": {"content_relaxed": {"text": " \n 1 January 2016 \n Africa's Election Year 2015 - a Long Way to Democracy? \n By Madelaine Meier \n The year 2015 will go down in history as one of elections in Africa. Overall there were thirteen of them. According to observers, eligible voters realized the importance and civic duty to take part in the elections. \n For the first time in Nigeria's history, a sitting president was defeated and accepted the outcome of the election. He later willingly handed over power to his main rival. In this case it was Goodluck Jonathan handing over power to Muhammadu Buhari. \n Six months later it was Burkina Faso's turn to elect its new leader. Voters endured long queues at polling stations to elect a new leader, knowing that this time their vote counted, unlike in the past three decades under Blaise Compaore's rule when the results were long certain. \n Elsewhere in Burundi violence erupted over President Pierre Nkuruziza's third term bid in office. Like was the case in 2014 in Burkina Faso, citizens and human rights activists protested in Burundi against their president's thirst for power as he, with the help of the state apparatus went ahead and run for a third term. His government violently crushed the protests and systematically embarked on a crackdown of the opposition and rights activists. Nkuruziza was again elected in July - many of his critics have since fled the country. \n In the constitutions of many African countries, the presidential term is restricted to two, like in Burundi. This does not always hold. \"So this contradiction between leaders seeking their third term and protesters and voters standing against that, is certainly an interesting new trend in African politics,\" said Jakkie Cilliers, executive director of the Institute for Security Studies (ISS) in Pretoria. \n However Cilliers also told DW that this varies from one country to another. \"Previously voters accepted that leaders have an inevitable right to stay in power for almost as long as they want to. And that certainly is changing,\" he said. Elections are no longer an easy way for the government to secure its power. Voters have become activists. \n Voters' choice \n The most thrilling election according Ulf Engel, a professor of African Studies at the University of Leipzig, was the one held in Tanzania. Unlike Zimbabwe's Robert Mugabe and Uganda's Yoweri Museveni who are still clinging on to power, President Jakaya Kikwete did not run for presidency after the end of his two terms. He made way for a new president. \n Observers had predicted a neck-and-neck race between the ruling Chama Cha Mapinduzi (CCM) party and the opposition. But the results in the end did not quite turn out as expected. \"The ruling party was worried that would sail through smoothly,\" said Engel. Nevertheless John Magufuli - the ruling party's candidate - won the election. Cilliers agrees that Tanzania is a good example, of increasing pressure on the rulers. \"For the first time there was a relative sense of unease amongst the ruling CCM-party, that it may really face a challenge.\" \n Hard times for election fraud \n For Sudan, Togo, Guinea-Conakry and Ivory Coast, leaders remained in power. In Ethiopia the ruling government obtained 100 percent according to official results. Every country has its own dynamics and its own political traditions. But developments like in Burkina Faso or in Tanzania show that voters are becoming increasingly critical and want to make themselves heard. \n The advancement in technology has also eased the voting exercise. For example in Nigeria, Ivory Coast and Tanzania voters were issued with biometric cards that contained all data from finger prints and personal details. \n \"It's no longer as easy as it was in the past to manipulate elections and to staff ballot boxes. The electronic voting and the standards that the international community have brought to bear on elections have changed practices and reduced the ability of governing parties and leaders to manipulate the results,\" said Cilliers. \n A technology that prevents misuse of power has not yet been invented. The New Year therefore, compared to the year 2015, is not promising much. In the Democratic Republic of Congo and in neighboring Congo-Brazzaville voters will head to the polls to elect new leaders. \n President Sassou-Nguesso lately set the course for his re-election. He changed the constitution making it possible for him to run for a third term. This was then passed in a disputed referendum. There were protests against the referendum which led to deaths and casualties. \n In the DRC, a lot suggests that President Joseph Kabila will not abide by the constitution and step down after his two terms. Recently he fired seven politicians in his coalition, after they asked him to abide by the constitution. Rwanda's leader Paul Kagame should also leave office in 2017, but has announced his intention to get re-elected for a third term after parliament amended the constitution. \n Copyright \n 2016 Deutsche Welle. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "1", "january", "2016", "\n", "africa", "'", "s", "election", "year", "2015", "-", "a", "long", "way", "to", "democracy", "?", "\n", "by", "madelaine", "meier", "\n", "the", "year", "2015", "will", "go", "down", "in", "history", "as", "one", "of", "elections", "in", "africa", ".", "overall", "there", "were", "thirteen", "of", "them", ".", "according", "to", "observers", ",", "eligible", "voters", "realized", "the", "importance", "and", "civic", "duty", "to", "take", "part", "in", "the", "elections", ".", "\n", "for", "the", "first", "time", "in", "nigeria", "'", "s", "history", ",", "a", "sitting", "president", "was", "defeated", "and", "accepted", "the", "outcome", "of", "the", "election", ".", "he", "later", "willingly", "handed", "over", "power", "to", "his", "main", "rival", ".", "in", "this", "case", "it", "was", "goodluck", "jonathan", "handing", "over", "power", "to", "muhammadu", "buhari", ".", "\n", "six", "months", "later", "it", "was", "burkina", "faso", "'", "s", "turn", "to", "elect", "its", "new", "leader", ".", "voters", "endured", "long", "queues", "at", "polling", "stations", "to", "elect", "a", "new", "leader", ",", "knowing", "that", "this", "time", "their", "vote", "counted", ",", "unlike", "in", "the", "past", "three", "decades", "under", "blaise", "compaore", "'", "s", "rule", "when", "the", "results", "were", "long", "certain", ".", "\n", "elsewhere", "in", "burundi", "violence", "erupted", "over", "president", "pierre", "nkuruziza", "'", "s", "third", "term", "bid", "in", "office", ".", "like", "was", "the", "case", "in", "2014", "in", "burkina", "faso", ",", "citizens", "and", "human", "rights", "activists", "protested", "in", "burundi", "against", "their", "president", "'", "s", "thirst", "for", "power", "as", "he", ",", "with", "the", "help", "of", "the", "state", "apparatus", "went", "ahead", "and", "run", "for", "a", "third", "term", ".", "his", "government", "violently", "crushed", "the", "protests", "and", "systematically", "embarked", "on", "a", "crackdown", "of", "the", "opposition", "and", "rights", "activists", ".", "nkuruziza", "was", "again", "elected", "in", "july", "-", "many", "of", "his", "critics", "have", "since", "fled", "the", "country", ".", "\n", "in", "the", "constitutions", "of", "many", "african", "countries", ",", "the", "presidential", "term", "is", "restricted", "to", "two", ",", "like", "in", "burundi", ".", "this", "does", "not", "always", "hold", ".", "\"", "so", "this", "contradiction", "between", "leaders", "seeking", "their", "third", "term", "and", "protesters", "and", "voters", "standing", "against", "that", ",", "is", "certainly", "an", "interesting", "new", "trend", "in", "african", "politics", ",", "\"", "said", "jakkie", "cilliers", ",", "executive", "director", "of", "the", "institute", "for", "security", "studies", "(", "iss", ")", "in", "pretoria", ".", "\n", "however", "cilliers", "also", "told", "dw", "that", "this", "varies", "from", "one", "country", "to", "another", ".", "\"", "previously", "voters", "accepted", "that", "leaders", "have", "an", "inevitable", "right", "to", "stay", "in", "power", "for", "almost", "as", "long", "as", "they", "want", "to", ".", "and", "that", "certainly", "is", "changing", ",", "\"", "he", "said", ".", "elections", "are", "no", "longer", "an", "easy", "way", "for", "the", "government", "to", "secure", "its", "power", ".", "voters", "have", "become", "activists", ".", "\n", "voters", "'", "choice", "\n", "the", "most", "thrilling", "election", "according", "ulf", "engel", ",", "a", "professor", "of", "african", "studies", "at", "the", "university", "of", "leipzig", ",", "was", "the", "one", "held", "in", "tanzania", ".", "unlike", "zimbabwe", "'", "s", "robert", "mugabe", "and", "uganda", "'", "s", "yoweri", "museveni", "who", "are", "still", "clinging", "on", "to", "power", ",", "president", "jakaya", "kikwete", "did", "not", "run", "for", "presidency", "after", "the", "end", "of", "his", "two", "terms", ".", "he", "made", "way", "for", "a", "new", "president", ".", "\n", "observers", "had", "predicted", "a", "neck", "-", "and", "-", "neck", "race", "between", "the", "ruling", "chama", "cha", "mapinduzi", "(", "ccm", ")", "party", "and", "the", "opposition", ".", "but", "the", "results", "in", "the", "end", "did", "not", "quite", "turn", "out", "as", "expected", ".", "\"", "the", "ruling", "party", "was", "worried", "that", "would", "sail", "through", "smoothly", ",", "\"", "said", "engel", ".", "nevertheless", "john", "magufuli", "-", "the", "ruling", "party", "'", "s", "candidate", "-", "won", "the", "election", ".", "cilliers", "agrees", "that", "tanzania", "is", "a", "good", "example", ",", "of", "increasing", "pressure", "on", "the", "rulers", ".", "\"", "for", "the", "first", "time", "there", "was", "a", "relative", "sense", "of", "unease", "amongst", "the", "ruling", "ccm", "-", "party", ",", "that", "it", "may", "really", "face", "a", "challenge", ".", "\"", "\n", "hard", "times", "for", "election", "fraud", "\n", "for", "sudan", ",", "togo", ",", "guinea", "-", "conakry", "and", "ivory", "coast", ",", "leaders", "remained", "in", "power", ".", "in", "ethiopia", "the", "ruling", "government", "obtained", "100", "percent", "according", "to", "official", "results", ".", "every", "country", "has", "its", "own", "dynamics", "and", "its", "own", "political", "traditions", ".", "but", "developments", "like", "in", "burkina", "faso", "or", "in", "tanzania", "show", "that", "voters", "are", "becoming", "increasingly", "critical", "and", "want", "to", "make", "themselves", "heard", ".", "\n", "the", "advancement", "in", "technology", "has", "also", "eased", "the", "voting", "exercise", ".", "for", "example", "in", "nigeria", ",", "ivory", "coast", "and", "tanzania", "voters", "were", "issued", "with", "biometric", "cards", "that", "contained", "all", "data", "from", "finger", "prints", "and", "personal", "details", ".", "\n", "\"", "it", "'", "s", "no", "longer", "as", "easy", "as", "it", "was", "in", "the", "past", "to", "manipulate", "elections", "and", "to", "staff", "ballot", "boxes", ".", "the", "electronic", "voting", "and", "the", "standards", "that", "the", "international", "community", "have", "brought", "to", "bear", "on", "elections", "have", "changed", "practices", "and", "reduced", "the", "ability", "of", "governing", "parties", "and", "leaders", "to", "manipulate", "the", "results", ",", "\"", "said", "cilliers", ".", "\n", "a", "technology", "that", "prevents", "misuse", "of", "power", "has", "not", "yet", "been", "invented", ".", "the", "new", "year", "therefore", ",", "compared", "to", "the", "year", "2015", ",", "is", "not", "promising", "much", ".", "in", "the", "democratic", "republic", "of", "congo", "and", "in", "neighboring", "congo", "-", "brazzaville", "voters", "will", "head", "to", "the", "polls", "to", "elect", "new", "leaders", ".", "\n", "president", "sassou", "-", "nguesso", "lately", "set", "the", "course", "for", "his", "re", "-", "election", ".", "he", "changed", "the", "constitution", "making", "it", "possible", "for", "him", "to", "run", "for", "a", "third", "term", ".", "this", "was", "then", "passed", "in", "a", "disputed", "referendum", ".", "there", "were", "protests", "against", "the", "referendum", "which", "led", "to", "deaths", "and", "casualties", ".", "\n", "in", "the", "drc", ",", "a", "lot", "suggests", "that", "president", "joseph", "kabila", "will", "not", "abide", "by", "the", "constitution", "and", "step", "down", "after", "his", "two", "terms", ".", "recently", "he", "fired", "seven", "politicians", "in", "his", "coalition", ",", "after", "they", "asked", "him", "to", "abide", "by", "the", "constitution", ".", "rwanda", "'", "s", "leader", "paul", "kagame", "should", "also", "leave", "office", "in", "2017", ",", "but", "has", "announced", "his", "intention", "to", "get", "re", "-", "elected", "for", "a", "third", "term", "after", "parliament", "amended", "the", "constitution", ".", "\n", "copyright", "\n", "2016", "deutsche", "welle", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "1", "January", "2016", "\n", "Africa", "'", "s", "Election", "Year", "2015", "-", "a", "Long", "Way", "to", "Democracy", "?", "\n", "By", "Madelaine", "Meier", "\n", "The", "year", "2015", "will", "go", "down", "in", "history", "as", "one", "of", "elections", "in", "Africa", ".", "Overall", "there", "were", "thirteen", "of", "them", ".", "According", "to", "observers", ",", "eligible", "voters", "realized", "the", "importance", "and", "civic", "duty", "to", "take", "part", "in", "the", "elections", ".", "\n", "For", "the", "first", "time", "in", "Nigeria", "'", "s", "history", ",", "a", "sitting", "president", "was", "defeated", "and", "accepted", "the", "outcome", "of", "the", "election", ".", "He", "later", "willingly", "handed", "over", "power", "to", "his", "main", "rival", ".", "In", "this", "case", "it", "was", "Goodluck", "Jonathan", "handing", "over", "power", "to", "Muhammadu", "Buhari", ".", "\n", "Six", "months", "later", "it", "was", "Burkina", "Faso", "'", "s", "turn", "to", "elect", "its", "new", "leader", ".", "Voters", "endured", "long", "queues", "at", "polling", "stations", "to", "elect", "a", "new", "leader", ",", "knowing", "that", "this", "time", "their", "vote", "counted", ",", "unlike", "in", "the", "past", "three", "decades", "under", "Blaise", "Compaore", "'", "s", "rule", "when", "the", "results", "were", "long", "certain", ".", "\n", "Elsewhere", "in", "Burundi", "violence", "erupted", "over", "President", "Pierre", "Nkuruziza", "'", "s", "third", "term", "bid", "in", "office", ".", "Like", "was", "the", "case", "in", "2014", "in", "Burkina", "Faso", ",", "citizens", "and", "human", "rights", "activists", "protested", "in", "Burundi", "against", "their", "president", "'", "s", "thirst", "for", "power", "as", "he", ",", "with", "the", "help", "of", "the", "state", "apparatus", "went", "ahead", "and", "run", "for", "a", "third", "term", ".", "His", "government", "violently", "crushed", "the", "protests", "and", "systematically", "embarked", "on", "a", "crackdown", "of", "the", "opposition", "and", "rights", "activists", ".", "Nkuruziza", "was", "again", "elected", "in", "July", "-", "many", "of", "his", "critics", "have", "since", "fled", "the", "country", ".", "\n", "In", "the", "constitutions", "of", "many", "African", "countries", ",", "the", "presidential", "term", "is", "restricted", "to", "two", ",", "like", "in", "Burundi", ".", "This", "does", "not", "always", "hold", ".", "\"", "So", "this", "contradiction", "between", "leaders", "seeking", "their", "third", "term", "and", "protesters", "and", "voters", "standing", "against", "that", ",", "is", "certainly", "an", "interesting", "new", "trend", "in", "African", "politics", ",", "\"", "said", "Jakkie", "Cilliers", ",", "executive", "director", "of", "the", "Institute", "for", "Security", "Studies", "(", "ISS", ")", "in", "Pretoria", ".", "\n", "However", "Cilliers", "also", "told", "DW", "that", "this", "varies", "from", "one", "country", "to", "another", ".", "\"", "Previously", "voters", "accepted", "that", "leaders", "have", "an", "inevitable", "right", "to", "stay", "in", "power", "for", "almost", "as", "long", "as", "they", "want", "to", ".", "And", "that", "certainly", "is", "changing", ",", "\"", "he", "said", ".", "Elections", "are", "no", "longer", "an", "easy", "way", "for", "the", "government", "to", "secure", "its", "power", ".", "Voters", "have", "become", "activists", ".", "\n", "Voters", "'", "choice", "\n", "The", "most", "thrilling", "election", "according", "Ulf", "Engel", ",", "a", "professor", "of", "African", "Studies", "at", "the", "University", "of", "Leipzig", ",", "was", "the", "one", "held", "in", "Tanzania", ".", "Unlike", "Zimbabwe", "'", "s", "Robert", "Mugabe", "and", "Uganda", "'", "s", "Yoweri", "Museveni", "who", "are", "still", "clinging", "on", "to", "power", ",", "President", "Jakaya", "Kikwete", "did", "not", "run", "for", "presidency", "after", "the", "end", "of", "his", "two", "terms", ".", "He", "made", "way", "for", "a", "new", "president", ".", "\n", "Observers", "had", "predicted", "a", "neck", "-", "and", "-", "neck", "race", "between", "the", "ruling", "Chama", "Cha", "Mapinduzi", "(", "CCM", ")", "party", "and", "the", "opposition", ".", "But", "the", "results", "in", "the", "end", "did", "not", "quite", "turn", "out", "as", "expected", ".", "\"", "The", "ruling", "party", "was", "worried", "that", "would", "sail", "through", "smoothly", ",", "\"", "said", "Engel", ".", "Nevertheless", "John", "Magufuli", "-", "the", "ruling", "party", "'", "s", "candidate", "-", "won", "the", "election", ".", "Cilliers", "agrees", "that", "Tanzania", "is", "a", "good", "example", ",", "of", "increasing", "pressure", "on", "the", "rulers", ".", "\"", "For", "the", "first", "time", "there", "was", "a", "relative", "sense", "of", "unease", "amongst", "the", "ruling", "CCM", "-", "party", ",", "that", "it", "may", "really", "face", "a", "challenge", ".", "\"", "\n", "Hard", "times", "for", "election", "fraud", "\n", "For", "Sudan", ",", "Togo", ",", "Guinea", "-", "Conakry", "and", "Ivory", "Coast", ",", "leaders", "remained", "in", "power", ".", "In", "Ethiopia", "the", "ruling", "government", "obtained", "100", "percent", "according", "to", "official", "results", ".", "Every", "country", "has", "its", "own", "dynamics", "and", "its", "own", "political", "traditions", ".", "But", "developments", "like", "in", "Burkina", "Faso", "or", "in", "Tanzania", "show", "that", "voters", "are", "becoming", "increasingly", "critical", "and", "want", "to", "make", "themselves", "heard", ".", "\n", "The", "advancement", "in", "technology", "has", "also", "eased", "the", "voting", "exercise", ".", "For", "example", "in", "Nigeria", ",", "Ivory", "Coast", "and", "Tanzania", "voters", "were", "issued", "with", "biometric", "cards", "that", "contained", "all", "data", "from", "finger", "prints", "and", "personal", "details", ".", "\n", "\"", "It", "'", "s", "no", "longer", "as", "easy", "as", "it", "was", "in", "the", "past", "to", "manipulate", "elections", "and", "to", "staff", "ballot", "boxes", ".", "The", "electronic", "voting", "and", "the", "standards", "that", "the", "international", "community", "have", "brought", "to", "bear", "on", "elections", "have", "changed", "practices", "and", "reduced", "the", "ability", "of", "governing", "parties", "and", "leaders", "to", "manipulate", "the", "results", ",", "\"", "said", "Cilliers", ".", "\n", "A", "technology", "that", "prevents", "misuse", "of", "power", "has", "not", "yet", "been", "invented", ".", "The", "New", "Year", "therefore", ",", "compared", "to", "the", "year", "2015", ",", "is", "not", "promising", "much", ".", "In", "the", "Democratic", "Republic", "of", "Congo", "and", "in", "neighboring", "Congo", "-", "Brazzaville", "voters", "will", "head", "to", "the", "polls", "to", "elect", "new", "leaders", ".", "\n", "President", "Sassou", "-", "Nguesso", "lately", "set", "the", "course", "for", "his", "re", "-", "election", ".", "He", "changed", "the", "constitution", "making", "it", "possible", "for", "him", "to", "run", "for", "a", "third", "term", ".", "This", "was", "then", "passed", "in", "a", "disputed", "referendum", ".", "There", "were", "protests", "against", "the", "referendum", "which", "led", "to", "deaths", "and", "casualties", ".", "\n", "In", "the", "DRC", ",", "a", "lot", "suggests", "that", "President", "Joseph", "Kabila", "will", "not", "abide", "by", "the", "constitution", "and", "step", "down", "after", "his", "two", "terms", ".", "Recently", "he", "fired", "seven", "politicians", "in", "his", "coalition", ",", "after", "they", "asked", "him", "to", "abide", "by", "the", "constitution", ".", "Rwanda", "'", "s", "leader", "Paul", "Kagame", "should", "also", "leave", "office", "in", "2017", ",", "but", "has", "announced", "his", "intention", "to", "get", "re", "-", "elected", "for", "a", "third", "term", "after", "parliament", "amended", "the", "constitution", ".", "\n", "Copyright", "\n", "2016", "Deutsche", "Welle", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 1102, "end": 1103, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "AllAfrica", "context": {"start": 1102, "end": 1103, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 20, "end": 22, "input": "tokens", "text": "to Democracy ? \n By Madelaine Meier \n The year 2015 will "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Madelaine Meier", "context": {"start": 20, "end": 22, "input": "tokens", "text": "to Democracy ? \n By Madelaine Meier \n The year 2015 will "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 104, "end": 106, "input": "tokens", "text": "In this case it was Goodluck Jonathan handing over power to Muhammadu "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Goodluck Jonathan", "context": {"start": 104, "end": 106, "input": "tokens", "text": "In this case it was Goodluck Jonathan handing over power to Muhammadu "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 119, "end": 121, "input": "tokens", "text": "Six months later it was Burkina Faso ' s turn to elect "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burkina Faso", "context": {"start": 119, "end": 121, "input": "tokens", "text": "Six months later it was Burkina Faso ' s turn to elect "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 158, "end": 160, "input": "tokens", "text": "the past three decades under Blaise Compaore ' s rule when the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Blaise Compaore", "context": {"start": 158, "end": 160, "input": "tokens", "text": "the past three decades under Blaise Compaore ' s rule when the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 178, "end": 180, "input": "tokens", "text": "Burundi violence erupted over President Pierre Nkuruziza ' s third term bid "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Pierre Nkuruziza", "context": {"start": 178, "end": 180, "input": "tokens", "text": "Burundi violence erupted over President Pierre Nkuruziza ' s third term bid "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 252, "end": 253, "input": "tokens", "text": "opposition and rights activists . Nkuruziza was again elected in July "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Nkuruziza", "context": {"start": 252, "end": 253, "input": "tokens", "text": "opposition and rights activists . Nkuruziza was again elected in July "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 326, "end": 328, "input": "tokens", "text": "African politics , \" said Jakkie Cilliers , executive director of the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Jakkie Cilliers", "context": {"start": 326, "end": 328, "input": "tokens", "text": "African politics , \" said Jakkie Cilliers , executive director of the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 421, "end": 423, "input": "tokens", "text": "The most thrilling election according Ulf Engel , a professor of African "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Ulf Engel", "context": {"start": 421, "end": 423, "input": "tokens", "text": "The most thrilling election according Ulf Engel , a professor of African "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 446, "end": 448, "input": "tokens", "text": ". Unlike Zimbabwe ' s Robert Mugabe and Uganda ' s Yoweri "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Robert Mugabe", "context": {"start": 446, "end": 448, "input": "tokens", "text": ". Unlike Zimbabwe ' s Robert Mugabe and Uganda ' s Yoweri "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 452, "end": 454, "input": "tokens", "text": "Mugabe and Uganda ' s Yoweri Museveni who are still clinging on "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Yoweri Museveni", "context": {"start": 452, "end": 454, "input": "tokens", "text": "Mugabe and Uganda ' s Yoweri Museveni who are still clinging on "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 463, "end": 465, "input": "tokens", "text": "on to power , President Jakaya Kikwete did not run for presidency "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Jakaya Kikwete", "context": {"start": 463, "end": 465, "input": "tokens", "text": "on to power , President Jakaya Kikwete did not run for presidency "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 500, "end": 503, "input": "tokens", "text": "neck race between the ruling Chama Cha Mapinduzi ( CCM ) party and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Chama Cha Mapinduzi", "context": {"start": 500, "end": 503, "input": "tokens", "text": "neck race between the ruling Chama Cha Mapinduzi ( CCM ) party and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 539, "end": 540, "input": "tokens", "text": "through smoothly , \" said Engel . Nevertheless John Magufuli - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Engel", "context": {"start": 539, "end": 540, "input": "tokens", "text": "through smoothly , \" said Engel . Nevertheless John Magufuli - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 542, "end": 546, "input": "tokens", "text": "\" said Engel . Nevertheless John Magufuli - the ruling party ' s candidate "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "John Magufuli - the", "context": {"start": 542, "end": 546, "input": "tokens", "text": "\" said Engel . Nevertheless John Magufuli - the ruling party ' s candidate "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 826, "end": 829, "input": "tokens", "text": "new leaders . \n President Sassou - Nguesso lately set the course for "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Sassou - Nguesso", "context": {"start": 826, "end": 829, "input": "tokens", "text": "new leaders . \n President Sassou - Nguesso lately set the course for "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 887, "end": 889, "input": "tokens", "text": "a lot suggests that President Joseph Kabila will not abide by the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Joseph Kabila", "context": {"start": 887, "end": 889, "input": "tokens", "text": "a lot suggests that President Joseph Kabila will not abide by the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 926, "end": 928, "input": "tokens", "text": ". Rwanda ' s leader Paul Kagame should also leave office in "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Paul Kagame", "context": {"start": 926, "end": 928, "input": "tokens", "text": ". Rwanda ' s leader Paul Kagame should also leave office in "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Africa ' s Election Year 2015 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Africa", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 1 January 2016 \n Africa ' s Election Year 2015 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 36, "end": 37, "input": "tokens", "text": "as one of elections in Africa . Overall there were thirteen "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Africa", "context": {"start": 36, "end": 37, "input": "tokens", "text": "as one of elections in Africa . Overall there were thirteen "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1072, "end": 1073, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "AllAfrica", "context": {"start": 1072, "end": 1073, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 110, "end": 112, "input": "tokens", "text": "Jonathan handing over power to Muhammadu Buhari . \n Six months later "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Muhammadu Buhari", "context": {"start": 110, "end": 112, "input": "tokens", "text": "Jonathan handing over power to Muhammadu Buhari . \n Six months later "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 332, "end": 337, "input": "tokens", "text": "Cilliers , executive director of the Institute for Security Studies ( ISS ) in Pretoria "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "the Institute for Security Studies", "context": {"start": 332, "end": 337, "input": "tokens", "text": "Cilliers , executive director of the Institute for Security Studies ( ISS ) in Pretoria "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 338, "end": 339, "input": "tokens", "text": "Institute for Security Studies ( ISS ) in Pretoria . \n "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "ISS", "context": {"start": 338, "end": 339, "input": "tokens", "text": "Institute for Security Studies ( ISS ) in Pretoria . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 345, "end": 346, "input": "tokens", "text": "in Pretoria . \n However Cilliers also told DW that this "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Cilliers", "context": {"start": 345, "end": 346, "input": "tokens", "text": "in Pretoria . \n However Cilliers also told DW that this "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 348, "end": 349, "input": "tokens", "text": "\n However Cilliers also told DW that this varies from one "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "DW", "context": {"start": 348, "end": 349, "input": "tokens", "text": "\n However Cilliers also told DW that this varies from one "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 427, "end": 429, "input": "tokens", "text": "Engel , a professor of African Studies at the University of Leipzig "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "African Studies", "context": {"start": 427, "end": 429, "input": "tokens", "text": "Engel , a professor of African Studies at the University of Leipzig "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 430, "end": 434, "input": "tokens", "text": "professor of African Studies at the University of Leipzig , was the one held "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "the University of Leipzig", "context": {"start": 430, "end": 434, "input": "tokens", "text": "professor of African Studies at the University of Leipzig , was the one held "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 504, "end": 505, "input": "tokens", "text": "ruling Chama Cha Mapinduzi ( CCM ) party and the opposition "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "CCM", "context": {"start": 504, "end": 505, "input": "tokens", "text": "ruling Chama Cha Mapinduzi ( CCM ) party and the opposition "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 587, "end": 590, "input": "tokens", "text": "of unease amongst the ruling CCM - party , that it may really "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "CCM - party", "context": {"start": 587, "end": 590, "input": "tokens", "text": "of unease amongst the ruling CCM - party , that it may really "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 612, "end": 615, "input": "tokens", "text": "For Sudan , Togo , Guinea - Conakry and Ivory Coast , leaders "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Guinea - Conakry", "context": {"start": 612, "end": 615, "input": "tokens", "text": "For Sudan , Togo , Guinea - Conakry and Ivory Coast , leaders "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 769, "end": 770, "input": "tokens", "text": "the results , \" said Cilliers . \n A technology that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Cilliers", "context": {"start": 769, "end": 770, "input": "tokens", "text": "the results , \" said Cilliers . \n A technology that "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 785, "end": 788, "input": "tokens", "text": "not yet been invented . The New Year therefore , compared to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "The New Year", "context": {"start": 785, "end": 788, "input": "tokens", "text": "not yet been invented . The New Year therefore , compared to the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 880, "end": 881, "input": "tokens", "text": "casualties . \n In the DRC , a lot suggests that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "DRC", "context": {"start": 880, "end": 881, "input": "tokens", "text": "casualties . \n In the DRC , a lot suggests that "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 966, "end": 967, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Distributed", "context": {"start": 966, "end": 967, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 968, "end": 971, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "AllAfrica Global Media", "context": {"start": 968, "end": 971, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 70, "end": 71, "input": "tokens", "text": "For the first time in Nigeria ' s history , a "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Nigeria", "context": {"start": 70, "end": 71, "input": "tokens", "text": "For the first time in Nigeria ' s history , a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 173, "end": 174, "input": "tokens", "text": "certain . \n Elsewhere in Burundi violence erupted over President Pierre "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burundi", "context": {"start": 173, "end": 174, "input": "tokens", "text": "certain . \n Elsewhere in Burundi violence erupted over President Pierre "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 195, "end": 197, "input": "tokens", "text": "the case in 2014 in Burkina Faso , citizens and human rights "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burkina Faso", "context": {"start": 195, "end": 197, "input": "tokens", "text": "the case in 2014 in Burkina Faso , citizens and human rights "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 205, "end": 206, "input": "tokens", "text": "human rights activists protested in Burundi against their president ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burundi", "context": {"start": 205, "end": 206, "input": "tokens", "text": "human rights activists protested in Burundi against their president ' s "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 288, "end": 289, "input": "tokens", "text": "to two , like in Burundi . This does not always "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burundi", "context": {"start": 288, "end": 289, "input": "tokens", "text": "to two , like in Burundi . This does not always "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 341, "end": 342, "input": "tokens", "text": "Studies ( ISS ) in Pretoria . \n However Cilliers also "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Pretoria", "context": {"start": 341, "end": 342, "input": "tokens", "text": "Studies ( ISS ) in Pretoria . \n However Cilliers also "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 440, "end": 441, "input": "tokens", "text": "was the one held in Tanzania . Unlike Zimbabwe ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Tanzania", "context": {"start": 440, "end": 441, "input": "tokens", "text": "was the one held in Tanzania . Unlike Zimbabwe ' s "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 443, "end": 444, "input": "tokens", "text": "held in Tanzania . Unlike Zimbabwe ' s Robert Mugabe and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Zimbabwe", "context": {"start": 443, "end": 444, "input": "tokens", "text": "held in Tanzania . Unlike Zimbabwe ' s Robert Mugabe and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 449, "end": 450, "input": "tokens", "text": "' s Robert Mugabe and Uganda ' s Yoweri Museveni who "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Uganda", "context": {"start": 449, "end": 450, "input": "tokens", "text": "' s Robert Mugabe and Uganda ' s Yoweri Museveni who "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 559, "end": 560, "input": "tokens", "text": "election . Cilliers agrees that Tanzania is a good example , "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Tanzania", "context": {"start": 559, "end": 560, "input": "tokens", "text": "election . Cilliers agrees that Tanzania is a good example , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 608, "end": 609, "input": "tokens", "text": "for election fraud \n For Sudan , Togo , Guinea - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Sudan", "context": {"start": 608, "end": 609, "input": "tokens", "text": "for election fraud \n For Sudan , Togo , Guinea - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 610, "end": 611, "input": "tokens", "text": "fraud \n For Sudan , Togo , Guinea - Conakry and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Togo", "context": {"start": 610, "end": 611, "input": "tokens", "text": "fraud \n For Sudan , Togo , Guinea - Conakry and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 616, "end": 618, "input": "tokens", "text": ", Guinea - Conakry and Ivory Coast , leaders remained in power "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Ivory Coast", "context": {"start": 616, "end": 618, "input": "tokens", "text": ", Guinea - Conakry and Ivory Coast , leaders remained in power "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 625, "end": 626, "input": "tokens", "text": "remained in power . In Ethiopia the ruling government obtained 100 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Ethiopia", "context": {"start": 625, "end": 626, "input": "tokens", "text": "remained in power . In Ethiopia the ruling government obtained 100 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 653, "end": 655, "input": "tokens", "text": ". But developments like in Burkina Faso or in Tanzania show that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burkina Faso", "context": {"start": 653, "end": 655, "input": "tokens", "text": ". But developments like in Burkina Faso or in Tanzania show that "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 657, "end": 658, "input": "tokens", "text": "in Burkina Faso or in Tanzania show that voters are becoming "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Tanzania", "context": {"start": 657, "end": 658, "input": "tokens", "text": "in Burkina Faso or in Tanzania show that voters are becoming "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 687, "end": 688, "input": "tokens", "text": "exercise . For example in Nigeria , Ivory Coast and Tanzania "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Nigeria", "context": {"start": 687, "end": 688, "input": "tokens", "text": "exercise . For example in Nigeria , Ivory Coast and Tanzania "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 689, "end": 691, "input": "tokens", "text": "For example in Nigeria , Ivory Coast and Tanzania voters were issued "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Ivory Coast", "context": {"start": 689, "end": 691, "input": "tokens", "text": "For example in Nigeria , Ivory Coast and Tanzania voters were issued "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 692, "end": 693, "input": "tokens", "text": "Nigeria , Ivory Coast and Tanzania voters were issued with biometric "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Tanzania", "context": {"start": 692, "end": 693, "input": "tokens", "text": "Nigeria , Ivory Coast and Tanzania voters were issued with biometric "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 802, "end": 807, "input": "tokens", "text": "not promising much . In the Democratic Republic of Congo and in neighboring Congo - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "the Democratic Republic of Congo", "context": {"start": 802, "end": 807, "input": "tokens", "text": "not promising much . In the Democratic Republic of Congo and in neighboring Congo - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 810, "end": 811, "input": "tokens", "text": "of Congo and in neighboring Congo - Brazzaville voters will head "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Congo", "context": {"start": 810, "end": 811, "input": "tokens", "text": "of Congo and in neighboring Congo - Brazzaville voters will head "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 812, "end": 813, "input": "tokens", "text": "and in neighboring Congo - Brazzaville voters will head to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Brazzaville", "context": {"start": 812, "end": 813, "input": "tokens", "text": "and in neighboring Congo - Brazzaville voters will head to the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 922, "end": 923, "input": "tokens", "text": "abide by the constitution . Rwanda ' s leader Paul Kagame "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Rwanda", "context": {"start": 922, "end": 923, "input": "tokens", "text": "abide by the constitution . Rwanda ' s leader Paul Kagame "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 275, "end": 276, "input": "tokens", "text": "In the constitutions of many African countries , the presidential term "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "African", "context": {"start": 275, "end": 276, "input": "tokens", "text": "In the constitutions of many African countries , the presidential term "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 321, "end": 322, "input": "tokens", "text": "an interesting new trend in African politics , \" said Jakkie "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "African", "context": {"start": 321, "end": 322, "input": "tokens", "text": "an interesting new trend in African politics , \" said Jakkie "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/03/201601030145.html"}, "content_strict": {"text": " \n By Madelaine Meier \n The year 2015 will go down in history as one of elections in Africa. Overall there were thirteen of them. According to observers, eligible voters realized the importance and civic duty to take part in the elections. \n For the first time in Nigeria's history, a sitting president was defeated and accepted the outcome of the election. He later willingly handed over power to his main rival. In this case it was Goodluck Jonathan handing over power to Muhammadu Buhari. \n Six months later it was Burkina Faso's turn to elect its new leader. Voters endured long queues at polling stations to elect a new leader, knowing that this time their vote counted, unlike in the past three decades under Blaise Compaore's rule when the results were long certain. \n Elsewhere in Burundi violence erupted over President Pierre Nkuruziza's third term bid in office. Like was the case in 2014 in Burkina Faso, citizens and human rights activists protested in Burundi against their president's thirst for power as he, with the help of the state apparatus went ahead and run for a third term. His government violently crushed the protests and systematically embarked on a crackdown of the opposition and rights activists. Nkuruziza was again elected in July - many of his critics have since fled the country. \n In the constitutions of many African countries, the presidential term is restricted to two, like in Burundi. This does not always hold. \"So this contradiction between leaders seeking their third term and protesters and voters standing against that, is certainly an interesting new trend in African politics,\" said Jakkie Cilliers, executive director of the Institute for Security Studies (ISS) in Pretoria. \n However Cilliers also told DW that this varies from one country to another. \"Previously voters accepted that leaders have an inevitable right to stay in power for almost as long as they want to. And that certainly is changing,\" he said. Elections are no longer an easy way for the government to secure its power. Voters have become activists. \n Voters' choice \n The most thrilling election according Ulf Engel, a professor of African Studies at the University of Leipzig, was the one held in Tanzania. Unlike Zimbabwe's Robert Mugabe and Uganda's Yoweri Museveni who are still clinging on to power, President Jakaya Kikwete did not run for presidency after the end of his two terms. He made way for a new president. \n Observers had predicted a neck-and-neck race between the ruling Chama Cha Mapinduzi (CCM) party and the opposition. But the results in the end did not quite turn out as expected. \"The ruling party was worried that would sail through smoothly,\" said Engel. Nevertheless John Magufuli - the ruling party's candidate - won the election. Cilliers agrees that Tanzania is a good example, of increasing pressure on the rulers. \"For the first time there was a relative sense of unease amongst the ruling CCM-party, that it may really face a challenge.\" \n Hard times for election fraud \n For Sudan, Togo, Guinea-Conakry and Ivory Coast, leaders remained in power. In Ethiopia the ruling government obtained 100 percent according to official results. Every country has its own dynamics and its own political traditions. But developments like in Burkina Faso or in Tanzania show that voters are becoming increasingly critical and want to make themselves heard. \n The advancement in technology has also eased the voting exercise. For example in Nigeria, Ivory Coast and Tanzania voters were issued with biometric cards that contained all data from finger prints and personal details. \n \"It's no longer as easy as it was in the past to manipulate elections and to staff ballot boxes. The electronic voting and the standards that the international community have brought to bear on elections have changed practices and reduced the ability of governing parties and leaders to manipulate the results,\" said Cilliers. \n A technology that prevents misuse of power has not yet been invented. The New Year therefore, compared to the year 2015, is not promising much. In the Democratic Republic of Congo and in neighboring Congo-Brazzaville voters will head to the polls to elect new leaders. \n President Sassou-Nguesso lately set the course for his re-election. He changed the constitution making it possible for him to run for a third term. This was then passed in a disputed referendum. There were protests against the referendum which led to deaths and casualties. \n In the DRC, a lot suggests that President Joseph Kabila will not abide by the constitution and step down after his two terms. Recently he fired seven politicians in his coalition, after they asked him to abide by the constitution. Rwanda's leader Paul Kagame should also leave office in 2017, but has announced his intention to get re-elected for a third term after parliament amended the constitution. \n ", "simple_tokens": ["\n", "by", "madelaine", "meier", "\n", "the", "year", "2015", "will", "go", "down", "in", "history", "as", "one", "of", "elections", "in", "africa", ".", "overall", "there", "were", "thirteen", "of", "them", ".", "according", "to", "observers", ",", "eligible", "voters", "realized", "the", "importance", "and", "civic", "duty", "to", "take", "part", "in", "the", "elections", ".", "\n", "for", "the", "first", "time", "in", "nigeria", "'", "s", "history", ",", "a", "sitting", "president", "was", "defeated", "and", "accepted", "the", "outcome", "of", "the", "election", ".", "he", "later", "willingly", "handed", "over", "power", "to", "his", "main", "rival", ".", "in", "this", "case", "it", "was", "goodluck", "jonathan", "handing", "over", "power", "to", "muhammadu", "buhari", ".", "\n", "six", "months", "later", "it", "was", "burkina", "faso", "'", "s", "turn", "to", "elect", "its", "new", "leader", ".", "voters", "endured", "long", "queues", "at", "polling", "stations", "to", "elect", "a", "new", "leader", ",", "knowing", "that", "this", "time", "their", "vote", "counted", ",", "unlike", "in", "the", "past", "three", "decades", "under", "blaise", "compaore", "'", "s", "rule", "when", "the", "results", "were", "long", "certain", ".", "\n", "elsewhere", "in", "burundi", "violence", "erupted", "over", "president", "pierre", "nkuruziza", "'", "s", "third", "term", "bid", "in", "office", ".", "like", "was", "the", "case", "in", "2014", "in", "burkina", "faso", ",", "citizens", "and", "human", "rights", "activists", "protested", "in", "burundi", "against", "their", "president", "'", "s", "thirst", "for", "power", "as", "he", ",", "with", "the", "help", "of", "the", "state", "apparatus", "went", "ahead", "and", "run", "for", "a", "third", "term", ".", "his", "government", "violently", "crushed", "the", "protests", "and", "systematically", "embarked", "on", "a", "crackdown", "of", "the", "opposition", "and", "rights", "activists", ".", "nkuruziza", "was", "again", "elected", "in", "july", "-", "many", "of", "his", "critics", "have", "since", "fled", "the", "country", ".", "\n", "in", "the", "constitutions", "of", "many", "african", "countries", ",", "the", "presidential", "term", "is", "restricted", "to", "two", ",", "like", "in", "burundi", ".", "this", "does", "not", "always", "hold", ".", "\"", "so", "this", "contradiction", "between", "leaders", "seeking", "their", "third", "term", "and", "protesters", "and", "voters", "standing", "against", "that", ",", "is", "certainly", "an", "interesting", "new", "trend", "in", "african", "politics", ",", "\"", "said", "jakkie", "cilliers", ",", "executive", "director", "of", "the", "institute", "for", "security", "studies", "(", "iss", ")", "in", "pretoria", ".", "\n", "however", "cilliers", "also", "told", "dw", "that", "this", "varies", "from", "one", "country", "to", "another", ".", "\"", "previously", "voters", "accepted", "that", "leaders", "have", "an", "inevitable", "right", "to", "stay", "in", "power", "for", "almost", "as", "long", "as", "they", "want", "to", ".", "and", "that", "certainly", "is", "changing", ",", "\"", "he", "said", ".", "elections", "are", "no", "longer", "an", "easy", "way", "for", "the", "government", "to", "secure", "its", "power", ".", "voters", "have", "become", "activists", ".", "\n", "voters", "'", "choice", "\n", "the", "most", "thrilling", "election", "according", "ulf", "engel", ",", "a", "professor", "of", "african", "studies", "at", "the", "university", "of", "leipzig", ",", "was", "the", "one", "held", "in", "tanzania", ".", "unlike", "zimbabwe", "'", "s", "robert", "mugabe", "and", "uganda", "'", "s", "yoweri", "museveni", "who", "are", "still", "clinging", "on", "to", "power", ",", "president", "jakaya", "kikwete", "did", "not", "run", "for", "presidency", "after", "the", "end", "of", "his", "two", "terms", ".", "he", "made", "way", "for", "a", "new", "president", ".", "\n", "observers", "had", "predicted", "a", "neck", "-", "and", "-", "neck", "race", "between", "the", "ruling", "chama", "cha", "mapinduzi", "(", "ccm", ")", "party", "and", "the", "opposition", ".", "but", "the", "results", "in", "the", "end", "did", "not", "quite", "turn", "out", "as", "expected", ".", "\"", "the", "ruling", "party", "was", "worried", "that", "would", "sail", "through", "smoothly", ",", "\"", "said", "engel", ".", "nevertheless", "john", "magufuli", "-", "the", "ruling", "party", "'", "s", "candidate", "-", "won", "the", "election", ".", "cilliers", "agrees", "that", "tanzania", "is", "a", "good", "example", ",", "of", "increasing", "pressure", "on", "the", "rulers", ".", "\"", "for", "the", "first", "time", "there", "was", "a", "relative", "sense", "of", "unease", "amongst", "the", "ruling", "ccm", "-", "party", ",", "that", "it", "may", "really", "face", "a", "challenge", ".", "\"", "\n", "hard", "times", "for", "election", "fraud", "\n", "for", "sudan", ",", "togo", ",", "guinea", "-", "conakry", "and", "ivory", "coast", ",", "leaders", "remained", "in", "power", ".", "in", "ethiopia", "the", "ruling", "government", "obtained", "100", "percent", "according", "to", "official", "results", ".", "every", "country", "has", "its", "own", "dynamics", "and", "its", "own", "political", "traditions", ".", "but", "developments", "like", "in", "burkina", "faso", "or", "in", "tanzania", "show", "that", "voters", "are", "becoming", "increasingly", "critical", "and", "want", "to", "make", "themselves", "heard", ".", "\n", "the", "advancement", "in", "technology", "has", "also", "eased", "the", "voting", "exercise", ".", "for", "example", "in", "nigeria", ",", "ivory", "coast", "and", "tanzania", "voters", "were", "issued", "with", "biometric", "cards", "that", "contained", "all", "data", "from", "finger", "prints", "and", "personal", "details", ".", "\n", "\"", "it", "'", "s", "no", "longer", "as", "easy", "as", "it", "was", "in", "the", "past", "to", "manipulate", "elections", "and", "to", "staff", "ballot", "boxes", ".", "the", "electronic", "voting", "and", "the", "standards", "that", "the", "international", "community", "have", "brought", "to", "bear", "on", "elections", "have", "changed", "practices", "and", "reduced", "the", "ability", "of", "governing", "parties", "and", "leaders", "to", "manipulate", "the", "results", ",", "\"", "said", "cilliers", ".", "\n", "a", "technology", "that", "prevents", "misuse", "of", "power", "has", "not", "yet", "been", "invented", ".", "the", "new", "year", "therefore", ",", "compared", "to", "the", "year", "2015", ",", "is", "not", "promising", "much", ".", "in", "the", "democratic", "republic", "of", "congo", "and", "in", "neighboring", "congo", "-", "brazzaville", "voters", "will", "head", "to", "the", "polls", "to", "elect", "new", "leaders", ".", "\n", "president", "sassou", "-", "nguesso", "lately", "set", "the", "course", "for", "his", "re", "-", "election", ".", "he", "changed", "the", "constitution", "making", "it", "possible", "for", "him", "to", "run", "for", "a", "third", "term", ".", "this", "was", "then", "passed", "in", "a", "disputed", "referendum", ".", "there", "were", "protests", "against", "the", "referendum", "which", "led", "to", "deaths", "and", "casualties", ".", "\n", "in", "the", "drc", ",", "a", "lot", "suggests", "that", "president", "joseph", "kabila", "will", "not", "abide", "by", "the", "constitution", "and", "step", "down", "after", "his", "two", "terms", ".", "recently", "he", "fired", "seven", "politicians", "in", "his", "coalition", ",", "after", "they", "asked", "him", "to", "abide", "by", "the", "constitution", ".", "rwanda", "'", "s", "leader", "paul", "kagame", "should", "also", "leave", "office", "in", "2017", ",", "but", "has", "announced", "his", "intention", "to", "get", "re", "-", "elected", "for", "a", "third", "term", "after", "parliament", "amended", "the", "constitution", ".", "\n"], "simple_tokens_original_case": ["\n", "By", "Madelaine", "Meier", "\n", "The", "year", "2015", "will", "go", "down", "in", "history", "as", "one", "of", "elections", "in", "Africa", ".", "Overall", "there", "were", "thirteen", "of", "them", ".", "According", "to", "observers", ",", "eligible", "voters", "realized", "the", "importance", "and", "civic", "duty", "to", "take", "part", "in", "the", "elections", ".", "\n", "For", "the", "first", "time", "in", "Nigeria", "'", "s", "history", ",", "a", "sitting", "president", "was", "defeated", "and", "accepted", "the", "outcome", "of", "the", "election", ".", "He", "later", "willingly", "handed", "over", "power", "to", "his", "main", "rival", ".", "In", "this", "case", "it", "was", "Goodluck", "Jonathan", "handing", "over", "power", "to", "Muhammadu", "Buhari", ".", "\n", "Six", "months", "later", "it", "was", "Burkina", "Faso", "'", "s", "turn", "to", "elect", "its", "new", "leader", ".", "Voters", "endured", "long", "queues", "at", "polling", "stations", "to", "elect", "a", "new", "leader", ",", "knowing", "that", "this", "time", "their", "vote", "counted", ",", "unlike", "in", "the", "past", "three", "decades", "under", "Blaise", "Compaore", "'", "s", "rule", "when", "the", "results", "were", "long", "certain", ".", "\n", "Elsewhere", "in", "Burundi", "violence", "erupted", "over", "President", "Pierre", "Nkuruziza", "'", "s", "third", "term", "bid", "in", "office", ".", "Like", "was", "the", "case", "in", "2014", "in", "Burkina", "Faso", ",", "citizens", "and", "human", "rights", "activists", "protested", "in", "Burundi", "against", "their", "president", "'", "s", "thirst", "for", "power", "as", "he", ",", "with", "the", "help", "of", "the", "state", "apparatus", "went", "ahead", "and", "run", "for", "a", "third", "term", ".", "His", "government", "violently", "crushed", "the", "protests", "and", "systematically", "embarked", "on", "a", "crackdown", "of", "the", "opposition", "and", "rights", "activists", ".", "Nkuruziza", "was", "again", "elected", "in", "July", "-", "many", "of", "his", "critics", "have", "since", "fled", "the", "country", ".", "\n", "In", "the", "constitutions", "of", "many", "African", "countries", ",", "the", "presidential", "term", "is", "restricted", "to", "two", ",", "like", "in", "Burundi", ".", "This", "does", "not", "always", "hold", ".", "\"", "So", "this", "contradiction", "between", "leaders", "seeking", "their", "third", "term", "and", "protesters", "and", "voters", "standing", "against", "that", ",", "is", "certainly", "an", "interesting", "new", "trend", "in", "African", "politics", ",", "\"", "said", "Jakkie", "Cilliers", ",", "executive", "director", "of", "the", "Institute", "for", "Security", "Studies", "(", "ISS", ")", "in", "Pretoria", ".", "\n", "However", "Cilliers", "also", "told", "DW", "that", "this", "varies", "from", "one", "country", "to", "another", ".", "\"", "Previously", "voters", "accepted", "that", "leaders", "have", "an", "inevitable", "right", "to", "stay", "in", "power", "for", "almost", "as", "long", "as", "they", "want", "to", ".", "And", "that", "certainly", "is", "changing", ",", "\"", "he", "said", ".", "Elections", "are", "no", "longer", "an", "easy", "way", "for", "the", "government", "to", "secure", "its", "power", ".", "Voters", "have", "become", "activists", ".", "\n", "Voters", "'", "choice", "\n", "The", "most", "thrilling", "election", "according", "Ulf", "Engel", ",", "a", "professor", "of", "African", "Studies", "at", "the", "University", "of", "Leipzig", ",", "was", "the", "one", "held", "in", "Tanzania", ".", "Unlike", "Zimbabwe", "'", "s", "Robert", "Mugabe", "and", "Uganda", "'", "s", "Yoweri", "Museveni", "who", "are", "still", "clinging", "on", "to", "power", ",", "President", "Jakaya", "Kikwete", "did", "not", "run", "for", "presidency", "after", "the", "end", "of", "his", "two", "terms", ".", "He", "made", "way", "for", "a", "new", "president", ".", "\n", "Observers", "had", "predicted", "a", "neck", "-", "and", "-", "neck", "race", "between", "the", "ruling", "Chama", "Cha", "Mapinduzi", "(", "CCM", ")", "party", "and", "the", "opposition", ".", "But", "the", "results", "in", "the", "end", "did", "not", "quite", "turn", "out", "as", "expected", ".", "\"", "The", "ruling", "party", "was", "worried", "that", "would", "sail", "through", "smoothly", ",", "\"", "said", "Engel", ".", "Nevertheless", "John", "Magufuli", "-", "the", "ruling", "party", "'", "s", "candidate", "-", "won", "the", "election", ".", "Cilliers", "agrees", "that", "Tanzania", "is", "a", "good", "example", ",", "of", "increasing", "pressure", "on", "the", "rulers", ".", "\"", "For", "the", "first", "time", "there", "was", "a", "relative", "sense", "of", "unease", "amongst", "the", "ruling", "CCM", "-", "party", ",", "that", "it", "may", "really", "face", "a", "challenge", ".", "\"", "\n", "Hard", "times", "for", "election", "fraud", "\n", "For", "Sudan", ",", "Togo", ",", "Guinea", "-", "Conakry", "and", "Ivory", "Coast", ",", "leaders", "remained", "in", "power", ".", "In", "Ethiopia", "the", "ruling", "government", "obtained", "100", "percent", "according", "to", "official", "results", ".", "Every", "country", "has", "its", "own", "dynamics", "and", "its", "own", "political", "traditions", ".", "But", "developments", "like", "in", "Burkina", "Faso", "or", "in", "Tanzania", "show", "that", "voters", "are", "becoming", "increasingly", "critical", "and", "want", "to", "make", "themselves", "heard", ".", "\n", "The", "advancement", "in", "technology", "has", "also", "eased", "the", "voting", "exercise", ".", "For", "example", "in", "Nigeria", ",", "Ivory", "Coast", "and", "Tanzania", "voters", "were", "issued", "with", "biometric", "cards", "that", "contained", "all", "data", "from", "finger", "prints", "and", "personal", "details", ".", "\n", "\"", "It", "'", "s", "no", "longer", "as", "easy", "as", "it", "was", "in", "the", "past", "to", "manipulate", "elections", "and", "to", "staff", "ballot", "boxes", ".", "The", "electronic", "voting", "and", "the", "standards", "that", "the", "international", "community", "have", "brought", "to", "bear", "on", "elections", "have", "changed", "practices", "and", "reduced", "the", "ability", "of", "governing", "parties", "and", "leaders", "to", "manipulate", "the", "results", ",", "\"", "said", "Cilliers", ".", "\n", "A", "technology", "that", "prevents", "misuse", "of", "power", "has", "not", "yet", "been", "invented", ".", "The", "New", "Year", "therefore", ",", "compared", "to", "the", "year", "2015", ",", "is", "not", "promising", "much", ".", "In", "the", "Democratic", "Republic", "of", "Congo", "and", "in", "neighboring", "Congo", "-", "Brazzaville", "voters", "will", "head", "to", "the", "polls", "to", "elect", "new", "leaders", ".", "\n", "President", "Sassou", "-", "Nguesso", "lately", "set", "the", "course", "for", "his", "re", "-", "election", ".", "He", "changed", "the", "constitution", "making", "it", "possible", "for", "him", "to", "run", "for", "a", "third", "term", ".", "This", "was", "then", "passed", "in", "a", "disputed", "referendum", ".", "There", "were", "protests", "against", "the", "referendum", "which", "led", "to", "deaths", "and", "casualties", ".", "\n", "In", "the", "DRC", ",", "a", "lot", "suggests", "that", "President", "Joseph", "Kabila", "will", "not", "abide", "by", "the", "constitution", "and", "step", "down", "after", "his", "two", "terms", ".", "Recently", "he", "fired", "seven", "politicians", "in", "his", "coalition", ",", "after", "they", "asked", "him", "to", "abide", "by", "the", "constitution", ".", "Rwanda", "'", "s", "leader", "Paul", "Kagame", "should", "also", "leave", "office", "in", "2017", ",", "but", "has", "announced", "his", "intention", "to", "get", "re", "-", "elected", "for", "a", "third", "term", "after", "parliament", "amended", "the", "constitution", ".", "\n"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 52, "end": 53, "input": "tokens", "text": "For the first time in Nigeria ' s history , a "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Nigeria", "context": {"start": 52, "end": 53, "input": "tokens", "text": "For the first time in Nigeria ' s history , a "}}, {"origin": {"segment": "content_strict", "context": {"start": 155, "end": 156, "input": "tokens", "text": "certain . \n Elsewhere in Burundi violence erupted over President Pierre "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burundi", "context": {"start": 155, "end": 156, "input": "tokens", "text": "certain . \n Elsewhere in Burundi violence erupted over President Pierre "}}, {"origin": {"segment": "content_strict", "context": {"start": 177, "end": 179, "input": "tokens", "text": "the case in 2014 in Burkina Faso , citizens and human rights "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burkina Faso", "context": {"start": 177, "end": 179, "input": "tokens", "text": "the case in 2014 in Burkina Faso , citizens and human rights "}}, {"origin": {"segment": "content_strict", "context": {"start": 187, "end": 188, "input": "tokens", "text": "human rights activists protested in Burundi against their president ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burundi", "context": {"start": 187, "end": 188, "input": "tokens", "text": "human rights activists protested in Burundi against their president ' s "}}, {"origin": {"segment": "content_strict", "context": {"start": 270, "end": 271, "input": "tokens", "text": "to two , like in Burundi . This does not always "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burundi", "context": {"start": 270, "end": 271, "input": "tokens", "text": "to two , like in Burundi . This does not always "}}, {"origin": {"segment": "content_strict", "context": {"start": 323, "end": 324, "input": "tokens", "text": "Studies ( ISS ) in Pretoria . \n However Cilliers also "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Pretoria", "context": {"start": 323, "end": 324, "input": "tokens", "text": "Studies ( ISS ) in Pretoria . \n However Cilliers also "}}, {"origin": {"segment": "content_strict", "context": {"start": 422, "end": 423, "input": "tokens", "text": "was the one held in Tanzania . Unlike Zimbabwe ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Tanzania", "context": {"start": 422, "end": 423, "input": "tokens", "text": "was the one held in Tanzania . Unlike Zimbabwe ' s "}}, {"origin": {"segment": "content_strict", "context": {"start": 425, "end": 426, "input": "tokens", "text": "held in Tanzania . Unlike Zimbabwe ' s Robert Mugabe and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Zimbabwe", "context": {"start": 425, "end": 426, "input": "tokens", "text": "held in Tanzania . Unlike Zimbabwe ' s Robert Mugabe and "}}, {"origin": {"segment": "content_strict", "context": {"start": 431, "end": 432, "input": "tokens", "text": "' s Robert Mugabe and Uganda ' s Yoweri Museveni who "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Uganda", "context": {"start": 431, "end": 432, "input": "tokens", "text": "' s Robert Mugabe and Uganda ' s Yoweri Museveni who "}}, {"origin": {"segment": "content_strict", "context": {"start": 541, "end": 542, "input": "tokens", "text": "election . Cilliers agrees that Tanzania is a good example , "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Tanzania", "context": {"start": 541, "end": 542, "input": "tokens", "text": "election . Cilliers agrees that Tanzania is a good example , "}}, {"origin": {"segment": "content_strict", "context": {"start": 590, "end": 591, "input": "tokens", "text": "for election fraud \n For Sudan , Togo , Guinea - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Sudan", "context": {"start": 590, "end": 591, "input": "tokens", "text": "for election fraud \n For Sudan , Togo , Guinea - "}}, {"origin": {"segment": "content_strict", "context": {"start": 592, "end": 593, "input": "tokens", "text": "fraud \n For Sudan , Togo , Guinea - Conakry and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Togo", "context": {"start": 592, "end": 593, "input": "tokens", "text": "fraud \n For Sudan , Togo , Guinea - Conakry and "}}, {"origin": {"segment": "content_strict", "context": {"start": 598, "end": 600, "input": "tokens", "text": ", Guinea - Conakry and Ivory Coast , leaders remained in power "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Ivory Coast", "context": {"start": 598, "end": 600, "input": "tokens", "text": ", Guinea - Conakry and Ivory Coast , leaders remained in power "}}, {"origin": {"segment": "content_strict", "context": {"start": 607, "end": 608, "input": "tokens", "text": "remained in power . In Ethiopia the ruling government obtained 100 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Ethiopia", "context": {"start": 607, "end": 608, "input": "tokens", "text": "remained in power . In Ethiopia the ruling government obtained 100 "}}, {"origin": {"segment": "content_strict", "context": {"start": 635, "end": 637, "input": "tokens", "text": ". But developments like in Burkina Faso or in Tanzania show that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burkina Faso", "context": {"start": 635, "end": 637, "input": "tokens", "text": ". But developments like in Burkina Faso or in Tanzania show that "}}, {"origin": {"segment": "content_strict", "context": {"start": 639, "end": 640, "input": "tokens", "text": "in Burkina Faso or in Tanzania show that voters are becoming "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Tanzania", "context": {"start": 639, "end": 640, "input": "tokens", "text": "in Burkina Faso or in Tanzania show that voters are becoming "}}, {"origin": {"segment": "content_strict", "context": {"start": 669, "end": 670, "input": "tokens", "text": "exercise . For example in Nigeria , Ivory Coast and Tanzania "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Nigeria", "context": {"start": 669, "end": 670, "input": "tokens", "text": "exercise . For example in Nigeria , Ivory Coast and Tanzania "}}, {"origin": {"segment": "content_strict", "context": {"start": 671, "end": 673, "input": "tokens", "text": "For example in Nigeria , Ivory Coast and Tanzania voters were issued "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Ivory Coast", "context": {"start": 671, "end": 673, "input": "tokens", "text": "For example in Nigeria , Ivory Coast and Tanzania voters were issued "}}, {"origin": {"segment": "content_strict", "context": {"start": 674, "end": 675, "input": "tokens", "text": "Nigeria , Ivory Coast and Tanzania voters were issued with biometric "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Tanzania", "context": {"start": 674, "end": 675, "input": "tokens", "text": "Nigeria , Ivory Coast and Tanzania voters were issued with biometric "}}, {"origin": {"segment": "content_strict", "context": {"start": 784, "end": 789, "input": "tokens", "text": "not promising much . In the Democratic Republic of Congo and in neighboring Congo - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "the Democratic Republic of Congo", "context": {"start": 784, "end": 789, "input": "tokens", "text": "not promising much . In the Democratic Republic of Congo and in neighboring Congo - "}}, {"origin": {"segment": "content_strict", "context": {"start": 792, "end": 793, "input": "tokens", "text": "of Congo and in neighboring Congo - Brazzaville voters will head "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Congo", "context": {"start": 792, "end": 793, "input": "tokens", "text": "of Congo and in neighboring Congo - Brazzaville voters will head "}}, {"origin": {"segment": "content_strict", "context": {"start": 794, "end": 795, "input": "tokens", "text": "and in neighboring Congo - Brazzaville voters will head to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Brazzaville", "context": {"start": 794, "end": 795, "input": "tokens", "text": "and in neighboring Congo - Brazzaville voters will head to the "}}, {"origin": {"segment": "content_strict", "context": {"start": 904, "end": 905, "input": "tokens", "text": "abide by the constitution . Rwanda ' s leader Paul Kagame "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Rwanda", "context": {"start": 904, "end": 905, "input": "tokens", "text": "abide by the constitution . Rwanda ' s leader Paul Kagame "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 92, "end": 94, "input": "tokens", "text": "Jonathan handing over power to Muhammadu Buhari . \n Six months later "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Muhammadu Buhari", "context": {"start": 92, "end": 94, "input": "tokens", "text": "Jonathan handing over power to Muhammadu Buhari . \n Six months later "}}, {"origin": {"segment": "content_strict", "context": {"start": 314, "end": 319, "input": "tokens", "text": "Cilliers , executive director of the Institute for Security Studies ( ISS ) in Pretoria "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "the Institute for Security Studies", "context": {"start": 314, "end": 319, "input": "tokens", "text": "Cilliers , executive director of the Institute for Security Studies ( ISS ) in Pretoria "}}, {"origin": {"segment": "content_strict", "context": {"start": 320, "end": 321, "input": "tokens", "text": "Institute for Security Studies ( ISS ) in Pretoria . \n "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "ISS", "context": {"start": 320, "end": 321, "input": "tokens", "text": "Institute for Security Studies ( ISS ) in Pretoria . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 327, "end": 328, "input": "tokens", "text": "in Pretoria . \n However Cilliers also told DW that this "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Cilliers", "context": {"start": 327, "end": 328, "input": "tokens", "text": "in Pretoria . \n However Cilliers also told DW that this "}}, {"origin": {"segment": "content_strict", "context": {"start": 330, "end": 331, "input": "tokens", "text": "\n However Cilliers also told DW that this varies from one "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "DW", "context": {"start": 330, "end": 331, "input": "tokens", "text": "\n However Cilliers also told DW that this varies from one "}}, {"origin": {"segment": "content_strict", "context": {"start": 409, "end": 411, "input": "tokens", "text": "Engel , a professor of African Studies at the University of Leipzig "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "African Studies", "context": {"start": 409, "end": 411, "input": "tokens", "text": "Engel , a professor of African Studies at the University of Leipzig "}}, {"origin": {"segment": "content_strict", "context": {"start": 412, "end": 416, "input": "tokens", "text": "professor of African Studies at the University of Leipzig , was the one held "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "the University of Leipzig", "context": {"start": 412, "end": 416, "input": "tokens", "text": "professor of African Studies at the University of Leipzig , was the one held "}}, {"origin": {"segment": "content_strict", "context": {"start": 486, "end": 487, "input": "tokens", "text": "ruling Chama Cha Mapinduzi ( CCM ) party and the opposition "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "CCM", "context": {"start": 486, "end": 487, "input": "tokens", "text": "ruling Chama Cha Mapinduzi ( CCM ) party and the opposition "}}, {"origin": {"segment": "content_strict", "context": {"start": 569, "end": 572, "input": "tokens", "text": "of unease amongst the ruling CCM - party , that it may really "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "CCM - party", "context": {"start": 569, "end": 572, "input": "tokens", "text": "of unease amongst the ruling CCM - party , that it may really "}}, {"origin": {"segment": "content_strict", "context": {"start": 594, "end": 597, "input": "tokens", "text": "For Sudan , Togo , Guinea - Conakry and Ivory Coast , leaders "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Guinea - Conakry", "context": {"start": 594, "end": 597, "input": "tokens", "text": "For Sudan , Togo , Guinea - Conakry and Ivory Coast , leaders "}}, {"origin": {"segment": "content_strict", "context": {"start": 751, "end": 752, "input": "tokens", "text": "the results , \" said Cilliers . \n A technology that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Cilliers", "context": {"start": 751, "end": 752, "input": "tokens", "text": "the results , \" said Cilliers . \n A technology that "}}, {"origin": {"segment": "content_strict", "context": {"start": 767, "end": 770, "input": "tokens", "text": "not yet been invented . The New Year therefore , compared to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "The New Year", "context": {"start": 767, "end": 770, "input": "tokens", "text": "not yet been invented . The New Year therefore , compared to the "}}, {"origin": {"segment": "content_strict", "context": {"start": 862, "end": 863, "input": "tokens", "text": "casualties . \n In the DRC , a lot suggests that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "DRC", "context": {"start": 862, "end": 863, "input": "tokens", "text": "casualties . \n In the DRC , a lot suggests that "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Madelaine Meier \n The year 2015 will "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Madelaine Meier", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Madelaine Meier \n The year 2015 will "}}, {"origin": {"segment": "content_strict", "context": {"start": 86, "end": 88, "input": "tokens", "text": "In this case it was Goodluck Jonathan handing over power to Muhammadu "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Goodluck Jonathan", "context": {"start": 86, "end": 88, "input": "tokens", "text": "In this case it was Goodluck Jonathan handing over power to Muhammadu "}}, {"origin": {"segment": "content_strict", "context": {"start": 101, "end": 103, "input": "tokens", "text": "Six months later it was Burkina Faso ' s turn to elect "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Burkina Faso", "context": {"start": 101, "end": 103, "input": "tokens", "text": "Six months later it was Burkina Faso ' s turn to elect "}}, {"origin": {"segment": "content_strict", "context": {"start": 140, "end": 142, "input": "tokens", "text": "the past three decades under Blaise Compaore ' s rule when the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Blaise Compaore", "context": {"start": 140, "end": 142, "input": "tokens", "text": "the past three decades under Blaise Compaore ' s rule when the "}}, {"origin": {"segment": "content_strict", "context": {"start": 160, "end": 162, "input": "tokens", "text": "Burundi violence erupted over President Pierre Nkuruziza ' s third term bid "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Pierre Nkuruziza", "context": {"start": 160, "end": 162, "input": "tokens", "text": "Burundi violence erupted over President Pierre Nkuruziza ' s third term bid "}}, {"origin": {"segment": "content_strict", "context": {"start": 234, "end": 235, "input": "tokens", "text": "opposition and rights activists . Nkuruziza was again elected in July "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Nkuruziza", "context": {"start": 234, "end": 235, "input": "tokens", "text": "opposition and rights activists . Nkuruziza was again elected in July "}}, {"origin": {"segment": "content_strict", "context": {"start": 308, "end": 310, "input": "tokens", "text": "African politics , \" said Jakkie Cilliers , executive director of the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Jakkie Cilliers", "context": {"start": 308, "end": 310, "input": "tokens", "text": "African politics , \" said Jakkie Cilliers , executive director of the "}}, {"origin": {"segment": "content_strict", "context": {"start": 403, "end": 405, "input": "tokens", "text": "The most thrilling election according Ulf Engel , a professor of African "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Ulf Engel", "context": {"start": 403, "end": 405, "input": "tokens", "text": "The most thrilling election according Ulf Engel , a professor of African "}}, {"origin": {"segment": "content_strict", "context": {"start": 428, "end": 430, "input": "tokens", "text": ". Unlike Zimbabwe ' s Robert Mugabe and Uganda ' s Yoweri "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Robert Mugabe", "context": {"start": 428, "end": 430, "input": "tokens", "text": ". Unlike Zimbabwe ' s Robert Mugabe and Uganda ' s Yoweri "}}, {"origin": {"segment": "content_strict", "context": {"start": 434, "end": 436, "input": "tokens", "text": "Mugabe and Uganda ' s Yoweri Museveni who are still clinging on "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Yoweri Museveni", "context": {"start": 434, "end": 436, "input": "tokens", "text": "Mugabe and Uganda ' s Yoweri Museveni who are still clinging on "}}, {"origin": {"segment": "content_strict", "context": {"start": 445, "end": 447, "input": "tokens", "text": "on to power , President Jakaya Kikwete did not run for presidency "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Jakaya Kikwete", "context": {"start": 445, "end": 447, "input": "tokens", "text": "on to power , President Jakaya Kikwete did not run for presidency "}}, {"origin": {"segment": "content_strict", "context": {"start": 482, "end": 485, "input": "tokens", "text": "neck race between the ruling Chama Cha Mapinduzi ( CCM ) party and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Chama Cha Mapinduzi", "context": {"start": 482, "end": 485, "input": "tokens", "text": "neck race between the ruling Chama Cha Mapinduzi ( CCM ) party and "}}, {"origin": {"segment": "content_strict", "context": {"start": 521, "end": 522, "input": "tokens", "text": "through smoothly , \" said Engel . Nevertheless John Magufuli - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Engel", "context": {"start": 521, "end": 522, "input": "tokens", "text": "through smoothly , \" said Engel . Nevertheless John Magufuli - "}}, {"origin": {"segment": "content_strict", "context": {"start": 524, "end": 528, "input": "tokens", "text": "\" said Engel . Nevertheless John Magufuli - the ruling party ' s candidate "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "John Magufuli - the", "context": {"start": 524, "end": 528, "input": "tokens", "text": "\" said Engel . Nevertheless John Magufuli - the ruling party ' s candidate "}}, {"origin": {"segment": "content_strict", "context": {"start": 808, "end": 811, "input": "tokens", "text": "new leaders . \n President Sassou - Nguesso lately set the course for "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Sassou - Nguesso", "context": {"start": 808, "end": 811, "input": "tokens", "text": "new leaders . \n President Sassou - Nguesso lately set the course for "}}, {"origin": {"segment": "content_strict", "context": {"start": 869, "end": 871, "input": "tokens", "text": "a lot suggests that President Joseph Kabila will not abide by the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Joseph Kabila", "context": {"start": 869, "end": 871, "input": "tokens", "text": "a lot suggests that President Joseph Kabila will not abide by the "}}, {"origin": {"segment": "content_strict", "context": {"start": 908, "end": 910, "input": "tokens", "text": ". Rwanda ' s leader Paul Kagame should also leave office in "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Paul Kagame", "context": {"start": 908, "end": 910, "input": "tokens", "text": ". Rwanda ' s leader Paul Kagame should also leave office in "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 18, "end": 19, "input": "tokens", "text": "as one of elections in Africa . Overall there were thirteen "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Africa", "context": {"start": 18, "end": 19, "input": "tokens", "text": "as one of elections in Africa . Overall there were thirteen "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 257, "end": 258, "input": "tokens", "text": "In the constitutions of many African countries , the presidential term "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "African", "context": {"start": 257, "end": 258, "input": "tokens", "text": "In the constitutions of many African countries , the presidential term "}}, {"origin": {"segment": "content_strict", "context": {"start": 303, "end": 304, "input": "tokens", "text": "an interesting new trend in African politics , \" said Jakkie "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "African", "context": {"start": 303, "end": 304, "input": "tokens", "text": "an interesting new trend in African politics , \" said Jakkie "}}]}}}}, "title": {"text": " Africa's Election Year 2015 - a Long Way to Democracy? - allAfrica.com ", "simple_tokens": ["africa", "'", "s", "election", "year", "2015", "-", "a", "long", "way", "to", "democracy", "?", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Africa", "'", "s", "Election", "Year", "2015", "-", "a", "Long", "Way", "to", "Democracy", "?", "-", "allAfrica", ".", "com"], "data_extraction": {"location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Africa ' s Election Year 2015 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "value": "Africa", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Africa ' s Election Year 2015 "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:13.769920", "@etk_process_time": 0.7348182201385498, "@etk_start_time": "2017-11-15T01:34:13.035102"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Africa's Election Year 2015 - a Long Way to Democracy? - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Africa's Election Year 2015 - a Long Way to Democracy?\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Madelaine Meier\n \n

\n \n The year 2015 will go down in history as one of elections in Africa. Overall there were thirteen of them. According to observers, eligible voters realized the importance and civic duty to take part in the elections.\n \n

\n

\n For the first time in Nigeria's history, a sitting president was defeated and accepted the outcome of the election. He later willingly handed over power to his main rival. In this case it was Goodluck Jonathan handing over power to Muhammadu Buhari.\n

\n

\n Six months later it was Burkina Faso's turn to elect its new leader. Voters endured long queues at polling stations to elect a new leader, knowing that this time their vote counted, unlike in the past three decades under Blaise Compaore's rule when the results were long certain.\n

\n

\n Elsewhere in Burundi violence erupted over President Pierre Nkuruziza's third term bid in office. Like was the case in 2014 in Burkina Faso, citizens and human rights activists protested in Burundi against their president's thirst for power as he, with the help of the state apparatus went ahead and run for a third term. His government violently crushed the protests and systematically embarked on a crackdown of the opposition and rights activists. Nkuruziza was again elected in July - many of his critics have since fled the country.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n In the constitutions of many African countries, the presidential term is restricted to two, like in Burundi. This does not always hold. \"So this contradiction between leaders seeking their third term and protesters and voters standing against that, is certainly an interesting new trend in African politics,\" said Jakkie Cilliers, executive director of the Institute for Security Studies (ISS) in Pretoria.\n

\n

\n However Cilliers also told DW that this varies from one country to another. \"Previously voters accepted that leaders have an inevitable right to stay in power for almost as long as they want to. And that certainly is changing,\" he said. Elections are no longer an easy way for the government to secure its power. Voters have become activists.\n

\n

\n \n Voters' choice\n \n

\n

\n The most thrilling election according Ulf Engel, a professor of African Studies at the University of Leipzig, was the one held in Tanzania. Unlike Zimbabwe's Robert Mugabe and Uganda's Yoweri Museveni who are still clinging on to power, President Jakaya Kikwete did not run for presidency after the end of his two terms. He made way for a new president.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n

\n Observers had predicted a neck-and-neck race between the ruling Chama Cha Mapinduzi (CCM) party and the opposition. But the results in the end did not quite turn out as expected. \"The ruling party was worried that would sail through smoothly,\" said Engel. Nevertheless John Magufuli - the ruling party's candidate - won the election. Cilliers agrees that Tanzania is a good example, of increasing pressure on the rulers. \"For the first time there was a relative sense of unease amongst the ruling CCM-party, that it may really face a challenge.\"\n

\n

\n \n Hard times for election fraud\n \n

\n

\n For Sudan, Togo, Guinea-Conakry and Ivory Coast, leaders remained in power. In Ethiopia the ruling government obtained 100 percent according to official results. Every country has its own dynamics and its own political traditions. But developments like in Burkina Faso or in Tanzania show that voters are becoming increasingly critical and want to make themselves heard.\n

\n

\n The advancement in technology has also eased the voting exercise. For example in Nigeria, Ivory Coast and Tanzania voters were issued with biometric cards that contained all data from finger prints and personal details.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n \"It's no longer as easy as it was in the past to manipulate elections and to staff ballot boxes. The electronic voting and the standards that the international community have brought to bear on elections have changed practices and reduced the ability of governing parties and leaders to manipulate the results,\" said Cilliers.\n

\n

\n A technology that prevents misuse of power has not yet been invented. The New Year therefore, compared to the year 2015, is not promising much. In the Democratic Republic of Congo and in neighboring Congo-Brazzaville voters will head to the polls to elect new leaders.\n

\n

\n President Sassou-Nguesso lately set the course for his re-election. He changed the constitution making it possible for him to run for a third term. This was then passed in a disputed referendum. There were protests against the referendum which led to deaths and casualties.\n

\n

\n In the DRC, a lot suggests that President Joseph Kabila will not abide by the constitution and step down after his two terms. Recently he fired seven politicians in his coalition, after they asked him to abide by the constitution. Rwanda's leader Paul Kagame should also leave office in 2017, but has announced his intention to get re-elected for a third term after parliament amended the constitution.\n

\n
\n
\n
\n \n
\n
\n
\n
\n
\n \n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Deutsche Welle. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505", "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"} -{"url": "http://www.ce_news_article.org/2016/01/04/201601040001.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 5, "input": "tokens", "text": "\n Photo : \n AllAfrica \n Former U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 25, "end": 26, "input": "tokens", "text": ") \n Photo : \n AllAfrica \n Former U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 2648, "end": 2649, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 15, "end": 17, "input": "tokens", "text": ". Assistant Secretary of State Johnnie Carson \n guest column \n By "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}, {"source": {"segment": "content_strict", "context": {"start": 22, "end": 24, "input": "tokens", "text": "\n guest column \n By Johnnie Carson \n Washington , DC \u2014 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}, {"source": {"segment": "content_strict", "context": {"start": 77, "end": 79, "input": "tokens", "text": "he leaves , writes \n Johnnie Carson \n , the United States "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}, {"source": {"segment": "content_relaxed", "context": {"start": 36, "end": 38, "input": "tokens", "text": ". Assistant Secretary of State Johnnie Carson \n guest column \n By "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}, {"source": {"segment": "content_relaxed", "context": {"start": 43, "end": 45, "input": "tokens", "text": "\n guest column \n By Johnnie Carson \n Washington , DC \u2014 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}, {"source": {"segment": "content_relaxed", "context": {"start": 98, "end": 100, "input": "tokens", "text": "he leaves , writes \n Johnnie Carson \n , the United States "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}], "key": "johnnie carson", "value": "Johnnie Carson"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 37, "end": 39, "input": "tokens", "text": "years in office , President Barack Obama has already engaged more broadly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Barack Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 58, "end": 60, "input": "tokens", "text": "years in office , President Barack Obama has already engaged more broadly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Barack Obama"}], "key": "barack obama", "value": "Barack Obama"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 99, "end": 100, "input": "tokens", "text": "Obama administration . \n President Obama has significantly elevated and transformed "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 288, "end": 289, "input": "tokens", "text": "of young leaders , President Obama established YALI - the Young "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 372, "end": 373, "input": "tokens", "text": "Visit Nigeria : \n President Obama has traveled to Africa five "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 638, "end": 639, "input": "tokens", "text": "in July 2009 , President Obama spoke eloquently before the Ghanaian "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 765, "end": 766, "input": "tokens", "text": "the G20 : \n President Obama has said that he wants "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 924, "end": 925, "input": "tokens", "text": "Africa is one of President Obama ' s most important signature "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 1859, "end": 1860, "input": "tokens", "text": "he leaves office , President Obama should take one more step "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 2390, "end": 2391, "input": "tokens", "text": "the only thing on President Obama ' s Africa agenda for "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 120, "end": 121, "input": "tokens", "text": "Obama administration . \n President Obama has significantly elevated and transformed "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 309, "end": 310, "input": "tokens", "text": "of young leaders , President Obama established YALI - the Young "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 393, "end": 394, "input": "tokens", "text": "Visit Nigeria : \n President Obama has traveled to Africa five "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 659, "end": 660, "input": "tokens", "text": "in July 2009 , President Obama spoke eloquently before the Ghanaian "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 786, "end": 787, "input": "tokens", "text": "the G20 : \n President Obama has said that he wants "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 945, "end": 946, "input": "tokens", "text": "Africa is one of President Obama ' s most important signature "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 1880, "end": 1881, "input": "tokens", "text": "he leaves office , President Obama should take one more step "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 2411, "end": 2412, "input": "tokens", "text": "the only thing on President Obama ' s Africa agenda for "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}], "key": "obama", "value": "Obama"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 524, "end": 526, "input": "tokens", "text": "safely to Nairobi , where al Shabaab has carried out high profile "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al Shabaab"}, {"source": {"segment": "content_relaxed", "context": {"start": 545, "end": 547, "input": "tokens", "text": "safely to Nairobi , where al Shabaab has carried out high profile "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al Shabaab"}], "key": "al shabaab", "value": "al Shabaab"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 977, "end": 979, "input": "tokens", "text": "recent White House initiatives , Power Africa is not backed by any "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 998, "end": 1000, "input": "tokens", "text": "recent White House initiatives , Power Africa is not backed by any "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}], "key": "power africa", "value": "Power Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1223, "end": 1225, "input": "tokens", "text": "- election violence . \n Invite Tanzania ' s newly elected President "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Invite Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1244, "end": 1246, "input": "tokens", "text": "- election violence . \n Invite Tanzania ' s newly elected President "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Invite Tanzania"}], "key": "invite tanzania", "value": "Invite Tanzania"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1230, "end": 1232, "input": "tokens", "text": "' s newly elected President John Magufuli to the White House : "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Magufuli"}, {"source": {"segment": "content_relaxed", "context": {"start": 1251, "end": 1253, "input": "tokens", "text": "' s newly elected President John Magufuli to the White House : "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Magufuli"}], "key": "john magufuli", "value": "John Magufuli"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1311, "end": 1314, "input": "tokens", "text": "Zanzibar were disputed . President John Pombe Magufuli , a reform - minded "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Pombe Magufuli"}, {"source": {"segment": "content_relaxed", "context": {"start": 1332, "end": 1335, "input": "tokens", "text": "Zanzibar were disputed . President John Pombe Magufuli , a reform - minded "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Pombe Magufuli"}], "key": "john pombe magufuli", "value": "John Pombe Magufuli"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1346, "end": 1347, "input": "tokens", "text": "a row . Although the Zanzibar election remains unresolved , it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zanzibar"}, {"source": {"segment": "content_relaxed", "context": {"start": 1367, "end": 1368, "input": "tokens", "text": "a row . Although the Zanzibar election remains unresolved , it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zanzibar"}], "key": "zanzibar", "value": "Zanzibar"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1388, "end": 1389, "input": "tokens", "text": "is particularly important since President Magufuli does not have any major "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magufuli"}, {"source": {"segment": "content_strict", "context": {"start": 1429, "end": 1430, "input": "tokens", "text": "Early political consultations with President Magufuli and his new foreign minister "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magufuli"}, {"source": {"segment": "content_relaxed", "context": {"start": 1409, "end": 1410, "input": "tokens", "text": "is particularly important since President Magufuli does not have any major "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magufuli"}, {"source": {"segment": "content_relaxed", "context": {"start": 1450, "end": 1451, "input": "tokens", "text": "Early political consultations with President Magufuli and his new foreign minister "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magufuli"}], "key": "magufuli", "value": "Magufuli"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1436, "end": 1437, "input": "tokens", "text": "his new foreign minister , Dr . Augustine Mahiga , could "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_relaxed", "context": {"start": 1457, "end": 1458, "input": "tokens", "text": "his new foreign minister , Dr . Augustine Mahiga , could "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}], "key": "dr", "value": "Dr"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1438, "end": 1440, "input": "tokens", "text": "foreign minister , Dr . Augustine Mahiga , could prove valuable in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Mahiga"}, {"source": {"segment": "content_relaxed", "context": {"start": 1459, "end": 1461, "input": "tokens", "text": "foreign minister , Dr . Augustine Mahiga , could prove valuable in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Mahiga"}], "key": "augustine mahiga", "value": "Augustine Mahiga"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1458, "end": 1460, "input": "tokens", "text": "\n Send Secretary of State John Kerry to Rwanda , Burundi , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Kerry"}, {"source": {"segment": "content_relaxed", "context": {"start": 1479, "end": 1481, "input": "tokens", "text": "\n Send Secretary of State John Kerry to Rwanda , Burundi , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Kerry"}], "key": "john kerry", "value": "John Kerry"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1591, "end": 1592, "input": "tokens", "text": "An extended visit by Secretary Kerry to the DRC , Uganda "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kerry"}, {"source": {"segment": "content_relaxed", "context": {"start": 1612, "end": 1613, "input": "tokens", "text": "An extended visit by Secretary Kerry to the DRC , Uganda "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kerry"}], "key": "kerry", "value": "Kerry"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1782, "end": 1783, "input": "tokens", "text": "once had one , or Kano would convey a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kano"}, {"source": {"segment": "content_relaxed", "context": {"start": 1803, "end": 1804, "input": "tokens", "text": "once had one , or Kano would convey a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kano"}], "key": "kano", "value": "Kano"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1969, "end": 1970, "input": "tokens", "text": "( Nor have Cuba , Myanmar or Iran . ) The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Myanmar"}, {"source": {"segment": "content_relaxed", "context": {"start": 1990, "end": 1991, "input": "tokens", "text": "( Nor have Cuba , Myanmar or Iran . ) The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Myanmar"}], "key": "myanmar", "value": "Myanmar"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2103, "end": 2107, "input": "tokens", "text": "and its demands that President Omar al - Bashir address the serious human rights "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Omar al - Bashir"}, {"source": {"segment": "content_relaxed", "context": {"start": 2124, "end": 2128, "input": "tokens", "text": "and its demands that President Omar al - Bashir address the serious human rights "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Omar al - Bashir"}], "key": "omar al - bashir", "value": "Omar al - Bashir"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2442, "end": 2444, "input": "tokens", "text": "year in office . \n Ambassador Carson was the U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ambassador Carson"}, {"source": {"segment": "content_relaxed", "context": {"start": 2463, "end": 2465, "input": "tokens", "text": "year in office . \n Ambassador Carson was the U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ambassador Carson"}], "key": "ambassador carson", "value": "Ambassador Carson"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 10, "end": 12, "input": "tokens", "text": "Africa : What Obama Still Owes Africa ( a Visit to Nigeria "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owes Africa"}, {"source": {"segment": "title", "context": {"start": 5, "end": 7, "input": "tokens", "text": "Africa : What Obama Still Owes Africa ( a Visit to Nigeria "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owes Africa"}], "key": "owes africa", "value": "Owes Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 18, "end": 20, "input": "tokens", "text": "a Visit to Nigeria for One Thing ) \n Photo : \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "One Thing"}], "key": "one thing", "value": "One Thing"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 13, "end": 18, "input": "tokens", "text": "a Visit to Nigeria for One Thing ) - allAfrica . com "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "One Thing ) - allAfrica"}], "key": "one thing ) - allafrica", "value": "One Thing ) - allAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "method": "rearrange_description"}], "key": "description", "value": " \n Photo: \n AllAfrica \n Former U.S. Assistant Secretary of State Johnnie Carson \n guest column \n By Johnnie Carson \n Washington, DC \u2014 \n After seven years in office, President Barack Obama has already engaged more broadly on Africa than any previous American president, but with one year remaining in the White House, there are still a few things he should do before he leaves, writes \n Johnnie Carson \n , the United States' top policy-maker on Africa in the first Obama administration. \n President Obama has significantly elevated and transformed America's engagement with Africa, traveling widely across the continent, championing the renewal of several old programs and launching a series of highly focused new initiatives that could help speed-up Africa's economic development. \n He has been particularly active in promoting economic and development issues. \n He fought successfully for the renewal and extension of the African Growth and Opportunity Act (AGOA), America's most important trade legislation with Africa; he hosted the first U.S.-Africa Leadership Summit, attended by 37 heads of state; and he has established several important new economic programs, including \"Power Africa\" - to expand significantly electrical access across the continent; \"Feed the Future\" - to increase household food production and to generate a green revolution throughout Africa, and \"Trade Africa\" - to expand substantially trade between Africa and the United States. \n Recognizing the growing role of the continent's next generation of young leaders, President Obama established YALI - the Young African Leaders Initiative, a program that will bring 500 young African entrepreneurs, professionals and community organizers to the U.S. each year for the next several years for five weeks of leadership, organization and management training. \n But what next? \n Despite his rather impressive list of accomplishments, here are ten things the president should do before he leaves office in January 2017: \n Visit Nigeria: \n President Obama has traveled to Africa five times during his presidency - but he has not visited Nigeria, the continent's economic, political, communications and petroleum giant, and its most important state. It is the continent's largest economy - almost twice the size of South Africa's and a third larger than that of Egypt. \n It is also the continent's most populous state, with 180 million people, its largest Muslim country, and its largest democracy. \n The president has visited every major country on the continent except Nigeria, and it would be a mistake for him to leave the White House without a stop in Lagos or Abuja. \n Some have suggested that security may be a concern because of Boko Haram, but if the president can travel safely to Nairobi, where al Shabaab has carried out high profile attacks in the center of the city, he should be able to travel safely to Abuja or Lagos. He is bound to make one more trip to Europe, and a stop in Nigeria - similar to his 2009 visit to Ghana - would not be a major diversion. \n Co-host a regional summit on democracy in west Africa: \n Strengthening democracy institutions, promoting good governance and supporting free and fair elections has been a major priority for the Obama administration in Africa. \n During his first official visit to the continent as president in July 2009, President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy and good governance and the need to create \"more strong institutions, not more strong men.\" With a growing number of African leaders attempting to extend their terms of office, democracy remains fragile across the continent. The president could give democracy in Africa a boost and reaffirm America's strong commitment to Africa's political progress by hosting a conference in West Africa with the democratically-elected leaders of Benin, Burkina Faso, Cape Verde, Liberia, Niger, Nigeria, Mali, Mauritania, Senegal, Sierra Leone and Togo. \n Support Nigeria's permanent membership in the G20: \n President Obama has said that he wants to ensure that Africa has a place at the table to participate in the deliberations concerning major global political and economic issues. One way to accomplish that is to expand or reorganize the G20 group of nations to include Nigeria as a permanent member of this important global organization. \n Nigeria is already more important than several of the current G20 members, notably Argentina and South Africa, and over the next two decades it will become one of the world's mega states, eclipsing several other G20 members in the size of its economy, population and regional influence. It would also be one of the G20's largest democracies. The administration should make the inclusion of Nigeria a priority over the next 12 months. \n Press for the passage of the Electrify Africa legislation: \n Power Africa is one of President Obama's most important signature initiatives. In the world's most energy deficient and starved continent, it is intended to increase Africa's power output by 30,000 megawatts over the next decade or two. \n But like a number of recent White House initiatives, Power Africa is not backed by any legislative mandate and could be easily brushed aside after the Obama administration leaves office. The program enjoys bi-partisan support in the Congress and the administration needs to work with congressional leaders to prioritize the passage of the Electrify Africa legislation. At the same time, the administration needs to create a senior level \"Power Africa czar\" to manage the program and consider moving interagency responsibility for oversight from USAID to a cabinet level department. \n Instruct USAID to establish a permanent democracy fund: \n If democracy promotion is an important priority, it should be funded adequately and on a long-term basis. Today that is not the case. Funding for democracy has declined sharply during Obama's second term despite the president's recent speeches in Nairobi and Addis Ababa, and at the 70th session of the United Nations General Assembly in New York. \n Dedicated and hard-to-reprogram funds should be allocated to strengthen African judiciaries and legislatures, to promote civil society groups and the media, to assist women's organizations and youth groups and to support domestic and international election monitoring. Funds should also be made available to assist local organizations to undertake parallel vote counts, to aid local election commissions and to prevent pre- and post-election violence. \n Invite Tanzania's newly elected President John Magufuli to the White House: \n Tanzania is the most populous state and the largest democracy in East Africa. It is also one of the largest recipients of U.S. development assistance and a participant in all of Washington's major economic initiatives. \n In late October, Tanzania held presidential and parliamentary elections.The elections on the mainland went well, but those on the island of Zanzibar were disputed. President John Pombe Magufuli, a reform-minded academic-turned-politician, was elected without dispute, making him Tanzania's fifth democratically-elected president in a row. Although the Zanzibar election remains unresolved, it is important to reach out to Tanzania's new president early in his tenure to continue to foster the strong relationship between Dar es Salaam and Washington. \n This is particularly important since President Magufuli does not have any major ties with the United States.Tanzania also has a critical role to play in East African peace-building issues, particularly in Burundi and the eastern Congo. Early political consultations with President Magufuli and his new foreign minister, Dr. Augustine Mahiga, could prove valuable in promoting stability in the Great Lakes region. \n Send Secretary of State John Kerry to Rwanda, Burundi, the Democratic Republic of Congo (DRC), Uganda and the Republic of the Congo: \n The Great Lakes Region of Central Africa is one of the most volatile and unstable regions in Africa, with daily political and ethnic violence in Burundi, and with the leaders of Rwanda, the DRC and the Congo threatening to extend themselves in office in violation of their constitutions. \n Although time is running out, there is still an opportunity to prevent further democratic backsliding and the serious instability and violence that will almost certainly be unleashed - as we are already seeing in Burundi. High level engagement with the leaders in the region is required. \n An extended visit by Secretary Kerry to the DRC, Uganda, Rwanda and Burundi would be a strong signal of Washington's deep concern and interest in the region's negative political and security trajectory. Without serious engagement with the leaders on the ground, there will be no meaningful progress. \n Open a U.S. consulate in northern Nigeria and a full embassy in Mogadishu: \n The establishment of a consulate in northern Nigeria is long overdue. More than half of Nigeria's 180 million people live in the northern part of the country, an area of serious political and security concern. It is also the largest Muslim region in Africa and the largest Muslim region in the world where there is no full-time U.S. diplomatic presence. \n A U.S. diplomatic mission would advance long-term political, economic and security interests in the region and help Nigeria to deal with the economic, social and security challenges it faces there. A consulate in Kaduna, which once had one, or Kano would convey a strong signal to the Muslim community that Washington genuinely cares about the people in the region. \n Once the global poster child of a failed state, Somalia has made significant progress over the past seven years. In recognition of the progress, the U.S. re-established formal diplomatic relations with the Somali government in Mogadishu in January 2013. \n Before he leaves office, President Obama should take one more step. He should reaffirm Washington's commitment to Somalia and recognize the country's continuing progress by appointing a Senate-approved ambassador and opening a small, secure diplomatic embassy compound in downtown Mogadishu. \n Elevate U.S. diplomatic relations with Sudan: \n Relations between Washington and Khartoum have been prickly and frequently difficult for over two decades and the U.S. has not had a fully accredited, Senate-approved ambassador in Sudan since 1997. \n The Khartoum government has not been a good international actor. (Nor have Cuba, Myanmar or Iran.) The regime in Sudan has carried out mass atrocities in Darfur, prevented UN organizations from delivering food aid and humanitarian assistance to those in need and meddled in the affairs of several of its neighbors. \n But U.S.-imposed comprehensive sanctions on Khartoum have not isolated the country nor weakened its government. The U.S. should review its current policies toward Khartoum, and consider elevating its diplomatic relationship to full ambassadorial status in order to expand America's dialogue and probe for new openings to resolve some of the country's domestic and regional issues. The U.S. can do this while maintaining its sanctions regime on the government and its demands that President Omar al-Bashir address the serious human rights charges against him. \n Provide a status report on the results of the U.S.-Africa Leadership Summit: \n The U.S. Africa Leadership Summit has been one of the high points in the Obama administration's engagements in Africa. \n Leaders from 50 different countries participated in this first-of-a-kind gathering in Washington. A number of new programs were announced and a major business conference associated with the summit brought dozens of senior American business leaders into direct contact - many for the very first time - with African heads of state and prominent business leaders from the continent. \n The administration has never released a comprehensive report on the summit or a one-year progress report on the implementation of summit agreements. The issuance of some type of status report would be a useful vehicle for identifying summit objectives and initiatives as well as tracking the progress of the administration's efforts. The administration should do everything it can to sustain the goodwill and policy initiatives that emerged from the summit to help ensure that it does not become a one-off event. \n The administration should be applauded for its continuing efforts to promote greater American trade and commerce with Africa. The president has already announced that he plans to host another U.S.-Africa Business Summit similar to the day-long event his administration hosted during the 2014 Leadership Summit. The Business Summit is important, but it should not be the only thing on President Obama's Africa agenda for 2016. He has time to do more, and he should. Twelve months is a long time in the life of an administration and his foreign policy team should be building a more robust African agenda for his last year in office. \n Ambassador Carson was the U.S. \n Assistant Secretary of State for African Affairs \n from 2009 to 2012. He is currently a Senior Advisor at the \n United States Institute of Peace. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 45, "end": 46, "input": "tokens", "text": "already engaged more broadly on Africa than any previous American president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 90, "end": 91, "input": "tokens", "text": "top policy - maker on Africa in the first Obama administration "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 110, "end": 111, "input": "tokens", "text": "America ' s engagement with Africa , traveling widely across the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 140, "end": 141, "input": "tokens", "text": "could help speed - up Africa ' s economic development . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 187, "end": 188, "input": "tokens", "text": "most important trade legislation with Africa ; he hosted the first "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 252, "end": 253, "input": "tokens", "text": "generate a green revolution throughout Africa , and \" Trade Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 265, "end": 266, "input": "tokens", "text": "to expand substantially trade between Africa and the United States . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 376, "end": 377, "input": "tokens", "text": "President Obama has traveled to Africa five times during his presidency "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 594, "end": 595, "input": "tokens", "text": "summit on democracy in west Africa : \n Strengthening democracy institutions "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 620, "end": 621, "input": "tokens", "text": "for the Obama administration in Africa . \n During his first "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 697, "end": 698, "input": "tokens", "text": "president could give democracy in Africa a boost and reaffirm America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 708, "end": 709, "input": "tokens", "text": "' s strong commitment to Africa ' s political progress by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 774, "end": 775, "input": "tokens", "text": "he wants to ensure that Africa has a place at the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 949, "end": 950, "input": "tokens", "text": "it is intended to increase Africa ' s power output by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 1709, "end": 1710, "input": "tokens", "text": "the largest Muslim region in Africa and the largest Muslim region "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 2159, "end": 2160, "input": "tokens", "text": "administration ' s engagements in Africa . \n Leaders from 50 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 2337, "end": 2338, "input": "tokens", "text": "American trade and commerce with Africa . The president has already "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 2393, "end": 2394, "input": "tokens", "text": "on President Obama ' s Africa agenda for 2016 . He "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 4 January 2016 \n Africa : What Obama Still Owes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 66, "end": 67, "input": "tokens", "text": "already engaged more broadly on Africa than any previous American president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 111, "end": 112, "input": "tokens", "text": "top policy - maker on Africa in the first Obama administration "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 131, "end": 132, "input": "tokens", "text": "America ' s engagement with Africa , traveling widely across the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 161, "end": 162, "input": "tokens", "text": "could help speed - up Africa ' s economic development . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 208, "end": 209, "input": "tokens", "text": "most important trade legislation with Africa ; he hosted the first "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 273, "end": 274, "input": "tokens", "text": "generate a green revolution throughout Africa , and \" Trade Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 286, "end": 287, "input": "tokens", "text": "to expand substantially trade between Africa and the United States . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 397, "end": 398, "input": "tokens", "text": "President Obama has traveled to Africa five times during his presidency "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 615, "end": 616, "input": "tokens", "text": "summit on democracy in west Africa : \n Strengthening democracy institutions "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 641, "end": 642, "input": "tokens", "text": "for the Obama administration in Africa . \n During his first "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 718, "end": 719, "input": "tokens", "text": "president could give democracy in Africa a boost and reaffirm America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 729, "end": 730, "input": "tokens", "text": "' s strong commitment to Africa ' s political progress by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 795, "end": 796, "input": "tokens", "text": "he wants to ensure that Africa has a place at the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 970, "end": 971, "input": "tokens", "text": "it is intended to increase Africa ' s power output by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1730, "end": 1731, "input": "tokens", "text": "the largest Muslim region in Africa and the largest Muslim region "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 2180, "end": 2181, "input": "tokens", "text": "administration ' s engagements in Africa . \n Leaders from 50 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 2358, "end": 2359, "input": "tokens", "text": "American trade and commerce with Africa . The president has already "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 2414, "end": 2415, "input": "tokens", "text": "on President Obama ' s Africa agenda for 2016 . He "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Africa : What Obama Still Owes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 560, "end": 561, "input": "tokens", "text": "make one more trip to Europe , and a stop in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Europe"}, {"source": {"segment": "content_relaxed", "context": {"start": 581, "end": 582, "input": "tokens", "text": "make one more trip to Europe , and a stop in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Europe"}], "key": "europe", "value": "Europe"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 2618, "end": 2619, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "method": "rearrange_title"}], "key": "title", "value": " Africa: What Obama Still Owes Africa (a Visit to Nigeria for One Thing) - allAfrica.com "}], "money": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1679, "end": 1682, "input": "tokens", "text": "than half of Nigeria ' s 180 million people live in the northern "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "s 180 million"}, {"source": {"segment": "content_relaxed", "context": {"start": 1700, "end": 1703, "input": "tokens", "text": "than half of Nigeria ' s 180 million people live in the northern "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "s 180 million"}], "key": "s 180 million", "value": "s 180 million"}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 14, "end": 15, "input": "tokens", "text": "S . Assistant Secretary of State Johnnie Carson \n guest column "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_strict", "context": {"start": 1457, "end": 1458, "input": "tokens", "text": ". \n Send Secretary of State John Kerry to Rwanda , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_strict", "context": {"start": 2454, "end": 2455, "input": "tokens", "text": ". \n Assistant Secretary of State for African Affairs \n from "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 35, "end": 36, "input": "tokens", "text": "S . Assistant Secretary of State Johnnie Carson \n guest column "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 1478, "end": 1479, "input": "tokens", "text": ". \n Send Secretary of State John Kerry to Rwanda , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 2475, "end": 2476, "input": "tokens", "text": ". \n Assistant Secretary of State for African Affairs \n from "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}], "key": "state", "value": "State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 27, "end": 29, "input": "tokens", "text": "Johnnie Carson \n Washington , DC \u2014 \n After seven years in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DC \u2014"}, {"source": {"segment": "content_relaxed", "context": {"start": 48, "end": 50, "input": "tokens", "text": "Johnnie Carson \n Washington , DC \u2014 \n After seven years in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DC \u2014"}], "key": "dc \u2014", "value": "DC \u2014"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 58, "end": 61, "input": "tokens", "text": "with one year remaining in the White House , there are still a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the White House"}, {"source": {"segment": "content_strict", "context": {"start": 1233, "end": 1236, "input": "tokens", "text": "elected President John Magufuli to the White House : \n Tanzania is the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the White House"}, {"source": {"segment": "content_relaxed", "context": {"start": 79, "end": 82, "input": "tokens", "text": "with one year remaining in the White House , there are still a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the White House"}, {"source": {"segment": "content_relaxed", "context": {"start": 1254, "end": 1257, "input": "tokens", "text": "elected President John Magufuli to the White House : \n Tanzania is the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the White House"}], "key": "the white house", "value": "the White House"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 169, "end": 175, "input": "tokens", "text": "the renewal and extension of the African Growth and Opportunity Act ( AGOA ) , America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the African Growth and Opportunity Act"}, {"source": {"segment": "content_relaxed", "context": {"start": 190, "end": 196, "input": "tokens", "text": "the renewal and extension of the African Growth and Opportunity Act ( AGOA ) , America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the African Growth and Opportunity Act"}], "key": "the african growth and opportunity act", "value": "the African Growth and Opportunity Act"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 176, "end": 177, "input": "tokens", "text": "Growth and Opportunity Act ( AGOA ) , America ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AGOA"}, {"source": {"segment": "content_relaxed", "context": {"start": 197, "end": 198, "input": "tokens", "text": "Growth and Opportunity Act ( AGOA ) , America ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AGOA"}], "key": "agoa", "value": "AGOA"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 221, "end": 223, "input": "tokens", "text": "economic programs , including \" Power Africa \" - to expand significantly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_strict", "context": {"start": 918, "end": 920, "input": "tokens", "text": "Electrify Africa legislation : \n Power Africa is one of President Obama "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_strict", "context": {"start": 1042, "end": 1044, "input": "tokens", "text": "create a senior level \" Power Africa czar \" to manage the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 242, "end": 244, "input": "tokens", "text": "economic programs , including \" Power Africa \" - to expand significantly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 939, "end": 941, "input": "tokens", "text": "Electrify Africa legislation : \n Power Africa is one of President Obama "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1063, "end": 1065, "input": "tokens", "text": "create a senior level \" Power Africa czar \" to manage the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}], "key": "power africa", "value": "Power Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 256, "end": 258, "input": "tokens", "text": "throughout Africa , and \" Trade Africa \" - to expand substantially "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trade Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 277, "end": 279, "input": "tokens", "text": "throughout Africa , and \" Trade Africa \" - to expand substantially "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trade Africa"}], "key": "trade africa", "value": "Trade Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 290, "end": 291, "input": "tokens", "text": "leaders , President Obama established YALI - the Young African Leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "YALI"}, {"source": {"segment": "content_relaxed", "context": {"start": 311, "end": 312, "input": "tokens", "text": "leaders , President Obama established YALI - the Young African Leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "YALI"}], "key": "yali", "value": "YALI"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 292, "end": 297, "input": "tokens", "text": "President Obama established YALI - the Young African Leaders Initiative , a program that will "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Young African Leaders Initiative"}, {"source": {"segment": "content_relaxed", "context": {"start": 313, "end": 318, "input": "tokens", "text": "President Obama established YALI - the Young African Leaders Initiative , a program that will "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Young African Leaders Initiative"}], "key": "the young african leaders initiative", "value": "the Young African Leaders Initiative"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 496, "end": 497, "input": "tokens", "text": "a stop in Lagos or Abuja . \n Some have suggested "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 517, "end": 518, "input": "tokens", "text": "a stop in Lagos or Abuja . \n Some have suggested "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 510, "end": 512, "input": "tokens", "text": "be a concern because of Boko Haram , but if the president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 531, "end": 533, "input": "tokens", "text": "be a concern because of Boko Haram , but if the president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 642, "end": 645, "input": "tokens", "text": "President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Ghanaian Parliament"}, {"source": {"segment": "content_relaxed", "context": {"start": 663, "end": 666, "input": "tokens", "text": "President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Ghanaian Parliament"}], "key": "the ghanaian parliament", "value": "the Ghanaian Parliament"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 747, "end": 749, "input": "tokens", "text": ", Mauritania , Senegal , Sierra Leone and Togo . \n Support "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sierra Leone"}, {"source": {"segment": "content_relaxed", "context": {"start": 768, "end": 770, "input": "tokens", "text": ", Mauritania , Senegal , Sierra Leone and Togo . \n Support "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sierra Leone"}], "key": "sierra leone", "value": "Sierra Leone"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 863, "end": 864, "input": "tokens", "text": "states , eclipsing several other G20 members in the size of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "G20"}, {"source": {"segment": "content_strict", "context": {"start": 884, "end": 885, "input": "tokens", "text": "also be one of the G20 ' s largest democracies . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "G20"}, {"source": {"segment": "content_relaxed", "context": {"start": 884, "end": 885, "input": "tokens", "text": "states , eclipsing several other G20 members in the size of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "G20"}, {"source": {"segment": "content_relaxed", "context": {"start": 905, "end": 906, "input": "tokens", "text": "also be one of the G20 ' s largest democracies . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "G20"}], "key": "g20", "value": "G20"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 912, "end": 915, "input": "tokens", "text": "Press for the passage of the Electrify Africa legislation : \n Power Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electrify Africa"}, {"source": {"segment": "content_strict", "context": {"start": 1023, "end": 1026, "input": "tokens", "text": "to prioritize the passage of the Electrify Africa legislation . At the same "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electrify Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 933, "end": 936, "input": "tokens", "text": "Press for the passage of the Electrify Africa legislation : \n Power Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electrify Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1044, "end": 1047, "input": "tokens", "text": "to prioritize the passage of the Electrify Africa legislation . At the same "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electrify Africa"}], "key": "the electrify africa", "value": "the Electrify Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 973, "end": 975, "input": "tokens", "text": "like a number of recent White House initiatives , Power Africa is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "White House"}, {"source": {"segment": "content_relaxed", "context": {"start": 994, "end": 996, "input": "tokens", "text": "like a number of recent White House initiatives , Power Africa is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "White House"}], "key": "white house", "value": "White House"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 994, "end": 995, "input": "tokens", "text": "easily brushed aside after the Obama administration leaves office . The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 2153, "end": 2154, "input": "tokens", "text": "the high points in the Obama administration ' s engagements in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 1015, "end": 1016, "input": "tokens", "text": "easily brushed aside after the Obama administration leaves office . The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 2174, "end": 2175, "input": "tokens", "text": "the high points in the Obama administration ' s engagements in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}], "key": "obama", "value": "Obama"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1008, "end": 1009, "input": "tokens", "text": "- partisan support in the Congress and the administration needs to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congress"}, {"source": {"segment": "content_relaxed", "context": {"start": 1029, "end": 1030, "input": "tokens", "text": "- partisan support in the Congress and the administration needs to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congress"}], "key": "congress", "value": "Congress"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1058, "end": 1059, "input": "tokens", "text": "interagency responsibility for oversight from USAID to a cabinet level department "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "USAID"}, {"source": {"segment": "content_relaxed", "context": {"start": 1079, "end": 1080, "input": "tokens", "text": "interagency responsibility for oversight from USAID to a cabinet level department "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "USAID"}], "key": "usaid", "value": "USAID"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1135, "end": 1140, "input": "tokens", "text": "at the 70th session of the United Nations General Assembly in New York . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Nations General Assembly"}, {"source": {"segment": "content_relaxed", "context": {"start": 1156, "end": 1161, "input": "tokens", "text": "at the 70th session of the United Nations General Assembly in New York . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Nations General Assembly"}], "key": "the united nations general assembly", "value": "the United Nations General Assembly"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1375, "end": 1378, "input": "tokens", "text": "foster the strong relationship between Dar es Salaam and Washington . \n This "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dar es Salaam"}, {"source": {"segment": "content_relaxed", "context": {"start": 1396, "end": 1399, "input": "tokens", "text": "foster the strong relationship between Dar es Salaam and Washington . \n This "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dar es Salaam"}], "key": "dar es salaam", "value": "Dar es Salaam"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1465, "end": 1469, "input": "tokens", "text": "to Rwanda , Burundi , the Democratic Republic of Congo ( DRC ) , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Democratic Republic of"}, {"source": {"segment": "content_relaxed", "context": {"start": 1486, "end": 1490, "input": "tokens", "text": "to Rwanda , Burundi , the Democratic Republic of Congo ( DRC ) , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Democratic Republic of"}], "key": "the democratic republic of", "value": "the Democratic Republic of"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1471, "end": 1472, "input": "tokens", "text": "Democratic Republic of Congo ( DRC ) , Uganda and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_strict", "context": {"start": 1519, "end": 1520, "input": "tokens", "text": "leaders of Rwanda , the DRC and the Congo threatening to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_strict", "context": {"start": 1594, "end": 1595, "input": "tokens", "text": "by Secretary Kerry to the DRC , Uganda , Rwanda and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_relaxed", "context": {"start": 1492, "end": 1493, "input": "tokens", "text": "Democratic Republic of Congo ( DRC ) , Uganda and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_relaxed", "context": {"start": 1540, "end": 1541, "input": "tokens", "text": "leaders of Rwanda , the DRC and the Congo threatening to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_relaxed", "context": {"start": 1615, "end": 1616, "input": "tokens", "text": "by Secretary Kerry to the DRC , Uganda , Rwanda and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}], "key": "drc", "value": "DRC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1483, "end": 1488, "input": "tokens", "text": "of the Congo : \n The Great Lakes Region of Central Africa is one of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Great Lakes Region of"}, {"source": {"segment": "content_relaxed", "context": {"start": 1504, "end": 1509, "input": "tokens", "text": "of the Congo : \n The Great Lakes Region of Central Africa is one of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Great Lakes Region of"}], "key": "the great lakes region of", "value": "The Great Lakes Region of"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1645, "end": 1646, "input": "tokens", "text": "progress . \n Open a U . S . consulate in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}, {"source": {"segment": "content_strict", "context": {"start": 2350, "end": 2351, "input": "tokens", "text": "he plans to host another U . S . - Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}, {"source": {"segment": "content_relaxed", "context": {"start": 1666, "end": 1667, "input": "tokens", "text": "progress . \n Open a U . S . consulate in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}, {"source": {"segment": "content_relaxed", "context": {"start": 2371, "end": 2372, "input": "tokens", "text": "he plans to host another U . S . - Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}], "key": "u", "value": "U"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1886, "end": 1887, "input": "tokens", "text": "continuing progress by appointing a Senate - approved ambassador and opening "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senate"}, {"source": {"segment": "content_strict", "context": {"start": 1943, "end": 1944, "input": "tokens", "text": "had a fully accredited , Senate - approved ambassador in Sudan "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senate"}, {"source": {"segment": "content_relaxed", "context": {"start": 1907, "end": 1908, "input": "tokens", "text": "continuing progress by appointing a Senate - approved ambassador and opening "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senate"}, {"source": {"segment": "content_relaxed", "context": {"start": 1964, "end": 1965, "input": "tokens", "text": "had a fully accredited , Senate - approved ambassador in Sudan "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senate"}], "key": "senate", "value": "Senate"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1987, "end": 1988, "input": "tokens", "text": "atrocities in Darfur , prevented UN organizations from delivering food aid "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "UN"}, {"source": {"segment": "content_relaxed", "context": {"start": 2008, "end": 2009, "input": "tokens", "text": "atrocities in Darfur , prevented UN organizations from delivering food aid "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "UN"}], "key": "un", "value": "UN"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2141, "end": 2144, "input": "tokens", "text": "The U . S . Africa Leadership Summit has been one of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa Leadership Summit"}, {"source": {"segment": "content_relaxed", "context": {"start": 2162, "end": 2165, "input": "tokens", "text": "The U . S . Africa Leadership Summit has been one of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa Leadership Summit"}], "key": "africa leadership summit", "value": "Africa Leadership Summit"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2374, "end": 2377, "input": "tokens", "text": "the 2014 Leadership Summit . The Business Summit is important , but it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Business Summit"}, {"source": {"segment": "content_relaxed", "context": {"start": 2395, "end": 2398, "input": "tokens", "text": "the 2014 Leadership Summit . The Business Summit is important , but it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Business Summit"}], "key": "the business summit", "value": "The Business Summit"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 2512, "end": 2513, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 2514, "end": 2517, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 25, "end": 26, "input": "tokens", "text": "\n By Johnnie Carson \n Washington , DC \u2014 \n After "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1273, "end": 1274, "input": "tokens", "text": "a participant in all of Washington ' s major economic initiatives "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1379, "end": 1380, "input": "tokens", "text": "between Dar es Salaam and Washington . \n This is particularly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1607, "end": 1608, "input": "tokens", "text": "be a strong signal of Washington ' s deep concern and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1793, "end": 1794, "input": "tokens", "text": "to the Muslim community that Washington genuinely cares about the people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1869, "end": 1870, "input": "tokens", "text": "step . He should reaffirm Washington ' s commitment to Somalia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1917, "end": 1918, "input": "tokens", "text": "Sudan : \n Relations between Washington and Khartoum have been prickly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 2179, "end": 2180, "input": "tokens", "text": "a - kind gathering in Washington . A number of new "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 46, "end": 47, "input": "tokens", "text": "\n By Johnnie Carson \n Washington , DC \u2014 \n After "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1294, "end": 1295, "input": "tokens", "text": "a participant in all of Washington ' s major economic initiatives "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1400, "end": 1401, "input": "tokens", "text": "between Dar es Salaam and Washington . \n This is particularly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1628, "end": 1629, "input": "tokens", "text": "be a strong signal of Washington ' s deep concern and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1814, "end": 1815, "input": "tokens", "text": "to the Muslim community that Washington genuinely cares about the people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1890, "end": 1891, "input": "tokens", "text": "step . He should reaffirm Washington ' s commitment to Somalia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1938, "end": 1939, "input": "tokens", "text": "Sudan : \n Relations between Washington and Khartoum have been prickly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 2200, "end": 2201, "input": "tokens", "text": "a - kind gathering in Washington . A number of new "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}], "key": "washington", "value": "Washington"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 81, "end": 84, "input": "tokens", "text": "\n Johnnie Carson \n , the United States ' top policy - maker "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_strict", "context": {"start": 267, "end": 270, "input": "tokens", "text": "substantially trade between Africa and the United States . \n Recognizing the growing "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_strict", "context": {"start": 1396, "end": 1399, "input": "tokens", "text": "have any major ties with the United States . Tanzania also has a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 102, "end": 105, "input": "tokens", "text": "\n Johnnie Carson \n , the United States ' top policy - maker "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 288, "end": 291, "input": "tokens", "text": "substantially trade between Africa and the United States . \n Recognizing the growing "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 1417, "end": 1420, "input": "tokens", "text": "have any major ties with the United States . Tanzania also has a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}], "key": "the united states", "value": "the United States"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 105, "end": 106, "input": "tokens", "text": "has significantly elevated and transformed America ' s engagement with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_strict", "context": {"start": 179, "end": 180, "input": "tokens", "text": "Act ( AGOA ) , America ' s most important trade "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_strict", "context": {"start": 702, "end": 703, "input": "tokens", "text": "Africa a boost and reaffirm America ' s strong commitment to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_strict", "context": {"start": 2060, "end": 2061, "input": "tokens", "text": "status in order to expand America ' s dialogue and probe "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_relaxed", "context": {"start": 126, "end": 127, "input": "tokens", "text": "has significantly elevated and transformed America ' s engagement with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_relaxed", "context": {"start": 200, "end": 201, "input": "tokens", "text": "Act ( AGOA ) , America ' s most important trade "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_relaxed", "context": {"start": 723, "end": 724, "input": "tokens", "text": "Africa a boost and reaffirm America ' s strong commitment to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_relaxed", "context": {"start": 2081, "end": 2082, "input": "tokens", "text": "status in order to expand America ' s dialogue and probe "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}], "key": "america", "value": "America"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 368, "end": 369, "input": "tokens", "text": "January 2017 : \n Visit Nigeria : \n President Obama has "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 388, "end": 389, "input": "tokens", "text": "but he has not visited Nigeria , the continent ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 475, "end": 476, "input": "tokens", "text": "country on the continent except Nigeria , and it would be "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 566, "end": 567, "input": "tokens", "text": ", and a stop in Nigeria - similar to his 2009 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 739, "end": 740, "input": "tokens", "text": ", Liberia , Niger , Nigeria , Mali , Mauritania , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 811, "end": 812, "input": "tokens", "text": "group of nations to include Nigeria as a permanent member of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 823, "end": 824, "input": "tokens", "text": "important global organization . \n Nigeria is already more important than "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 897, "end": 898, "input": "tokens", "text": "should make the inclusion of Nigeria a priority over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 1652, "end": 1653, "input": "tokens", "text": "S . consulate in northern Nigeria and a full embassy in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 1668, "end": 1669, "input": "tokens", "text": "of a consulate in northern Nigeria is long overdue . More "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 1677, "end": 1678, "input": "tokens", "text": ". More than half of Nigeria ' s 180 million people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 1756, "end": 1757, "input": "tokens", "text": "in the region and help Nigeria to deal with the economic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 16, "end": 17, "input": "tokens", "text": "Africa ( a Visit to Nigeria for One Thing ) \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 389, "end": 390, "input": "tokens", "text": "January 2017 : \n Visit Nigeria : \n President Obama has "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 409, "end": 410, "input": "tokens", "text": "but he has not visited Nigeria , the continent ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 496, "end": 497, "input": "tokens", "text": "country on the continent except Nigeria , and it would be "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 587, "end": 588, "input": "tokens", "text": ", and a stop in Nigeria - similar to his 2009 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 760, "end": 761, "input": "tokens", "text": ", Liberia , Niger , Nigeria , Mali , Mauritania , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 832, "end": 833, "input": "tokens", "text": "group of nations to include Nigeria as a permanent member of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 844, "end": 845, "input": "tokens", "text": "important global organization . \n Nigeria is already more important than "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 918, "end": 919, "input": "tokens", "text": "should make the inclusion of Nigeria a priority over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 1673, "end": 1674, "input": "tokens", "text": "S . consulate in northern Nigeria and a full embassy in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 1689, "end": 1690, "input": "tokens", "text": "of a consulate in northern Nigeria is long overdue . More "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 1698, "end": 1699, "input": "tokens", "text": ". More than half of Nigeria ' s 180 million people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 1777, "end": 1778, "input": "tokens", "text": "in the region and help Nigeria to deal with the economic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 11, "end": 12, "input": "tokens", "text": "Africa ( a Visit to Nigeria for One Thing ) - "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 423, "end": 425, "input": "tokens", "text": "almost twice the size of South Africa ' s and a third "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Africa"}, {"source": {"segment": "content_strict", "context": {"start": 839, "end": 841, "input": "tokens", "text": "members , notably Argentina and South Africa , and over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 444, "end": 446, "input": "tokens", "text": "almost twice the size of South Africa ' s and a third "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 860, "end": 862, "input": "tokens", "text": "members , notably Argentina and South Africa , and over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Africa"}], "key": "south africa", "value": "South Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 434, "end": 435, "input": "tokens", "text": "third larger than that of Egypt . \n It is also "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}, {"source": {"segment": "content_relaxed", "context": {"start": 455, "end": 456, "input": "tokens", "text": "third larger than that of Egypt . \n It is also "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}], "key": "egypt", "value": "Egypt"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 494, "end": 495, "input": "tokens", "text": "House without a stop in Lagos or Abuja . \n Some "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_strict", "context": {"start": 549, "end": 550, "input": "tokens", "text": "travel safely to Abuja or Lagos . He is bound to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 515, "end": 516, "input": "tokens", "text": "House without a stop in Lagos or Abuja . \n Some "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 570, "end": 571, "input": "tokens", "text": "travel safely to Abuja or Lagos . He is bound to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}], "key": "lagos", "value": "Lagos"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 521, "end": 522, "input": "tokens", "text": "president can travel safely to Nairobi , where al Shabaab has "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nairobi"}, {"source": {"segment": "content_strict", "context": {"start": 1124, "end": 1125, "input": "tokens", "text": "' s recent speeches in Nairobi and Addis Ababa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nairobi"}, {"source": {"segment": "content_relaxed", "context": {"start": 542, "end": 543, "input": "tokens", "text": "president can travel safely to Nairobi , where al Shabaab has "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nairobi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1145, "end": 1146, "input": "tokens", "text": "' s recent speeches in Nairobi and Addis Ababa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nairobi"}], "key": "nairobi", "value": "Nairobi"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 547, "end": 548, "input": "tokens", "text": "able to travel safely to Abuja or Lagos . He is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 568, "end": 569, "input": "tokens", "text": "able to travel safely to Abuja or Lagos . He is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 574, "end": 575, "input": "tokens", "text": "to his 2009 visit to Ghana - would not be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ghana"}, {"source": {"segment": "content_relaxed", "context": {"start": 595, "end": 596, "input": "tokens", "text": "to his 2009 visit to Ghana - would not be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ghana"}], "key": "ghana", "value": "Ghana"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 617, "end": 618, "input": "tokens", "text": "a major priority for the Obama administration in Africa . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 638, "end": 639, "input": "tokens", "text": "a major priority for the Obama administration in Africa . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}], "key": "obama", "value": "Obama"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 718, "end": 720, "input": "tokens", "text": "by hosting a conference in West Africa with the democratically - elected "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "West Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 739, "end": 741, "input": "tokens", "text": "by hosting a conference in West Africa with the democratically - elected "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "West Africa"}], "key": "west africa", "value": "West Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 727, "end": 728, "input": "tokens", "text": "democratically - elected leaders of Benin , Burkina Faso , Cape "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Benin"}, {"source": {"segment": "content_relaxed", "context": {"start": 748, "end": 749, "input": "tokens", "text": "democratically - elected leaders of Benin , Burkina Faso , Cape "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Benin"}], "key": "benin", "value": "Benin"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 729, "end": 731, "input": "tokens", "text": "elected leaders of Benin , Burkina Faso , Cape Verde , Liberia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}, {"source": {"segment": "content_relaxed", "context": {"start": 750, "end": 752, "input": "tokens", "text": "elected leaders of Benin , Burkina Faso , Cape Verde , Liberia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}], "key": "burkina faso", "value": "Burkina Faso"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 732, "end": 734, "input": "tokens", "text": "Benin , Burkina Faso , Cape Verde , Liberia , Niger , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cape Verde"}, {"source": {"segment": "content_relaxed", "context": {"start": 753, "end": 755, "input": "tokens", "text": "Benin , Burkina Faso , Cape Verde , Liberia , Niger , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cape Verde"}], "key": "cape verde", "value": "Cape Verde"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 735, "end": 736, "input": "tokens", "text": "Faso , Cape Verde , Liberia , Niger , Nigeria , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Liberia"}, {"source": {"segment": "content_relaxed", "context": {"start": 756, "end": 757, "input": "tokens", "text": "Faso , Cape Verde , Liberia , Niger , Nigeria , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Liberia"}], "key": "liberia", "value": "Liberia"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 737, "end": 738, "input": "tokens", "text": "Cape Verde , Liberia , Niger , Nigeria , Mali , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Niger"}, {"source": {"segment": "content_relaxed", "context": {"start": 758, "end": 759, "input": "tokens", "text": "Cape Verde , Liberia , Niger , Nigeria , Mali , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Niger"}], "key": "niger", "value": "Niger"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 741, "end": 742, "input": "tokens", "text": ", Niger , Nigeria , Mali , Mauritania , Senegal , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mali"}, {"source": {"segment": "content_relaxed", "context": {"start": 762, "end": 763, "input": "tokens", "text": ", Niger , Nigeria , Mali , Mauritania , Senegal , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mali"}], "key": "mali", "value": "Mali"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 743, "end": 744, "input": "tokens", "text": ", Nigeria , Mali , Mauritania , Senegal , Sierra Leone "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mauritania"}, {"source": {"segment": "content_relaxed", "context": {"start": 764, "end": 765, "input": "tokens", "text": ", Nigeria , Mali , Mauritania , Senegal , Sierra Leone "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mauritania"}], "key": "mauritania", "value": "Mauritania"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 745, "end": 746, "input": "tokens", "text": ", Mali , Mauritania , Senegal , Sierra Leone and Togo "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senegal"}, {"source": {"segment": "content_relaxed", "context": {"start": 766, "end": 767, "input": "tokens", "text": ", Mali , Mauritania , Senegal , Sierra Leone and Togo "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senegal"}], "key": "senegal", "value": "Senegal"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 750, "end": 751, "input": "tokens", "text": "Senegal , Sierra Leone and Togo . \n Support Nigeria ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Togo"}, {"source": {"segment": "content_relaxed", "context": {"start": 771, "end": 772, "input": "tokens", "text": "Senegal , Sierra Leone and Togo . \n Support Nigeria ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Togo"}], "key": "togo", "value": "Togo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 753, "end": 755, "input": "tokens", "text": "Leone and Togo . \n Support Nigeria ' s permanent membership in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Support Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 774, "end": 776, "input": "tokens", "text": "Leone and Togo . \n Support Nigeria ' s permanent membership in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Support Nigeria"}], "key": "support nigeria", "value": "Support Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 837, "end": 838, "input": "tokens", "text": "current G20 members , notably Argentina and South Africa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Argentina"}, {"source": {"segment": "content_relaxed", "context": {"start": 858, "end": 859, "input": "tokens", "text": "current G20 members , notably Argentina and South Africa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Argentina"}], "key": "argentina", "value": "Argentina"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1126, "end": 1128, "input": "tokens", "text": "recent speeches in Nairobi and Addis Ababa , and at the 70th "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Addis Ababa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1147, "end": 1149, "input": "tokens", "text": "recent speeches in Nairobi and Addis Ababa , and at the 70th "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Addis Ababa"}], "key": "addis ababa", "value": "Addis Ababa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1238, "end": 1239, "input": "tokens", "text": "the White House : \n Tanzania is the most populous state "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 1285, "end": 1286, "input": "tokens", "text": "\n In late October , Tanzania held presidential and parliamentary elections "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 1332, "end": 1333, "input": "tokens", "text": "without dispute , making him Tanzania ' s fifth democratically - "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 1358, "end": 1359, "input": "tokens", "text": "important to reach out to Tanzania ' s new president early "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 1400, "end": 1401, "input": "tokens", "text": "with the United States . Tanzania also has a critical role "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1259, "end": 1260, "input": "tokens", "text": "the White House : \n Tanzania is the most populous state "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1306, "end": 1307, "input": "tokens", "text": "\n In late October , Tanzania held presidential and parliamentary elections "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1353, "end": 1354, "input": "tokens", "text": "without dispute , making him Tanzania ' s fifth democratically - "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1379, "end": 1380, "input": "tokens", "text": "important to reach out to Tanzania ' s new president early "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1421, "end": 1422, "input": "tokens", "text": "with the United States . Tanzania also has a critical role "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}], "key": "tanzania", "value": "Tanzania"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1249, "end": 1251, "input": "tokens", "text": "and the largest democracy in East Africa . It is also one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1270, "end": 1272, "input": "tokens", "text": "and the largest democracy in East Africa . It is also one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East Africa"}], "key": "east africa", "value": "East Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1306, "end": 1307, "input": "tokens", "text": "those on the island of Zanzibar were disputed . President John "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zanzibar"}, {"source": {"segment": "content_relaxed", "context": {"start": 1327, "end": 1328, "input": "tokens", "text": "those on the island of Zanzibar were disputed . President John "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zanzibar"}], "key": "zanzibar", "value": "Zanzibar"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1418, "end": 1419, "input": "tokens", "text": "building issues , particularly in Burundi and the eastern Congo . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 1463, "end": 1464, "input": "tokens", "text": "John Kerry to Rwanda , Burundi , the Democratic Republic of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 1509, "end": 1510, "input": "tokens", "text": "political and ethnic violence in Burundi , and with the leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 1571, "end": 1572, "input": "tokens", "text": "we are already seeing in Burundi . High level engagement with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 1600, "end": 1601, "input": "tokens", "text": ", Uganda , Rwanda and Burundi would be a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1439, "end": 1440, "input": "tokens", "text": "building issues , particularly in Burundi and the eastern Congo . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1484, "end": 1485, "input": "tokens", "text": "John Kerry to Rwanda , Burundi , the Democratic Republic of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1530, "end": 1531, "input": "tokens", "text": "political and ethnic violence in Burundi , and with the leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1592, "end": 1593, "input": "tokens", "text": "we are already seeing in Burundi . High level engagement with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1621, "end": 1622, "input": "tokens", "text": ", Uganda , Rwanda and Burundi would be a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}], "key": "burundi", "value": "Burundi"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1422, "end": 1423, "input": "tokens", "text": "in Burundi and the eastern Congo . Early political consultations with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}, {"source": {"segment": "content_strict", "context": {"start": 1480, "end": 1481, "input": "tokens", "text": "and the Republic of the Congo : \n The Great Lakes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}, {"source": {"segment": "content_strict", "context": {"start": 1522, "end": 1523, "input": "tokens", "text": ", the DRC and the Congo threatening to extend themselves in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}, {"source": {"segment": "content_relaxed", "context": {"start": 1443, "end": 1444, "input": "tokens", "text": "in Burundi and the eastern Congo . Early political consultations with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}, {"source": {"segment": "content_relaxed", "context": {"start": 1501, "end": 1502, "input": "tokens", "text": "and the Republic of the Congo : \n The Great Lakes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}, {"source": {"segment": "content_relaxed", "context": {"start": 1543, "end": 1544, "input": "tokens", "text": ", the DRC and the Congo threatening to extend themselves in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}], "key": "congo", "value": "Congo"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1461, "end": 1462, "input": "tokens", "text": "of State John Kerry to Rwanda , Burundi , the Democratic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_strict", "context": {"start": 1516, "end": 1517, "input": "tokens", "text": "and with the leaders of Rwanda , the DRC and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_strict", "context": {"start": 1598, "end": 1599, "input": "tokens", "text": "the DRC , Uganda , Rwanda and Burundi would be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_relaxed", "context": {"start": 1482, "end": 1483, "input": "tokens", "text": "of State John Kerry to Rwanda , Burundi , the Democratic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_relaxed", "context": {"start": 1537, "end": 1538, "input": "tokens", "text": "and with the leaders of Rwanda , the DRC and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_relaxed", "context": {"start": 1619, "end": 1620, "input": "tokens", "text": "the DRC , Uganda , Rwanda and Burundi would be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}], "key": "rwanda", "value": "Rwanda"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1474, "end": 1475, "input": "tokens", "text": "Congo ( DRC ) , Uganda and the Republic of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}, {"source": {"segment": "content_strict", "context": {"start": 1596, "end": 1597, "input": "tokens", "text": "Kerry to the DRC , Uganda , Rwanda and Burundi would "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}, {"source": {"segment": "content_relaxed", "context": {"start": 1495, "end": 1496, "input": "tokens", "text": "Congo ( DRC ) , Uganda and the Republic of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}, {"source": {"segment": "content_relaxed", "context": {"start": 1617, "end": 1618, "input": "tokens", "text": "Kerry to the DRC , Uganda , Rwanda and Burundi would "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}], "key": "uganda", "value": "Uganda"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1476, "end": 1480, "input": "tokens", "text": "DRC ) , Uganda and the Republic of the Congo : \n The Great "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Republic of the"}, {"source": {"segment": "content_relaxed", "context": {"start": 1497, "end": 1501, "input": "tokens", "text": "DRC ) , Uganda and the Republic of the Congo : \n The Great "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Republic of the"}], "key": "the republic of the", "value": "the Republic of the"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1500, "end": 1501, "input": "tokens", "text": "volatile and unstable regions in Africa , with daily political and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1521, "end": 1522, "input": "tokens", "text": "volatile and unstable regions in Africa , with daily political and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1658, "end": 1659, "input": "tokens", "text": "and a full embassy in Mogadishu : \n The establishment of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}, {"source": {"segment": "content_strict", "context": {"start": 1847, "end": 1848, "input": "tokens", "text": "with the Somali government in Mogadishu in January 2013 . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}, {"source": {"segment": "content_strict", "context": {"start": 1901, "end": 1902, "input": "tokens", "text": "diplomatic embassy compound in downtown Mogadishu . \n Elevate U . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1679, "end": 1680, "input": "tokens", "text": "and a full embassy in Mogadishu : \n The establishment of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1868, "end": 1869, "input": "tokens", "text": "with the Somali government in Mogadishu in January 2013 . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1922, "end": 1923, "input": "tokens", "text": "diplomatic embassy compound in downtown Mogadishu . \n Elevate U . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}], "key": "mogadishu", "value": "Mogadishu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1774, "end": 1775, "input": "tokens", "text": "there . A consulate in Kaduna , which once had one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kaduna"}, {"source": {"segment": "content_relaxed", "context": {"start": 1795, "end": 1796, "input": "tokens", "text": "there . A consulate in Kaduna , which once had one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kaduna"}], "key": "kaduna", "value": "Kaduna"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1814, "end": 1815, "input": "tokens", "text": "of a failed state , Somalia has made significant progress over "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}, {"source": {"segment": "content_strict", "context": {"start": 1874, "end": 1875, "input": "tokens", "text": "Washington ' s commitment to Somalia and recognize the country ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}, {"source": {"segment": "content_relaxed", "context": {"start": 1835, "end": 1836, "input": "tokens", "text": "of a failed state , Somalia has made significant progress over "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}, {"source": {"segment": "content_relaxed", "context": {"start": 1895, "end": 1896, "input": "tokens", "text": "Washington ' s commitment to Somalia and recognize the country ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}], "key": "somalia", "value": "Somalia"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1912, "end": 1913, "input": "tokens", "text": "S . diplomatic relations with Sudan : \n Relations between Washington "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_strict", "context": {"start": 1948, "end": 1949, "input": "tokens", "text": "Senate - approved ambassador in Sudan since 1997 . \n The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_strict", "context": {"start": 1977, "end": 1978, "input": "tokens", "text": ". ) The regime in Sudan has carried out mass atrocities "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_relaxed", "context": {"start": 1933, "end": 1934, "input": "tokens", "text": "S . diplomatic relations with Sudan : \n Relations between Washington "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_relaxed", "context": {"start": 1969, "end": 1970, "input": "tokens", "text": "Senate - approved ambassador in Sudan since 1997 . \n The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_relaxed", "context": {"start": 1998, "end": 1999, "input": "tokens", "text": ". ) The regime in Sudan has carried out mass atrocities "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}], "key": "sudan", "value": "Sudan"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1919, "end": 1920, "input": "tokens", "text": "\n Relations between Washington and Khartoum have been prickly and frequently "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_strict", "context": {"start": 1954, "end": 1955, "input": "tokens", "text": "since 1997 . \n The Khartoum government has not been a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_strict", "context": {"start": 2022, "end": 2023, "input": "tokens", "text": "- imposed comprehensive sanctions on Khartoum have not isolated the country "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_strict", "context": {"start": 2044, "end": 2045, "input": "tokens", "text": "review its current policies toward Khartoum , and consider elevating its "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_relaxed", "context": {"start": 1940, "end": 1941, "input": "tokens", "text": "\n Relations between Washington and Khartoum have been prickly and frequently "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_relaxed", "context": {"start": 1975, "end": 1976, "input": "tokens", "text": "since 1997 . \n The Khartoum government has not been a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_relaxed", "context": {"start": 2043, "end": 2044, "input": "tokens", "text": "- imposed comprehensive sanctions on Khartoum have not isolated the country "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_relaxed", "context": {"start": 2065, "end": 2066, "input": "tokens", "text": "review its current policies toward Khartoum , and consider elevating its "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}], "key": "khartoum", "value": "Khartoum"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1967, "end": 1968, "input": "tokens", "text": "actor . ( Nor have Cuba , Myanmar or Iran . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cuba"}, {"source": {"segment": "content_relaxed", "context": {"start": 1988, "end": 1989, "input": "tokens", "text": "actor . ( Nor have Cuba , Myanmar or Iran . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cuba"}], "key": "cuba", "value": "Cuba"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1971, "end": 1972, "input": "tokens", "text": "have Cuba , Myanmar or Iran . ) The regime in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Iran"}, {"source": {"segment": "content_relaxed", "context": {"start": 1992, "end": 1993, "input": "tokens", "text": "have Cuba , Myanmar or Iran . ) The regime in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Iran"}], "key": "iran", "value": "Iran"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1984, "end": 1985, "input": "tokens", "text": "carried out mass atrocities in Darfur , prevented UN organizations from "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Darfur"}, {"source": {"segment": "content_relaxed", "context": {"start": 2005, "end": 2006, "input": "tokens", "text": "carried out mass atrocities in Darfur , prevented UN organizations from "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Darfur"}], "key": "darfur", "value": "Darfur"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2034, "end": 2035, "input": "tokens", "text": "weakened its government . The U . S . should review "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}, {"source": {"segment": "content_relaxed", "context": {"start": 2055, "end": 2056, "input": "tokens", "text": "weakened its government . The U . S . should review "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}], "key": "u", "value": "U"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2473, "end": 2475, "input": "tokens", "text": "Senior Advisor at the \n United States Institute of Peace . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 2494, "end": 2496, "input": "tokens", "text": "Senior Advisor at the \n United States Institute of Peace . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "United States"}], "key": "united states", "value": "United States"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 49, "end": 50, "input": "tokens", "text": "on Africa than any previous American president , but with one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_strict", "context": {"start": 2201, "end": 2202, "input": "tokens", "text": "summit brought dozens of senior American business leaders into direct contact "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_strict", "context": {"start": 2332, "end": 2333, "input": "tokens", "text": "continuing efforts to promote greater American trade and commerce with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_relaxed", "context": {"start": 70, "end": 71, "input": "tokens", "text": "on Africa than any previous American president , but with one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_relaxed", "context": {"start": 2222, "end": 2223, "input": "tokens", "text": "summit brought dozens of senior American business leaders into direct contact "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_relaxed", "context": {"start": 2353, "end": 2354, "input": "tokens", "text": "continuing efforts to promote greater American trade and commerce with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}], "key": "american", "value": "American"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 305, "end": 306, "input": "tokens", "text": "that will bring 500 young African entrepreneurs , professionals and community "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_strict", "context": {"start": 674, "end": 675, "input": "tokens", "text": "With a growing number of African leaders attempting to extend their "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_strict", "context": {"start": 1158, "end": 1159, "input": "tokens", "text": "should be allocated to strengthen African judiciaries and legislatures , to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_strict", "context": {"start": 2216, "end": 2217, "input": "tokens", "text": "very first time - with African heads of state and prominent "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_strict", "context": {"start": 2432, "end": 2433, "input": "tokens", "text": "be building a more robust African agenda for his last year "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 326, "end": 327, "input": "tokens", "text": "that will bring 500 young African entrepreneurs , professionals and community "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 695, "end": 696, "input": "tokens", "text": "With a growing number of African leaders attempting to extend their "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 1179, "end": 1180, "input": "tokens", "text": "should be allocated to strengthen African judiciaries and legislatures , to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 2237, "end": 2238, "input": "tokens", "text": "very first time - with African heads of state and prominent "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 2453, "end": 2454, "input": "tokens", "text": "be building a more robust African agenda for his last year "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}], "key": "african", "value": "African"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 455, "end": 456, "input": "tokens", "text": "million people , its largest Muslim country , and its largest "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 1706, "end": 1707, "input": "tokens", "text": "It is also the largest Muslim region in Africa and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 1713, "end": 1714, "input": "tokens", "text": "in Africa and the largest Muslim region in the world where "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 1790, "end": 1791, "input": "tokens", "text": "a strong signal to the Muslim community that Washington genuinely cares "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 476, "end": 477, "input": "tokens", "text": "million people , its largest Muslim country , and its largest "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 1727, "end": 1728, "input": "tokens", "text": "It is also the largest Muslim region in Africa and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 1734, "end": 1735, "input": "tokens", "text": "in Africa and the largest Muslim region in the world where "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 1811, "end": 1812, "input": "tokens", "text": "a strong signal to the Muslim community that Washington genuinely cares "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1409, "end": 1411, "input": "tokens", "text": "critical role to play in East African peace - building issues , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East African"}, {"source": {"segment": "content_relaxed", "context": {"start": 1430, "end": 1432, "input": "tokens", "text": "critical role to play in East African peace - building issues , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East African"}], "key": "east african", "value": "East African"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1844, "end": 1845, "input": "tokens", "text": "formal diplomatic relations with the Somali government in Mogadishu in January "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somali"}, {"source": {"segment": "content_relaxed", "context": {"start": 1865, "end": 1866, "input": "tokens", "text": "formal diplomatic relations with the Somali government in Mogadishu in January "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somali"}], "key": "somali", "value": "Somali"}]}, "content_extraction": {"content_relaxed": {"text": " \n 4 January 2016 \n Africa: What Obama Still Owes Africa (a Visit to Nigeria for One Thing) \n Photo: \n AllAfrica \n Former U.S. Assistant Secretary of State Johnnie Carson \n guest column \n By Johnnie Carson \n Washington, DC \u2014 \n After seven years in office, President Barack Obama has already engaged more broadly on Africa than any previous American president, but with one year remaining in the White House, there are still a few things he should do before he leaves, writes \n Johnnie Carson \n , the United States' top policy-maker on Africa in the first Obama administration. \n President Obama has significantly elevated and transformed America's engagement with Africa, traveling widely across the continent, championing the renewal of several old programs and launching a series of highly focused new initiatives that could help speed-up Africa's economic development. \n He has been particularly active in promoting economic and development issues. \n He fought successfully for the renewal and extension of the African Growth and Opportunity Act (AGOA), America's most important trade legislation with Africa; he hosted the first U.S.-Africa Leadership Summit, attended by 37 heads of state; and he has established several important new economic programs, including \"Power Africa\" - to expand significantly electrical access across the continent; \"Feed the Future\" - to increase household food production and to generate a green revolution throughout Africa, and \"Trade Africa\" - to expand substantially trade between Africa and the United States. \n Recognizing the growing role of the continent's next generation of young leaders, President Obama established YALI - the Young African Leaders Initiative, a program that will bring 500 young African entrepreneurs, professionals and community organizers to the U.S. each year for the next several years for five weeks of leadership, organization and management training. \n But what next? \n Despite his rather impressive list of accomplishments, here are ten things the president should do before he leaves office in January 2017: \n Visit Nigeria: \n President Obama has traveled to Africa five times during his presidency - but he has not visited Nigeria, the continent's economic, political, communications and petroleum giant, and its most important state. It is the continent's largest economy - almost twice the size of South Africa's and a third larger than that of Egypt. \n It is also the continent's most populous state, with 180 million people, its largest Muslim country, and its largest democracy. \n The president has visited every major country on the continent except Nigeria, and it would be a mistake for him to leave the White House without a stop in Lagos or Abuja. \n Some have suggested that security may be a concern because of Boko Haram, but if the president can travel safely to Nairobi, where al Shabaab has carried out high profile attacks in the center of the city, he should be able to travel safely to Abuja or Lagos. He is bound to make one more trip to Europe, and a stop in Nigeria - similar to his 2009 visit to Ghana - would not be a major diversion. \n Co-host a regional summit on democracy in west Africa: \n Strengthening democracy institutions, promoting good governance and supporting free and fair elections has been a major priority for the Obama administration in Africa. \n During his first official visit to the continent as president in July 2009, President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy and good governance and the need to create \"more strong institutions, not more strong men.\" With a growing number of African leaders attempting to extend their terms of office, democracy remains fragile across the continent. The president could give democracy in Africa a boost and reaffirm America's strong commitment to Africa's political progress by hosting a conference in West Africa with the democratically-elected leaders of Benin, Burkina Faso, Cape Verde, Liberia, Niger, Nigeria, Mali, Mauritania, Senegal, Sierra Leone and Togo. \n Support Nigeria's permanent membership in the G20: \n President Obama has said that he wants to ensure that Africa has a place at the table to participate in the deliberations concerning major global political and economic issues. One way to accomplish that is to expand or reorganize the G20 group of nations to include Nigeria as a permanent member of this important global organization. \n Nigeria is already more important than several of the current G20 members, notably Argentina and South Africa, and over the next two decades it will become one of the world's mega states, eclipsing several other G20 members in the size of its economy, population and regional influence. It would also be one of the G20's largest democracies. The administration should make the inclusion of Nigeria a priority over the next 12 months. \n Press for the passage of the Electrify Africa legislation: \n Power Africa is one of President Obama's most important signature initiatives. In the world's most energy deficient and starved continent, it is intended to increase Africa's power output by 30,000 megawatts over the next decade or two. \n But like a number of recent White House initiatives, Power Africa is not backed by any legislative mandate and could be easily brushed aside after the Obama administration leaves office. The program enjoys bi-partisan support in the Congress and the administration needs to work with congressional leaders to prioritize the passage of the Electrify Africa legislation. At the same time, the administration needs to create a senior level \"Power Africa czar\" to manage the program and consider moving interagency responsibility for oversight from USAID to a cabinet level department. \n Instruct USAID to establish a permanent democracy fund: \n If democracy promotion is an important priority, it should be funded adequately and on a long-term basis. Today that is not the case. Funding for democracy has declined sharply during Obama's second term despite the president's recent speeches in Nairobi and Addis Ababa, and at the 70th session of the United Nations General Assembly in New York. \n Dedicated and hard-to-reprogram funds should be allocated to strengthen African judiciaries and legislatures, to promote civil society groups and the media, to assist women's organizations and youth groups and to support domestic and international election monitoring. Funds should also be made available to assist local organizations to undertake parallel vote counts, to aid local election commissions and to prevent pre- and post-election violence. \n Invite Tanzania's newly elected President John Magufuli to the White House: \n Tanzania is the most populous state and the largest democracy in East Africa. It is also one of the largest recipients of U.S. development assistance and a participant in all of Washington's major economic initiatives. \n In late October, Tanzania held presidential and parliamentary elections.The elections on the mainland went well, but those on the island of Zanzibar were disputed. President John Pombe Magufuli, a reform-minded academic-turned-politician, was elected without dispute, making him Tanzania's fifth democratically-elected president in a row. Although the Zanzibar election remains unresolved, it is important to reach out to Tanzania's new president early in his tenure to continue to foster the strong relationship between Dar es Salaam and Washington. \n This is particularly important since President Magufuli does not have any major ties with the United States.Tanzania also has a critical role to play in East African peace-building issues, particularly in Burundi and the eastern Congo. Early political consultations with President Magufuli and his new foreign minister, Dr. Augustine Mahiga, could prove valuable in promoting stability in the Great Lakes region. \n Send Secretary of State John Kerry to Rwanda, Burundi, the Democratic Republic of Congo (DRC), Uganda and the Republic of the Congo: \n The Great Lakes Region of Central Africa is one of the most volatile and unstable regions in Africa, with daily political and ethnic violence in Burundi, and with the leaders of Rwanda, the DRC and the Congo threatening to extend themselves in office in violation of their constitutions. \n Although time is running out, there is still an opportunity to prevent further democratic backsliding and the serious instability and violence that will almost certainly be unleashed - as we are already seeing in Burundi. High level engagement with the leaders in the region is required. \n An extended visit by Secretary Kerry to the DRC, Uganda, Rwanda and Burundi would be a strong signal of Washington's deep concern and interest in the region's negative political and security trajectory. Without serious engagement with the leaders on the ground, there will be no meaningful progress. \n Open a U.S. consulate in northern Nigeria and a full embassy in Mogadishu: \n The establishment of a consulate in northern Nigeria is long overdue. More than half of Nigeria's 180 million people live in the northern part of the country, an area of serious political and security concern. It is also the largest Muslim region in Africa and the largest Muslim region in the world where there is no full-time U.S. diplomatic presence. \n A U.S. diplomatic mission would advance long-term political, economic and security interests in the region and help Nigeria to deal with the economic, social and security challenges it faces there. A consulate in Kaduna, which once had one, or Kano would convey a strong signal to the Muslim community that Washington genuinely cares about the people in the region. \n Once the global poster child of a failed state, Somalia has made significant progress over the past seven years. In recognition of the progress, the U.S. re-established formal diplomatic relations with the Somali government in Mogadishu in January 2013. \n Before he leaves office, President Obama should take one more step. He should reaffirm Washington's commitment to Somalia and recognize the country's continuing progress by appointing a Senate-approved ambassador and opening a small, secure diplomatic embassy compound in downtown Mogadishu. \n Elevate U.S. diplomatic relations with Sudan: \n Relations between Washington and Khartoum have been prickly and frequently difficult for over two decades and the U.S. has not had a fully accredited, Senate-approved ambassador in Sudan since 1997. \n The Khartoum government has not been a good international actor. (Nor have Cuba, Myanmar or Iran.) The regime in Sudan has carried out mass atrocities in Darfur, prevented UN organizations from delivering food aid and humanitarian assistance to those in need and meddled in the affairs of several of its neighbors. \n But U.S.-imposed comprehensive sanctions on Khartoum have not isolated the country nor weakened its government. The U.S. should review its current policies toward Khartoum, and consider elevating its diplomatic relationship to full ambassadorial status in order to expand America's dialogue and probe for new openings to resolve some of the country's domestic and regional issues. The U.S. can do this while maintaining its sanctions regime on the government and its demands that President Omar al-Bashir address the serious human rights charges against him. \n Provide a status report on the results of the U.S.-Africa Leadership Summit: \n The U.S. Africa Leadership Summit has been one of the high points in the Obama administration's engagements in Africa. \n Leaders from 50 different countries participated in this first-of-a-kind gathering in Washington. A number of new programs were announced and a major business conference associated with the summit brought dozens of senior American business leaders into direct contact - many for the very first time - with African heads of state and prominent business leaders from the continent. \n The administration has never released a comprehensive report on the summit or a one-year progress report on the implementation of summit agreements. The issuance of some type of status report would be a useful vehicle for identifying summit objectives and initiatives as well as tracking the progress of the administration's efforts. The administration should do everything it can to sustain the goodwill and policy initiatives that emerged from the summit to help ensure that it does not become a one-off event. \n The administration should be applauded for its continuing efforts to promote greater American trade and commerce with Africa. The president has already announced that he plans to host another U.S.-Africa Business Summit similar to the day-long event his administration hosted during the 2014 Leadership Summit. The Business Summit is important, but it should not be the only thing on President Obama's Africa agenda for 2016. He has time to do more, and he should. Twelve months is a long time in the life of an administration and his foreign policy team should be building a more robust African agenda for his last year in office. \n Ambassador Carson was the U.S. \n Assistant Secretary of State for African Affairs \n from 2009 to 2012. He is currently a Senior Advisor at the \n United States Institute of Peace. \n Copyright \n 2016 allAfrica.com. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "4", "january", "2016", "\n", "africa", ":", "what", "obama", "still", "owes", "africa", "(", "a", "visit", "to", "nigeria", "for", "one", "thing", ")", "\n", "photo", ":", "\n", "allafrica", "\n", "former", "u", ".", "s", ".", "assistant", "secretary", "of", "state", "johnnie", "carson", "\n", "guest", "column", "\n", "by", "johnnie", "carson", "\n", "washington", ",", "dc", "\u2014", "\n", "after", "seven", "years", "in", "office", ",", "president", "barack", "obama", "has", "already", "engaged", "more", "broadly", "on", "africa", "than", "any", "previous", "american", "president", ",", "but", "with", "one", "year", "remaining", "in", "the", "white", "house", ",", "there", "are", "still", "a", "few", "things", "he", "should", "do", "before", "he", "leaves", ",", "writes", "\n", "johnnie", "carson", "\n", ",", "the", "united", "states", "'", "top", "policy", "-", "maker", "on", "africa", "in", "the", "first", "obama", "administration", ".", "\n", "president", "obama", "has", "significantly", "elevated", "and", "transformed", "america", "'", "s", "engagement", "with", "africa", ",", "traveling", "widely", "across", "the", "continent", ",", "championing", "the", "renewal", "of", "several", "old", "programs", "and", "launching", "a", "series", "of", "highly", "focused", "new", "initiatives", "that", "could", "help", "speed", "-", "up", "africa", "'", "s", "economic", "development", ".", "\n", "he", "has", "been", "particularly", "active", "in", "promoting", "economic", "and", "development", "issues", ".", "\n", "he", "fought", "successfully", "for", "the", "renewal", "and", "extension", "of", "the", "african", "growth", "and", "opportunity", "act", "(", "agoa", ")", ",", "america", "'", "s", "most", "important", "trade", "legislation", "with", "africa", ";", "he", "hosted", "the", "first", "u", ".", "s", ".", "-", "africa", "leadership", "summit", ",", "attended", "by", "37", "heads", "of", "state", ";", "and", "he", "has", "established", "several", "important", "new", "economic", "programs", ",", "including", "\"", "power", "africa", "\"", "-", "to", "expand", "significantly", "electrical", "access", "across", "the", "continent", ";", "\"", "feed", "the", "future", "\"", "-", "to", "increase", "household", "food", "production", "and", "to", "generate", "a", "green", "revolution", "throughout", "africa", ",", "and", "\"", "trade", "africa", "\"", "-", "to", "expand", "substantially", "trade", "between", "africa", "and", "the", "united", "states", ".", "\n", "recognizing", "the", "growing", "role", "of", "the", "continent", "'", "s", "next", "generation", "of", "young", "leaders", ",", "president", "obama", "established", "yali", "-", "the", "young", "african", "leaders", "initiative", ",", "a", "program", "that", "will", "bring", "500", "young", "african", "entrepreneurs", ",", "professionals", "and", "community", "organizers", "to", "the", "u", ".", "s", ".", "each", "year", "for", "the", "next", "several", "years", "for", "five", "weeks", "of", "leadership", ",", "organization", "and", "management", "training", ".", "\n", "but", "what", "next", "?", "\n", "despite", "his", "rather", "impressive", "list", "of", "accomplishments", ",", "here", "are", "ten", "things", "the", "president", "should", "do", "before", "he", "leaves", "office", "in", "january", "2017", ":", "\n", "visit", "nigeria", ":", "\n", "president", "obama", "has", "traveled", "to", "africa", "five", "times", "during", "his", "presidency", "-", "but", "he", "has", "not", "visited", "nigeria", ",", "the", "continent", "'", "s", "economic", ",", "political", ",", "communications", "and", "petroleum", "giant", ",", "and", "its", "most", "important", "state", ".", "it", "is", "the", "continent", "'", "s", "largest", "economy", "-", "almost", "twice", "the", "size", "of", "south", "africa", "'", "s", "and", "a", "third", "larger", "than", "that", "of", "egypt", ".", "\n", "it", "is", "also", "the", "continent", "'", "s", "most", "populous", "state", ",", "with", "180", "million", "people", ",", "its", "largest", "muslim", "country", ",", "and", "its", "largest", "democracy", ".", "\n", "the", "president", "has", "visited", "every", "major", "country", "on", "the", "continent", "except", "nigeria", ",", "and", "it", "would", "be", "a", "mistake", "for", "him", "to", "leave", "the", "white", "house", "without", "a", "stop", "in", "lagos", "or", "abuja", ".", "\n", "some", "have", "suggested", "that", "security", "may", "be", "a", "concern", "because", "of", "boko", "haram", ",", "but", "if", "the", "president", "can", "travel", "safely", "to", "nairobi", ",", "where", "al", "shabaab", "has", "carried", "out", "high", "profile", "attacks", "in", "the", "center", "of", "the", "city", ",", "he", "should", "be", "able", "to", "travel", "safely", "to", "abuja", "or", "lagos", ".", "he", "is", "bound", "to", "make", "one", "more", "trip", "to", "europe", ",", "and", "a", "stop", "in", "nigeria", "-", "similar", "to", "his", "2009", "visit", "to", "ghana", "-", "would", "not", "be", "a", "major", "diversion", ".", "\n", "co", "-", "host", "a", "regional", "summit", "on", "democracy", "in", "west", "africa", ":", "\n", "strengthening", "democracy", "institutions", ",", "promoting", "good", "governance", "and", "supporting", "free", "and", "fair", "elections", "has", "been", "a", "major", "priority", "for", "the", "obama", "administration", "in", "africa", ".", "\n", "during", "his", "first", "official", "visit", "to", "the", "continent", "as", "president", "in", "july", "2009", ",", "president", "obama", "spoke", "eloquently", "before", "the", "ghanaian", "parliament", "about", "the", "importance", "of", "democracy", "and", "good", "governance", "and", "the", "need", "to", "create", "\"", "more", "strong", "institutions", ",", "not", "more", "strong", "men", ".", "\"", "with", "a", "growing", "number", "of", "african", "leaders", "attempting", "to", "extend", "their", "terms", "of", "office", ",", "democracy", "remains", "fragile", "across", "the", "continent", ".", "the", "president", "could", "give", "democracy", "in", "africa", "a", "boost", "and", "reaffirm", "america", "'", "s", "strong", "commitment", "to", "africa", "'", "s", "political", "progress", "by", "hosting", "a", "conference", "in", "west", "africa", "with", "the", "democratically", "-", "elected", "leaders", "of", "benin", ",", "burkina", "faso", ",", "cape", "verde", ",", "liberia", ",", "niger", ",", "nigeria", ",", "mali", ",", "mauritania", ",", "senegal", ",", "sierra", "leone", "and", "togo", ".", "\n", "support", "nigeria", "'", "s", "permanent", "membership", "in", "the", "g20", ":", "\n", "president", "obama", "has", "said", "that", "he", "wants", "to", "ensure", "that", "africa", "has", "a", "place", "at", "the", "table", "to", "participate", "in", "the", "deliberations", "concerning", "major", "global", "political", "and", "economic", "issues", ".", "one", "way", "to", "accomplish", "that", "is", "to", "expand", "or", "reorganize", "the", "g20", "group", "of", "nations", "to", "include", "nigeria", "as", "a", "permanent", "member", "of", "this", "important", "global", "organization", ".", "\n", "nigeria", "is", "already", "more", "important", "than", "several", "of", "the", "current", "g20", "members", ",", "notably", "argentina", "and", "south", "africa", ",", "and", "over", "the", "next", "two", "decades", "it", "will", "become", "one", "of", "the", "world", "'", "s", "mega", "states", ",", "eclipsing", "several", "other", "g20", "members", "in", "the", "size", "of", "its", "economy", ",", "population", "and", "regional", "influence", ".", "it", "would", "also", "be", "one", "of", "the", "g20", "'", "s", "largest", "democracies", ".", "the", "administration", "should", "make", "the", "inclusion", "of", "nigeria", "a", "priority", "over", "the", "next", "12", "months", ".", "\n", "press", "for", "the", "passage", "of", "the", "electrify", "africa", "legislation", ":", "\n", "power", "africa", "is", "one", "of", "president", "obama", "'", "s", "most", "important", "signature", "initiatives", ".", "in", "the", "world", "'", "s", "most", "energy", "deficient", "and", "starved", "continent", ",", "it", "is", "intended", "to", "increase", "africa", "'", "s", "power", "output", "by", "30", ",", "000", "megawatts", "over", "the", "next", "decade", "or", "two", ".", "\n", "but", "like", "a", "number", "of", "recent", "white", "house", "initiatives", ",", "power", "africa", "is", "not", "backed", "by", "any", "legislative", "mandate", "and", "could", "be", "easily", "brushed", "aside", "after", "the", "obama", "administration", "leaves", "office", ".", "the", "program", "enjoys", "bi", "-", "partisan", "support", "in", "the", "congress", "and", "the", "administration", "needs", "to", "work", "with", "congressional", "leaders", "to", "prioritize", "the", "passage", "of", "the", "electrify", "africa", "legislation", ".", "at", "the", "same", "time", ",", "the", "administration", "needs", "to", "create", "a", "senior", "level", "\"", "power", "africa", "czar", "\"", "to", "manage", "the", "program", "and", "consider", "moving", "interagency", "responsibility", "for", "oversight", "from", "usaid", "to", "a", "cabinet", "level", "department", ".", "\n", "instruct", "usaid", "to", "establish", "a", "permanent", "democracy", "fund", ":", "\n", "if", "democracy", "promotion", "is", "an", "important", "priority", ",", "it", "should", "be", "funded", "adequately", "and", "on", "a", "long", "-", "term", "basis", ".", "today", "that", "is", "not", "the", "case", ".", "funding", "for", "democracy", "has", "declined", "sharply", "during", "obama", "'", "s", "second", "term", "despite", "the", "president", "'", "s", "recent", "speeches", "in", "nairobi", "and", "addis", "ababa", ",", "and", "at", "the", "70th", "session", "of", "the", "united", "nations", "general", "assembly", "in", "new", "york", ".", "\n", "dedicated", "and", "hard", "-", "to", "-", "reprogram", "funds", "should", "be", "allocated", "to", "strengthen", "african", "judiciaries", "and", "legislatures", ",", "to", "promote", "civil", "society", "groups", "and", "the", "media", ",", "to", "assist", "women", "'", "s", "organizations", "and", "youth", "groups", "and", "to", "support", "domestic", "and", "international", "election", "monitoring", ".", "funds", "should", "also", "be", "made", "available", "to", "assist", "local", "organizations", "to", "undertake", "parallel", "vote", "counts", ",", "to", "aid", "local", "election", "commissions", "and", "to", "prevent", "pre", "-", "and", "post", "-", "election", "violence", ".", "\n", "invite", "tanzania", "'", "s", "newly", "elected", "president", "john", "magufuli", "to", "the", "white", "house", ":", "\n", "tanzania", "is", "the", "most", "populous", "state", "and", "the", "largest", "democracy", "in", "east", "africa", ".", "it", "is", "also", "one", "of", "the", "largest", "recipients", "of", "u", ".", "s", ".", "development", "assistance", "and", "a", "participant", "in", "all", "of", "washington", "'", "s", "major", "economic", "initiatives", ".", "\n", "in", "late", "october", ",", "tanzania", "held", "presidential", "and", "parliamentary", "elections", ".", "the", "elections", "on", "the", "mainland", "went", "well", ",", "but", "those", "on", "the", "island", "of", "zanzibar", "were", "disputed", ".", "president", "john", "pombe", "magufuli", ",", "a", "reform", "-", "minded", "academic", "-", "turned", "-", "politician", ",", "was", "elected", "without", "dispute", ",", "making", "him", "tanzania", "'", "s", "fifth", "democratically", "-", "elected", "president", "in", "a", "row", ".", "although", "the", "zanzibar", "election", "remains", "unresolved", ",", "it", "is", "important", "to", "reach", "out", "to", "tanzania", "'", "s", "new", "president", "early", "in", "his", "tenure", "to", "continue", "to", "foster", "the", "strong", "relationship", "between", "dar", "es", "salaam", "and", "washington", ".", "\n", "this", "is", "particularly", "important", "since", "president", "magufuli", "does", "not", "have", "any", "major", "ties", "with", "the", "united", "states", ".", "tanzania", "also", "has", "a", "critical", "role", "to", "play", "in", "east", "african", "peace", "-", "building", "issues", ",", "particularly", "in", "burundi", "and", "the", "eastern", "congo", ".", "early", "political", "consultations", "with", "president", "magufuli", "and", "his", "new", "foreign", "minister", ",", "dr", ".", "augustine", "mahiga", ",", "could", "prove", "valuable", "in", "promoting", "stability", "in", "the", "great", "lakes", "region", ".", "\n", "send", "secretary", "of", "state", "john", "kerry", "to", "rwanda", ",", "burundi", ",", "the", "democratic", "republic", "of", "congo", "(", "drc", ")", ",", "uganda", "and", "the", "republic", "of", "the", "congo", ":", "\n", "the", "great", "lakes", "region", "of", "central", "africa", "is", "one", "of", "the", "most", "volatile", "and", "unstable", "regions", "in", "africa", ",", "with", "daily", "political", "and", "ethnic", "violence", "in", "burundi", ",", "and", "with", "the", "leaders", "of", "rwanda", ",", "the", "drc", "and", "the", "congo", "threatening", "to", "extend", "themselves", "in", "office", "in", "violation", "of", "their", "constitutions", ".", "\n", "although", "time", "is", "running", "out", ",", "there", "is", "still", "an", "opportunity", "to", "prevent", "further", "democratic", "backsliding", "and", "the", "serious", "instability", "and", "violence", "that", "will", "almost", "certainly", "be", "unleashed", "-", "as", "we", "are", "already", "seeing", "in", "burundi", ".", "high", "level", "engagement", "with", "the", "leaders", "in", "the", "region", "is", "required", ".", "\n", "an", "extended", "visit", "by", "secretary", "kerry", "to", "the", "drc", ",", "uganda", ",", "rwanda", "and", "burundi", "would", "be", "a", "strong", "signal", "of", "washington", "'", "s", "deep", "concern", "and", "interest", "in", "the", "region", "'", "s", "negative", "political", "and", "security", "trajectory", ".", "without", "serious", "engagement", "with", "the", "leaders", "on", "the", "ground", ",", "there", "will", "be", "no", "meaningful", "progress", ".", "\n", "open", "a", "u", ".", "s", ".", "consulate", "in", "northern", "nigeria", "and", "a", "full", "embassy", "in", "mogadishu", ":", "\n", "the", "establishment", "of", "a", "consulate", "in", "northern", "nigeria", "is", "long", "overdue", ".", "more", "than", "half", "of", "nigeria", "'", "s", "180", "million", "people", "live", "in", "the", "northern", "part", "of", "the", "country", ",", "an", "area", "of", "serious", "political", "and", "security", "concern", ".", "it", "is", "also", "the", "largest", "muslim", "region", "in", "africa", "and", "the", "largest", "muslim", "region", "in", "the", "world", "where", "there", "is", "no", "full", "-", "time", "u", ".", "s", ".", "diplomatic", "presence", ".", "\n", "a", "u", ".", "s", ".", "diplomatic", "mission", "would", "advance", "long", "-", "term", "political", ",", "economic", "and", "security", "interests", "in", "the", "region", "and", "help", "nigeria", "to", "deal", "with", "the", "economic", ",", "social", "and", "security", "challenges", "it", "faces", "there", ".", "a", "consulate", "in", "kaduna", ",", "which", "once", "had", "one", ",", "or", "kano", "would", "convey", "a", "strong", "signal", "to", "the", "muslim", "community", "that", "washington", "genuinely", "cares", "about", "the", "people", "in", "the", "region", ".", "\n", "once", "the", "global", "poster", "child", "of", "a", "failed", "state", ",", "somalia", "has", "made", "significant", "progress", "over", "the", "past", "seven", "years", ".", "in", "recognition", "of", "the", "progress", ",", "the", "u", ".", "s", ".", "re", "-", "established", "formal", "diplomatic", "relations", "with", "the", "somali", "government", "in", "mogadishu", "in", "january", "2013", ".", "\n", "before", "he", "leaves", "office", ",", "president", "obama", "should", "take", "one", "more", "step", ".", "he", "should", "reaffirm", "washington", "'", "s", "commitment", "to", "somalia", "and", "recognize", "the", "country", "'", "s", "continuing", "progress", "by", "appointing", "a", "senate", "-", "approved", "ambassador", "and", "opening", "a", "small", ",", "secure", "diplomatic", "embassy", "compound", "in", "downtown", "mogadishu", ".", "\n", "elevate", "u", ".", "s", ".", "diplomatic", "relations", "with", "sudan", ":", "\n", "relations", "between", "washington", "and", "khartoum", "have", "been", "prickly", "and", "frequently", "difficult", "for", "over", "two", "decades", "and", "the", "u", ".", "s", ".", "has", "not", "had", "a", "fully", "accredited", ",", "senate", "-", "approved", "ambassador", "in", "sudan", "since", "1997", ".", "\n", "the", "khartoum", "government", "has", "not", "been", "a", "good", "international", "actor", ".", "(", "nor", "have", "cuba", ",", "myanmar", "or", "iran", ".", ")", "the", "regime", "in", "sudan", "has", "carried", "out", "mass", "atrocities", "in", "darfur", ",", "prevented", "un", "organizations", "from", "delivering", "food", "aid", "and", "humanitarian", "assistance", "to", "those", "in", "need", "and", "meddled", "in", "the", "affairs", "of", "several", "of", "its", "neighbors", ".", "\n", "but", "u", ".", "s", ".", "-", "imposed", "comprehensive", "sanctions", "on", "khartoum", "have", "not", "isolated", "the", "country", "nor", "weakened", "its", "government", ".", "the", "u", ".", "s", ".", "should", "review", "its", "current", "policies", "toward", "khartoum", ",", "and", "consider", "elevating", "its", "diplomatic", "relationship", "to", "full", "ambassadorial", "status", "in", "order", "to", "expand", "america", "'", "s", "dialogue", "and", "probe", "for", "new", "openings", "to", "resolve", "some", "of", "the", "country", "'", "s", "domestic", "and", "regional", "issues", ".", "the", "u", ".", "s", ".", "can", "do", "this", "while", "maintaining", "its", "sanctions", "regime", "on", "the", "government", "and", "its", "demands", "that", "president", "omar", "al", "-", "bashir", "address", "the", "serious", "human", "rights", "charges", "against", "him", ".", "\n", "provide", "a", "status", "report", "on", "the", "results", "of", "the", "u", ".", "s", ".", "-", "africa", "leadership", "summit", ":", "\n", "the", "u", ".", "s", ".", "africa", "leadership", "summit", "has", "been", "one", "of", "the", "high", "points", "in", "the", "obama", "administration", "'", "s", "engagements", "in", "africa", ".", "\n", "leaders", "from", "50", "different", "countries", "participated", "in", "this", "first", "-", "of", "-", "a", "-", "kind", "gathering", "in", "washington", ".", "a", "number", "of", "new", "programs", "were", "announced", "and", "a", "major", "business", "conference", "associated", "with", "the", "summit", "brought", "dozens", "of", "senior", "american", "business", "leaders", "into", "direct", "contact", "-", "many", "for", "the", "very", "first", "time", "-", "with", "african", "heads", "of", "state", "and", "prominent", "business", "leaders", "from", "the", "continent", ".", "\n", "the", "administration", "has", "never", "released", "a", "comprehensive", "report", "on", "the", "summit", "or", "a", "one", "-", "year", "progress", "report", "on", "the", "implementation", "of", "summit", "agreements", ".", "the", "issuance", "of", "some", "type", "of", "status", "report", "would", "be", "a", "useful", "vehicle", "for", "identifying", "summit", "objectives", "and", "initiatives", "as", "well", "as", "tracking", "the", "progress", "of", "the", "administration", "'", "s", "efforts", ".", "the", "administration", "should", "do", "everything", "it", "can", "to", "sustain", "the", "goodwill", "and", "policy", "initiatives", "that", "emerged", "from", "the", "summit", "to", "help", "ensure", "that", "it", "does", "not", "become", "a", "one", "-", "off", "event", ".", "\n", "the", "administration", "should", "be", "applauded", "for", "its", "continuing", "efforts", "to", "promote", "greater", "american", "trade", "and", "commerce", "with", "africa", ".", "the", "president", "has", "already", "announced", "that", "he", "plans", "to", "host", "another", "u", ".", "s", ".", "-", "africa", "business", "summit", "similar", "to", "the", "day", "-", "long", "event", "his", "administration", "hosted", "during", "the", "2014", "leadership", "summit", ".", "the", "business", "summit", "is", "important", ",", "but", "it", "should", "not", "be", "the", "only", "thing", "on", "president", "obama", "'", "s", "africa", "agenda", "for", "2016", ".", "he", "has", "time", "to", "do", "more", ",", "and", "he", "should", ".", "twelve", "months", "is", "a", "long", "time", "in", "the", "life", "of", "an", "administration", "and", "his", "foreign", "policy", "team", "should", "be", "building", "a", "more", "robust", "african", "agenda", "for", "his", "last", "year", "in", "office", ".", "\n", "ambassador", "carson", "was", "the", "u", ".", "s", ".", "\n", "assistant", "secretary", "of", "state", "for", "african", "affairs", "\n", "from", "2009", "to", "2012", ".", "he", "is", "currently", "a", "senior", "advisor", "at", "the", "\n", "united", "states", "institute", "of", "peace", ".", "\n", "copyright", "\n", "2016", "allafrica", ".", "com", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u2014", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "4", "January", "2016", "\n", "Africa", ":", "What", "Obama", "Still", "Owes", "Africa", "(", "a", "Visit", "to", "Nigeria", "for", "One", "Thing", ")", "\n", "Photo", ":", "\n", "AllAfrica", "\n", "Former", "U", ".", "S", ".", "Assistant", "Secretary", "of", "State", "Johnnie", "Carson", "\n", "guest", "column", "\n", "By", "Johnnie", "Carson", "\n", "Washington", ",", "DC", "\u2014", "\n", "After", "seven", "years", "in", "office", ",", "President", "Barack", "Obama", "has", "already", "engaged", "more", "broadly", "on", "Africa", "than", "any", "previous", "American", "president", ",", "but", "with", "one", "year", "remaining", "in", "the", "White", "House", ",", "there", "are", "still", "a", "few", "things", "he", "should", "do", "before", "he", "leaves", ",", "writes", "\n", "Johnnie", "Carson", "\n", ",", "the", "United", "States", "'", "top", "policy", "-", "maker", "on", "Africa", "in", "the", "first", "Obama", "administration", ".", "\n", "President", "Obama", "has", "significantly", "elevated", "and", "transformed", "America", "'", "s", "engagement", "with", "Africa", ",", "traveling", "widely", "across", "the", "continent", ",", "championing", "the", "renewal", "of", "several", "old", "programs", "and", "launching", "a", "series", "of", "highly", "focused", "new", "initiatives", "that", "could", "help", "speed", "-", "up", "Africa", "'", "s", "economic", "development", ".", "\n", "He", "has", "been", "particularly", "active", "in", "promoting", "economic", "and", "development", "issues", ".", "\n", "He", "fought", "successfully", "for", "the", "renewal", "and", "extension", "of", "the", "African", "Growth", "and", "Opportunity", "Act", "(", "AGOA", ")", ",", "America", "'", "s", "most", "important", "trade", "legislation", "with", "Africa", ";", "he", "hosted", "the", "first", "U", ".", "S", ".", "-", "Africa", "Leadership", "Summit", ",", "attended", "by", "37", "heads", "of", "state", ";", "and", "he", "has", "established", "several", "important", "new", "economic", "programs", ",", "including", "\"", "Power", "Africa", "\"", "-", "to", "expand", "significantly", "electrical", "access", "across", "the", "continent", ";", "\"", "Feed", "the", "Future", "\"", "-", "to", "increase", "household", "food", "production", "and", "to", "generate", "a", "green", "revolution", "throughout", "Africa", ",", "and", "\"", "Trade", "Africa", "\"", "-", "to", "expand", "substantially", "trade", "between", "Africa", "and", "the", "United", "States", ".", "\n", "Recognizing", "the", "growing", "role", "of", "the", "continent", "'", "s", "next", "generation", "of", "young", "leaders", ",", "President", "Obama", "established", "YALI", "-", "the", "Young", "African", "Leaders", "Initiative", ",", "a", "program", "that", "will", "bring", "500", "young", "African", "entrepreneurs", ",", "professionals", "and", "community", "organizers", "to", "the", "U", ".", "S", ".", "each", "year", "for", "the", "next", "several", "years", "for", "five", "weeks", "of", "leadership", ",", "organization", "and", "management", "training", ".", "\n", "But", "what", "next", "?", "\n", "Despite", "his", "rather", "impressive", "list", "of", "accomplishments", ",", "here", "are", "ten", "things", "the", "president", "should", "do", "before", "he", "leaves", "office", "in", "January", "2017", ":", "\n", "Visit", "Nigeria", ":", "\n", "President", "Obama", "has", "traveled", "to", "Africa", "five", "times", "during", "his", "presidency", "-", "but", "he", "has", "not", "visited", "Nigeria", ",", "the", "continent", "'", "s", "economic", ",", "political", ",", "communications", "and", "petroleum", "giant", ",", "and", "its", "most", "important", "state", ".", "It", "is", "the", "continent", "'", "s", "largest", "economy", "-", "almost", "twice", "the", "size", "of", "South", "Africa", "'", "s", "and", "a", "third", "larger", "than", "that", "of", "Egypt", ".", "\n", "It", "is", "also", "the", "continent", "'", "s", "most", "populous", "state", ",", "with", "180", "million", "people", ",", "its", "largest", "Muslim", "country", ",", "and", "its", "largest", "democracy", ".", "\n", "The", "president", "has", "visited", "every", "major", "country", "on", "the", "continent", "except", "Nigeria", ",", "and", "it", "would", "be", "a", "mistake", "for", "him", "to", "leave", "the", "White", "House", "without", "a", "stop", "in", "Lagos", "or", "Abuja", ".", "\n", "Some", "have", "suggested", "that", "security", "may", "be", "a", "concern", "because", "of", "Boko", "Haram", ",", "but", "if", "the", "president", "can", "travel", "safely", "to", "Nairobi", ",", "where", "al", "Shabaab", "has", "carried", "out", "high", "profile", "attacks", "in", "the", "center", "of", "the", "city", ",", "he", "should", "be", "able", "to", "travel", "safely", "to", "Abuja", "or", "Lagos", ".", "He", "is", "bound", "to", "make", "one", "more", "trip", "to", "Europe", ",", "and", "a", "stop", "in", "Nigeria", "-", "similar", "to", "his", "2009", "visit", "to", "Ghana", "-", "would", "not", "be", "a", "major", "diversion", ".", "\n", "Co", "-", "host", "a", "regional", "summit", "on", "democracy", "in", "west", "Africa", ":", "\n", "Strengthening", "democracy", "institutions", ",", "promoting", "good", "governance", "and", "supporting", "free", "and", "fair", "elections", "has", "been", "a", "major", "priority", "for", "the", "Obama", "administration", "in", "Africa", ".", "\n", "During", "his", "first", "official", "visit", "to", "the", "continent", "as", "president", "in", "July", "2009", ",", "President", "Obama", "spoke", "eloquently", "before", "the", "Ghanaian", "Parliament", "about", "the", "importance", "of", "democracy", "and", "good", "governance", "and", "the", "need", "to", "create", "\"", "more", "strong", "institutions", ",", "not", "more", "strong", "men", ".", "\"", "With", "a", "growing", "number", "of", "African", "leaders", "attempting", "to", "extend", "their", "terms", "of", "office", ",", "democracy", "remains", "fragile", "across", "the", "continent", ".", "The", "president", "could", "give", "democracy", "in", "Africa", "a", "boost", "and", "reaffirm", "America", "'", "s", "strong", "commitment", "to", "Africa", "'", "s", "political", "progress", "by", "hosting", "a", "conference", "in", "West", "Africa", "with", "the", "democratically", "-", "elected", "leaders", "of", "Benin", ",", "Burkina", "Faso", ",", "Cape", "Verde", ",", "Liberia", ",", "Niger", ",", "Nigeria", ",", "Mali", ",", "Mauritania", ",", "Senegal", ",", "Sierra", "Leone", "and", "Togo", ".", "\n", "Support", "Nigeria", "'", "s", "permanent", "membership", "in", "the", "G20", ":", "\n", "President", "Obama", "has", "said", "that", "he", "wants", "to", "ensure", "that", "Africa", "has", "a", "place", "at", "the", "table", "to", "participate", "in", "the", "deliberations", "concerning", "major", "global", "political", "and", "economic", "issues", ".", "One", "way", "to", "accomplish", "that", "is", "to", "expand", "or", "reorganize", "the", "G20", "group", "of", "nations", "to", "include", "Nigeria", "as", "a", "permanent", "member", "of", "this", "important", "global", "organization", ".", "\n", "Nigeria", "is", "already", "more", "important", "than", "several", "of", "the", "current", "G20", "members", ",", "notably", "Argentina", "and", "South", "Africa", ",", "and", "over", "the", "next", "two", "decades", "it", "will", "become", "one", "of", "the", "world", "'", "s", "mega", "states", ",", "eclipsing", "several", "other", "G20", "members", "in", "the", "size", "of", "its", "economy", ",", "population", "and", "regional", "influence", ".", "It", "would", "also", "be", "one", "of", "the", "G20", "'", "s", "largest", "democracies", ".", "The", "administration", "should", "make", "the", "inclusion", "of", "Nigeria", "a", "priority", "over", "the", "next", "12", "months", ".", "\n", "Press", "for", "the", "passage", "of", "the", "Electrify", "Africa", "legislation", ":", "\n", "Power", "Africa", "is", "one", "of", "President", "Obama", "'", "s", "most", "important", "signature", "initiatives", ".", "In", "the", "world", "'", "s", "most", "energy", "deficient", "and", "starved", "continent", ",", "it", "is", "intended", "to", "increase", "Africa", "'", "s", "power", "output", "by", "30", ",", "000", "megawatts", "over", "the", "next", "decade", "or", "two", ".", "\n", "But", "like", "a", "number", "of", "recent", "White", "House", "initiatives", ",", "Power", "Africa", "is", "not", "backed", "by", "any", "legislative", "mandate", "and", "could", "be", "easily", "brushed", "aside", "after", "the", "Obama", "administration", "leaves", "office", ".", "The", "program", "enjoys", "bi", "-", "partisan", "support", "in", "the", "Congress", "and", "the", "administration", "needs", "to", "work", "with", "congressional", "leaders", "to", "prioritize", "the", "passage", "of", "the", "Electrify", "Africa", "legislation", ".", "At", "the", "same", "time", ",", "the", "administration", "needs", "to", "create", "a", "senior", "level", "\"", "Power", "Africa", "czar", "\"", "to", "manage", "the", "program", "and", "consider", "moving", "interagency", "responsibility", "for", "oversight", "from", "USAID", "to", "a", "cabinet", "level", "department", ".", "\n", "Instruct", "USAID", "to", "establish", "a", "permanent", "democracy", "fund", ":", "\n", "If", "democracy", "promotion", "is", "an", "important", "priority", ",", "it", "should", "be", "funded", "adequately", "and", "on", "a", "long", "-", "term", "basis", ".", "Today", "that", "is", "not", "the", "case", ".", "Funding", "for", "democracy", "has", "declined", "sharply", "during", "Obama", "'", "s", "second", "term", "despite", "the", "president", "'", "s", "recent", "speeches", "in", "Nairobi", "and", "Addis", "Ababa", ",", "and", "at", "the", "70th", "session", "of", "the", "United", "Nations", "General", "Assembly", "in", "New", "York", ".", "\n", "Dedicated", "and", "hard", "-", "to", "-", "reprogram", "funds", "should", "be", "allocated", "to", "strengthen", "African", "judiciaries", "and", "legislatures", ",", "to", "promote", "civil", "society", "groups", "and", "the", "media", ",", "to", "assist", "women", "'", "s", "organizations", "and", "youth", "groups", "and", "to", "support", "domestic", "and", "international", "election", "monitoring", ".", "Funds", "should", "also", "be", "made", "available", "to", "assist", "local", "organizations", "to", "undertake", "parallel", "vote", "counts", ",", "to", "aid", "local", "election", "commissions", "and", "to", "prevent", "pre", "-", "and", "post", "-", "election", "violence", ".", "\n", "Invite", "Tanzania", "'", "s", "newly", "elected", "President", "John", "Magufuli", "to", "the", "White", "House", ":", "\n", "Tanzania", "is", "the", "most", "populous", "state", "and", "the", "largest", "democracy", "in", "East", "Africa", ".", "It", "is", "also", "one", "of", "the", "largest", "recipients", "of", "U", ".", "S", ".", "development", "assistance", "and", "a", "participant", "in", "all", "of", "Washington", "'", "s", "major", "economic", "initiatives", ".", "\n", "In", "late", "October", ",", "Tanzania", "held", "presidential", "and", "parliamentary", "elections", ".", "The", "elections", "on", "the", "mainland", "went", "well", ",", "but", "those", "on", "the", "island", "of", "Zanzibar", "were", "disputed", ".", "President", "John", "Pombe", "Magufuli", ",", "a", "reform", "-", "minded", "academic", "-", "turned", "-", "politician", ",", "was", "elected", "without", "dispute", ",", "making", "him", "Tanzania", "'", "s", "fifth", "democratically", "-", "elected", "president", "in", "a", "row", ".", "Although", "the", "Zanzibar", "election", "remains", "unresolved", ",", "it", "is", "important", "to", "reach", "out", "to", "Tanzania", "'", "s", "new", "president", "early", "in", "his", "tenure", "to", "continue", "to", "foster", "the", "strong", "relationship", "between", "Dar", "es", "Salaam", "and", "Washington", ".", "\n", "This", "is", "particularly", "important", "since", "President", "Magufuli", "does", "not", "have", "any", "major", "ties", "with", "the", "United", "States", ".", "Tanzania", "also", "has", "a", "critical", "role", "to", "play", "in", "East", "African", "peace", "-", "building", "issues", ",", "particularly", "in", "Burundi", "and", "the", "eastern", "Congo", ".", "Early", "political", "consultations", "with", "President", "Magufuli", "and", "his", "new", "foreign", "minister", ",", "Dr", ".", "Augustine", "Mahiga", ",", "could", "prove", "valuable", "in", "promoting", "stability", "in", "the", "Great", "Lakes", "region", ".", "\n", "Send", "Secretary", "of", "State", "John", "Kerry", "to", "Rwanda", ",", "Burundi", ",", "the", "Democratic", "Republic", "of", "Congo", "(", "DRC", ")", ",", "Uganda", "and", "the", "Republic", "of", "the", "Congo", ":", "\n", "The", "Great", "Lakes", "Region", "of", "Central", "Africa", "is", "one", "of", "the", "most", "volatile", "and", "unstable", "regions", "in", "Africa", ",", "with", "daily", "political", "and", "ethnic", "violence", "in", "Burundi", ",", "and", "with", "the", "leaders", "of", "Rwanda", ",", "the", "DRC", "and", "the", "Congo", "threatening", "to", "extend", "themselves", "in", "office", "in", "violation", "of", "their", "constitutions", ".", "\n", "Although", "time", "is", "running", "out", ",", "there", "is", "still", "an", "opportunity", "to", "prevent", "further", "democratic", "backsliding", "and", "the", "serious", "instability", "and", "violence", "that", "will", "almost", "certainly", "be", "unleashed", "-", "as", "we", "are", "already", "seeing", "in", "Burundi", ".", "High", "level", "engagement", "with", "the", "leaders", "in", "the", "region", "is", "required", ".", "\n", "An", "extended", "visit", "by", "Secretary", "Kerry", "to", "the", "DRC", ",", "Uganda", ",", "Rwanda", "and", "Burundi", "would", "be", "a", "strong", "signal", "of", "Washington", "'", "s", "deep", "concern", "and", "interest", "in", "the", "region", "'", "s", "negative", "political", "and", "security", "trajectory", ".", "Without", "serious", "engagement", "with", "the", "leaders", "on", "the", "ground", ",", "there", "will", "be", "no", "meaningful", "progress", ".", "\n", "Open", "a", "U", ".", "S", ".", "consulate", "in", "northern", "Nigeria", "and", "a", "full", "embassy", "in", "Mogadishu", ":", "\n", "The", "establishment", "of", "a", "consulate", "in", "northern", "Nigeria", "is", "long", "overdue", ".", "More", "than", "half", "of", "Nigeria", "'", "s", "180", "million", "people", "live", "in", "the", "northern", "part", "of", "the", "country", ",", "an", "area", "of", "serious", "political", "and", "security", "concern", ".", "It", "is", "also", "the", "largest", "Muslim", "region", "in", "Africa", "and", "the", "largest", "Muslim", "region", "in", "the", "world", "where", "there", "is", "no", "full", "-", "time", "U", ".", "S", ".", "diplomatic", "presence", ".", "\n", "A", "U", ".", "S", ".", "diplomatic", "mission", "would", "advance", "long", "-", "term", "political", ",", "economic", "and", "security", "interests", "in", "the", "region", "and", "help", "Nigeria", "to", "deal", "with", "the", "economic", ",", "social", "and", "security", "challenges", "it", "faces", "there", ".", "A", "consulate", "in", "Kaduna", ",", "which", "once", "had", "one", ",", "or", "Kano", "would", "convey", "a", "strong", "signal", "to", "the", "Muslim", "community", "that", "Washington", "genuinely", "cares", "about", "the", "people", "in", "the", "region", ".", "\n", "Once", "the", "global", "poster", "child", "of", "a", "failed", "state", ",", "Somalia", "has", "made", "significant", "progress", "over", "the", "past", "seven", "years", ".", "In", "recognition", "of", "the", "progress", ",", "the", "U", ".", "S", ".", "re", "-", "established", "formal", "diplomatic", "relations", "with", "the", "Somali", "government", "in", "Mogadishu", "in", "January", "2013", ".", "\n", "Before", "he", "leaves", "office", ",", "President", "Obama", "should", "take", "one", "more", "step", ".", "He", "should", "reaffirm", "Washington", "'", "s", "commitment", "to", "Somalia", "and", "recognize", "the", "country", "'", "s", "continuing", "progress", "by", "appointing", "a", "Senate", "-", "approved", "ambassador", "and", "opening", "a", "small", ",", "secure", "diplomatic", "embassy", "compound", "in", "downtown", "Mogadishu", ".", "\n", "Elevate", "U", ".", "S", ".", "diplomatic", "relations", "with", "Sudan", ":", "\n", "Relations", "between", "Washington", "and", "Khartoum", "have", "been", "prickly", "and", "frequently", "difficult", "for", "over", "two", "decades", "and", "the", "U", ".", "S", ".", "has", "not", "had", "a", "fully", "accredited", ",", "Senate", "-", "approved", "ambassador", "in", "Sudan", "since", "1997", ".", "\n", "The", "Khartoum", "government", "has", "not", "been", "a", "good", "international", "actor", ".", "(", "Nor", "have", "Cuba", ",", "Myanmar", "or", "Iran", ".", ")", "The", "regime", "in", "Sudan", "has", "carried", "out", "mass", "atrocities", "in", "Darfur", ",", "prevented", "UN", "organizations", "from", "delivering", "food", "aid", "and", "humanitarian", "assistance", "to", "those", "in", "need", "and", "meddled", "in", "the", "affairs", "of", "several", "of", "its", "neighbors", ".", "\n", "But", "U", ".", "S", ".", "-", "imposed", "comprehensive", "sanctions", "on", "Khartoum", "have", "not", "isolated", "the", "country", "nor", "weakened", "its", "government", ".", "The", "U", ".", "S", ".", "should", "review", "its", "current", "policies", "toward", "Khartoum", ",", "and", "consider", "elevating", "its", "diplomatic", "relationship", "to", "full", "ambassadorial", "status", "in", "order", "to", "expand", "America", "'", "s", "dialogue", "and", "probe", "for", "new", "openings", "to", "resolve", "some", "of", "the", "country", "'", "s", "domestic", "and", "regional", "issues", ".", "The", "U", ".", "S", ".", "can", "do", "this", "while", "maintaining", "its", "sanctions", "regime", "on", "the", "government", "and", "its", "demands", "that", "President", "Omar", "al", "-", "Bashir", "address", "the", "serious", "human", "rights", "charges", "against", "him", ".", "\n", "Provide", "a", "status", "report", "on", "the", "results", "of", "the", "U", ".", "S", ".", "-", "Africa", "Leadership", "Summit", ":", "\n", "The", "U", ".", "S", ".", "Africa", "Leadership", "Summit", "has", "been", "one", "of", "the", "high", "points", "in", "the", "Obama", "administration", "'", "s", "engagements", "in", "Africa", ".", "\n", "Leaders", "from", "50", "different", "countries", "participated", "in", "this", "first", "-", "of", "-", "a", "-", "kind", "gathering", "in", "Washington", ".", "A", "number", "of", "new", "programs", "were", "announced", "and", "a", "major", "business", "conference", "associated", "with", "the", "summit", "brought", "dozens", "of", "senior", "American", "business", "leaders", "into", "direct", "contact", "-", "many", "for", "the", "very", "first", "time", "-", "with", "African", "heads", "of", "state", "and", "prominent", "business", "leaders", "from", "the", "continent", ".", "\n", "The", "administration", "has", "never", "released", "a", "comprehensive", "report", "on", "the", "summit", "or", "a", "one", "-", "year", "progress", "report", "on", "the", "implementation", "of", "summit", "agreements", ".", "The", "issuance", "of", "some", "type", "of", "status", "report", "would", "be", "a", "useful", "vehicle", "for", "identifying", "summit", "objectives", "and", "initiatives", "as", "well", "as", "tracking", "the", "progress", "of", "the", "administration", "'", "s", "efforts", ".", "The", "administration", "should", "do", "everything", "it", "can", "to", "sustain", "the", "goodwill", "and", "policy", "initiatives", "that", "emerged", "from", "the", "summit", "to", "help", "ensure", "that", "it", "does", "not", "become", "a", "one", "-", "off", "event", ".", "\n", "The", "administration", "should", "be", "applauded", "for", "its", "continuing", "efforts", "to", "promote", "greater", "American", "trade", "and", "commerce", "with", "Africa", ".", "The", "president", "has", "already", "announced", "that", "he", "plans", "to", "host", "another", "U", ".", "S", ".", "-", "Africa", "Business", "Summit", "similar", "to", "the", "day", "-", "long", "event", "his", "administration", "hosted", "during", "the", "2014", "Leadership", "Summit", ".", "The", "Business", "Summit", "is", "important", ",", "but", "it", "should", "not", "be", "the", "only", "thing", "on", "President", "Obama", "'", "s", "Africa", "agenda", "for", "2016", ".", "He", "has", "time", "to", "do", "more", ",", "and", "he", "should", ".", "Twelve", "months", "is", "a", "long", "time", "in", "the", "life", "of", "an", "administration", "and", "his", "foreign", "policy", "team", "should", "be", "building", "a", "more", "robust", "African", "agenda", "for", "his", "last", "year", "in", "office", ".", "\n", "Ambassador", "Carson", "was", "the", "U", ".", "S", ".", "\n", "Assistant", "Secretary", "of", "State", "for", "African", "Affairs", "\n", "from", "2009", "to", "2012", ".", "He", "is", "currently", "a", "Senior", "Advisor", "at", "the", "\n", "United", "States", "Institute", "of", "Peace", ".", "\n", "Copyright", "\n", "2016", "allAfrica", ".", "com", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u2014", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 25, "end": 26, "input": "tokens", "text": ") \n Photo : \n AllAfrica \n Former U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "AllAfrica", "context": {"start": 25, "end": 26, "input": "tokens", "text": ") \n Photo : \n AllAfrica \n Former U . S "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2648, "end": 2649, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "AllAfrica", "context": {"start": 2648, "end": 2649, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 10, "end": 12, "input": "tokens", "text": "Africa : What Obama Still Owes Africa ( a Visit to Nigeria "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Owes Africa", "context": {"start": 10, "end": 12, "input": "tokens", "text": "Africa : What Obama Still Owes Africa ( a Visit to Nigeria "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 18, "end": 20, "input": "tokens", "text": "a Visit to Nigeria for One Thing ) \n Photo : \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "One Thing", "context": {"start": 18, "end": 20, "input": "tokens", "text": "a Visit to Nigeria for One Thing ) \n Photo : \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 36, "end": 38, "input": "tokens", "text": ". Assistant Secretary of State Johnnie Carson \n guest column \n By "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Johnnie Carson", "context": {"start": 36, "end": 38, "input": "tokens", "text": ". Assistant Secretary of State Johnnie Carson \n guest column \n By "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 43, "end": 45, "input": "tokens", "text": "\n guest column \n By Johnnie Carson \n Washington , DC \u2014 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Johnnie Carson", "context": {"start": 43, "end": 45, "input": "tokens", "text": "\n guest column \n By Johnnie Carson \n Washington , DC \u2014 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 58, "end": 60, "input": "tokens", "text": "years in office , President Barack Obama has already engaged more broadly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Barack Obama", "context": {"start": 58, "end": 60, "input": "tokens", "text": "years in office , President Barack Obama has already engaged more broadly "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 98, "end": 100, "input": "tokens", "text": "he leaves , writes \n Johnnie Carson \n , the United States "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Johnnie Carson", "context": {"start": 98, "end": 100, "input": "tokens", "text": "he leaves , writes \n Johnnie Carson \n , the United States "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 120, "end": 121, "input": "tokens", "text": "Obama administration . \n President Obama has significantly elevated and transformed "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 120, "end": 121, "input": "tokens", "text": "Obama administration . \n President Obama has significantly elevated and transformed "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 309, "end": 310, "input": "tokens", "text": "of young leaders , President Obama established YALI - the Young "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 309, "end": 310, "input": "tokens", "text": "of young leaders , President Obama established YALI - the Young "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 393, "end": 394, "input": "tokens", "text": "Visit Nigeria : \n President Obama has traveled to Africa five "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 393, "end": 394, "input": "tokens", "text": "Visit Nigeria : \n President Obama has traveled to Africa five "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 545, "end": 547, "input": "tokens", "text": "safely to Nairobi , where al Shabaab has carried out high profile "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "al Shabaab", "context": {"start": 545, "end": 547, "input": "tokens", "text": "safely to Nairobi , where al Shabaab has carried out high profile "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 659, "end": 660, "input": "tokens", "text": "in July 2009 , President Obama spoke eloquently before the Ghanaian "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 659, "end": 660, "input": "tokens", "text": "in July 2009 , President Obama spoke eloquently before the Ghanaian "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 786, "end": 787, "input": "tokens", "text": "the G20 : \n President Obama has said that he wants "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 786, "end": 787, "input": "tokens", "text": "the G20 : \n President Obama has said that he wants "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 945, "end": 946, "input": "tokens", "text": "Africa is one of President Obama ' s most important signature "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 945, "end": 946, "input": "tokens", "text": "Africa is one of President Obama ' s most important signature "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 998, "end": 1000, "input": "tokens", "text": "recent White House initiatives , Power Africa is not backed by any "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Power Africa", "context": {"start": 998, "end": 1000, "input": "tokens", "text": "recent White House initiatives , Power Africa is not backed by any "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1244, "end": 1246, "input": "tokens", "text": "- election violence . \n Invite Tanzania ' s newly elected President "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Invite Tanzania", "context": {"start": 1244, "end": 1246, "input": "tokens", "text": "- election violence . \n Invite Tanzania ' s newly elected President "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1251, "end": 1253, "input": "tokens", "text": "' s newly elected President John Magufuli to the White House : "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "John Magufuli", "context": {"start": 1251, "end": 1253, "input": "tokens", "text": "' s newly elected President John Magufuli to the White House : "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1332, "end": 1335, "input": "tokens", "text": "Zanzibar were disputed . President John Pombe Magufuli , a reform - minded "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "John Pombe Magufuli", "context": {"start": 1332, "end": 1335, "input": "tokens", "text": "Zanzibar were disputed . President John Pombe Magufuli , a reform - minded "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1367, "end": 1368, "input": "tokens", "text": "a row . Although the Zanzibar election remains unresolved , it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Zanzibar", "context": {"start": 1367, "end": 1368, "input": "tokens", "text": "a row . Although the Zanzibar election remains unresolved , it "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1409, "end": 1410, "input": "tokens", "text": "is particularly important since President Magufuli does not have any major "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Magufuli", "context": {"start": 1409, "end": 1410, "input": "tokens", "text": "is particularly important since President Magufuli does not have any major "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1450, "end": 1451, "input": "tokens", "text": "Early political consultations with President Magufuli and his new foreign minister "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Magufuli", "context": {"start": 1450, "end": 1451, "input": "tokens", "text": "Early political consultations with President Magufuli and his new foreign minister "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1457, "end": 1458, "input": "tokens", "text": "his new foreign minister , Dr . Augustine Mahiga , could "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Dr", "context": {"start": 1457, "end": 1458, "input": "tokens", "text": "his new foreign minister , Dr . Augustine Mahiga , could "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1459, "end": 1461, "input": "tokens", "text": "foreign minister , Dr . Augustine Mahiga , could prove valuable in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Augustine Mahiga", "context": {"start": 1459, "end": 1461, "input": "tokens", "text": "foreign minister , Dr . Augustine Mahiga , could prove valuable in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1479, "end": 1481, "input": "tokens", "text": "\n Send Secretary of State John Kerry to Rwanda , Burundi , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "John Kerry", "context": {"start": 1479, "end": 1481, "input": "tokens", "text": "\n Send Secretary of State John Kerry to Rwanda , Burundi , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1612, "end": 1613, "input": "tokens", "text": "An extended visit by Secretary Kerry to the DRC , Uganda "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Kerry", "context": {"start": 1612, "end": 1613, "input": "tokens", "text": "An extended visit by Secretary Kerry to the DRC , Uganda "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1803, "end": 1804, "input": "tokens", "text": "once had one , or Kano would convey a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Kano", "context": {"start": 1803, "end": 1804, "input": "tokens", "text": "once had one , or Kano would convey a strong signal "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1880, "end": 1881, "input": "tokens", "text": "he leaves office , President Obama should take one more step "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 1880, "end": 1881, "input": "tokens", "text": "he leaves office , President Obama should take one more step "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1990, "end": 1991, "input": "tokens", "text": "( Nor have Cuba , Myanmar or Iran . ) The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Myanmar", "context": {"start": 1990, "end": 1991, "input": "tokens", "text": "( Nor have Cuba , Myanmar or Iran . ) The "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2124, "end": 2128, "input": "tokens", "text": "and its demands that President Omar al - Bashir address the serious human rights "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Omar al - Bashir", "context": {"start": 2124, "end": 2128, "input": "tokens", "text": "and its demands that President Omar al - Bashir address the serious human rights "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2411, "end": 2412, "input": "tokens", "text": "the only thing on President Obama ' s Africa agenda for "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 2411, "end": 2412, "input": "tokens", "text": "the only thing on President Obama ' s Africa agenda for "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2463, "end": 2465, "input": "tokens", "text": "year in office . \n Ambassador Carson was the U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Ambassador Carson", "context": {"start": 2463, "end": 2465, "input": "tokens", "text": "year in office . \n Ambassador Carson was the U . S "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 4 January 2016 \n Africa : What Obama Still Owes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 4 January 2016 \n Africa : What Obama Still Owes "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 66, "end": 67, "input": "tokens", "text": "already engaged more broadly on Africa than any previous American president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 66, "end": 67, "input": "tokens", "text": "already engaged more broadly on Africa than any previous American president "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 111, "end": 112, "input": "tokens", "text": "top policy - maker on Africa in the first Obama administration "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 111, "end": 112, "input": "tokens", "text": "top policy - maker on Africa in the first Obama administration "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 131, "end": 132, "input": "tokens", "text": "America ' s engagement with Africa , traveling widely across the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 131, "end": 132, "input": "tokens", "text": "America ' s engagement with Africa , traveling widely across the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 161, "end": 162, "input": "tokens", "text": "could help speed - up Africa ' s economic development . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 161, "end": 162, "input": "tokens", "text": "could help speed - up Africa ' s economic development . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 208, "end": 209, "input": "tokens", "text": "most important trade legislation with Africa ; he hosted the first "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 208, "end": 209, "input": "tokens", "text": "most important trade legislation with Africa ; he hosted the first "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 273, "end": 274, "input": "tokens", "text": "generate a green revolution throughout Africa , and \" Trade Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 273, "end": 274, "input": "tokens", "text": "generate a green revolution throughout Africa , and \" Trade Africa "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 286, "end": 287, "input": "tokens", "text": "to expand substantially trade between Africa and the United States . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 286, "end": 287, "input": "tokens", "text": "to expand substantially trade between Africa and the United States . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 397, "end": 398, "input": "tokens", "text": "President Obama has traveled to Africa five times during his presidency "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 397, "end": 398, "input": "tokens", "text": "President Obama has traveled to Africa five times during his presidency "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 581, "end": 582, "input": "tokens", "text": "make one more trip to Europe , and a stop in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Europe", "context": {"start": 581, "end": 582, "input": "tokens", "text": "make one more trip to Europe , and a stop in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 615, "end": 616, "input": "tokens", "text": "summit on democracy in west Africa : \n Strengthening democracy institutions "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 615, "end": 616, "input": "tokens", "text": "summit on democracy in west Africa : \n Strengthening democracy institutions "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 641, "end": 642, "input": "tokens", "text": "for the Obama administration in Africa . \n During his first "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 641, "end": 642, "input": "tokens", "text": "for the Obama administration in Africa . \n During his first "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 718, "end": 719, "input": "tokens", "text": "president could give democracy in Africa a boost and reaffirm America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 718, "end": 719, "input": "tokens", "text": "president could give democracy in Africa a boost and reaffirm America "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 729, "end": 730, "input": "tokens", "text": "' s strong commitment to Africa ' s political progress by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 729, "end": 730, "input": "tokens", "text": "' s strong commitment to Africa ' s political progress by "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 795, "end": 796, "input": "tokens", "text": "he wants to ensure that Africa has a place at the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 795, "end": 796, "input": "tokens", "text": "he wants to ensure that Africa has a place at the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 970, "end": 971, "input": "tokens", "text": "it is intended to increase Africa ' s power output by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 970, "end": 971, "input": "tokens", "text": "it is intended to increase Africa ' s power output by "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1730, "end": 1731, "input": "tokens", "text": "the largest Muslim region in Africa and the largest Muslim region "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 1730, "end": 1731, "input": "tokens", "text": "the largest Muslim region in Africa and the largest Muslim region "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2180, "end": 2181, "input": "tokens", "text": "administration ' s engagements in Africa . \n Leaders from 50 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 2180, "end": 2181, "input": "tokens", "text": "administration ' s engagements in Africa . \n Leaders from 50 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2358, "end": 2359, "input": "tokens", "text": "American trade and commerce with Africa . The president has already "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 2358, "end": 2359, "input": "tokens", "text": "American trade and commerce with Africa . The president has already "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2414, "end": 2415, "input": "tokens", "text": "on President Obama ' s Africa agenda for 2016 . He "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 2414, "end": 2415, "input": "tokens", "text": "on President Obama ' s Africa agenda for 2016 . He "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2618, "end": 2619, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "AllAfrica", "context": {"start": 2618, "end": 2619, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "money": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 1700, "end": 1703, "input": "tokens", "text": "than half of Nigeria ' s 180 million people live in the northern "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "s 180 million", "context": {"start": 1700, "end": 1703, "input": "tokens", "text": "than half of Nigeria ' s 180 million people live in the northern "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 35, "end": 36, "input": "tokens", "text": "S . Assistant Secretary of State Johnnie Carson \n guest column "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "State", "context": {"start": 35, "end": 36, "input": "tokens", "text": "S . Assistant Secretary of State Johnnie Carson \n guest column "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 48, "end": 50, "input": "tokens", "text": "Johnnie Carson \n Washington , DC \u2014 \n After seven years in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "DC \u2014", "context": {"start": 48, "end": 50, "input": "tokens", "text": "Johnnie Carson \n Washington , DC \u2014 \n After seven years in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 79, "end": 82, "input": "tokens", "text": "with one year remaining in the White House , there are still a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the White House", "context": {"start": 79, "end": 82, "input": "tokens", "text": "with one year remaining in the White House , there are still a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 190, "end": 196, "input": "tokens", "text": "the renewal and extension of the African Growth and Opportunity Act ( AGOA ) , America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the African Growth and Opportunity Act", "context": {"start": 190, "end": 196, "input": "tokens", "text": "the renewal and extension of the African Growth and Opportunity Act ( AGOA ) , America "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 197, "end": 198, "input": "tokens", "text": "Growth and Opportunity Act ( AGOA ) , America ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "AGOA", "context": {"start": 197, "end": 198, "input": "tokens", "text": "Growth and Opportunity Act ( AGOA ) , America ' s "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 242, "end": 244, "input": "tokens", "text": "economic programs , including \" Power Africa \" - to expand significantly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Power Africa", "context": {"start": 242, "end": 244, "input": "tokens", "text": "economic programs , including \" Power Africa \" - to expand significantly "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 277, "end": 279, "input": "tokens", "text": "throughout Africa , and \" Trade Africa \" - to expand substantially "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Trade Africa", "context": {"start": 277, "end": 279, "input": "tokens", "text": "throughout Africa , and \" Trade Africa \" - to expand substantially "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 311, "end": 312, "input": "tokens", "text": "leaders , President Obama established YALI - the Young African Leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "YALI", "context": {"start": 311, "end": 312, "input": "tokens", "text": "leaders , President Obama established YALI - the Young African Leaders "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 313, "end": 318, "input": "tokens", "text": "President Obama established YALI - the Young African Leaders Initiative , a program that will "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Young African Leaders Initiative", "context": {"start": 313, "end": 318, "input": "tokens", "text": "President Obama established YALI - the Young African Leaders Initiative , a program that will "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 517, "end": 518, "input": "tokens", "text": "a stop in Lagos or Abuja . \n Some have suggested "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Abuja", "context": {"start": 517, "end": 518, "input": "tokens", "text": "a stop in Lagos or Abuja . \n Some have suggested "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 531, "end": 533, "input": "tokens", "text": "be a concern because of Boko Haram , but if the president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Boko Haram", "context": {"start": 531, "end": 533, "input": "tokens", "text": "be a concern because of Boko Haram , but if the president "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 663, "end": 666, "input": "tokens", "text": "President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Ghanaian Parliament", "context": {"start": 663, "end": 666, "input": "tokens", "text": "President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 768, "end": 770, "input": "tokens", "text": ", Mauritania , Senegal , Sierra Leone and Togo . \n Support "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Sierra Leone", "context": {"start": 768, "end": 770, "input": "tokens", "text": ", Mauritania , Senegal , Sierra Leone and Togo . \n Support "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 884, "end": 885, "input": "tokens", "text": "states , eclipsing several other G20 members in the size of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "G20", "context": {"start": 884, "end": 885, "input": "tokens", "text": "states , eclipsing several other G20 members in the size of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 905, "end": 906, "input": "tokens", "text": "also be one of the G20 ' s largest democracies . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "G20", "context": {"start": 905, "end": 906, "input": "tokens", "text": "also be one of the G20 ' s largest democracies . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 933, "end": 936, "input": "tokens", "text": "Press for the passage of the Electrify Africa legislation : \n Power Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Electrify Africa", "context": {"start": 933, "end": 936, "input": "tokens", "text": "Press for the passage of the Electrify Africa legislation : \n Power Africa "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 939, "end": 941, "input": "tokens", "text": "Electrify Africa legislation : \n Power Africa is one of President Obama "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Power Africa", "context": {"start": 939, "end": 941, "input": "tokens", "text": "Electrify Africa legislation : \n Power Africa is one of President Obama "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 994, "end": 996, "input": "tokens", "text": "like a number of recent White House initiatives , Power Africa is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "White House", "context": {"start": 994, "end": 996, "input": "tokens", "text": "like a number of recent White House initiatives , Power Africa is "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1015, "end": 1016, "input": "tokens", "text": "easily brushed aside after the Obama administration leaves office . The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 1015, "end": 1016, "input": "tokens", "text": "easily brushed aside after the Obama administration leaves office . The "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1029, "end": 1030, "input": "tokens", "text": "- partisan support in the Congress and the administration needs to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Congress", "context": {"start": 1029, "end": 1030, "input": "tokens", "text": "- partisan support in the Congress and the administration needs to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1044, "end": 1047, "input": "tokens", "text": "to prioritize the passage of the Electrify Africa legislation . At the same "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Electrify Africa", "context": {"start": 1044, "end": 1047, "input": "tokens", "text": "to prioritize the passage of the Electrify Africa legislation . At the same "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1063, "end": 1065, "input": "tokens", "text": "create a senior level \" Power Africa czar \" to manage the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Power Africa", "context": {"start": 1063, "end": 1065, "input": "tokens", "text": "create a senior level \" Power Africa czar \" to manage the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1079, "end": 1080, "input": "tokens", "text": "interagency responsibility for oversight from USAID to a cabinet level department "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "USAID", "context": {"start": 1079, "end": 1080, "input": "tokens", "text": "interagency responsibility for oversight from USAID to a cabinet level department "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1156, "end": 1161, "input": "tokens", "text": "at the 70th session of the United Nations General Assembly in New York . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the United Nations General Assembly", "context": {"start": 1156, "end": 1161, "input": "tokens", "text": "at the 70th session of the United Nations General Assembly in New York . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1254, "end": 1257, "input": "tokens", "text": "elected President John Magufuli to the White House : \n Tanzania is the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the White House", "context": {"start": 1254, "end": 1257, "input": "tokens", "text": "elected President John Magufuli to the White House : \n Tanzania is the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1396, "end": 1399, "input": "tokens", "text": "foster the strong relationship between Dar es Salaam and Washington . \n This "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Dar es Salaam", "context": {"start": 1396, "end": 1399, "input": "tokens", "text": "foster the strong relationship between Dar es Salaam and Washington . \n This "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1478, "end": 1479, "input": "tokens", "text": ". \n Send Secretary of State John Kerry to Rwanda , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "State", "context": {"start": 1478, "end": 1479, "input": "tokens", "text": ". \n Send Secretary of State John Kerry to Rwanda , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1486, "end": 1490, "input": "tokens", "text": "to Rwanda , Burundi , the Democratic Republic of Congo ( DRC ) , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Democratic Republic of", "context": {"start": 1486, "end": 1490, "input": "tokens", "text": "to Rwanda , Burundi , the Democratic Republic of Congo ( DRC ) , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1492, "end": 1493, "input": "tokens", "text": "Democratic Republic of Congo ( DRC ) , Uganda and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "DRC", "context": {"start": 1492, "end": 1493, "input": "tokens", "text": "Democratic Republic of Congo ( DRC ) , Uganda and the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1504, "end": 1509, "input": "tokens", "text": "of the Congo : \n The Great Lakes Region of Central Africa is one of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "The Great Lakes Region of", "context": {"start": 1504, "end": 1509, "input": "tokens", "text": "of the Congo : \n The Great Lakes Region of Central Africa is one of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1540, "end": 1541, "input": "tokens", "text": "leaders of Rwanda , the DRC and the Congo threatening to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "DRC", "context": {"start": 1540, "end": 1541, "input": "tokens", "text": "leaders of Rwanda , the DRC and the Congo threatening to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1615, "end": 1616, "input": "tokens", "text": "by Secretary Kerry to the DRC , Uganda , Rwanda and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "DRC", "context": {"start": 1615, "end": 1616, "input": "tokens", "text": "by Secretary Kerry to the DRC , Uganda , Rwanda and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1666, "end": 1667, "input": "tokens", "text": "progress . \n Open a U . S . consulate in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "U", "context": {"start": 1666, "end": 1667, "input": "tokens", "text": "progress . \n Open a U . S . consulate in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1907, "end": 1908, "input": "tokens", "text": "continuing progress by appointing a Senate - approved ambassador and opening "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Senate", "context": {"start": 1907, "end": 1908, "input": "tokens", "text": "continuing progress by appointing a Senate - approved ambassador and opening "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1964, "end": 1965, "input": "tokens", "text": "had a fully accredited , Senate - approved ambassador in Sudan "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Senate", "context": {"start": 1964, "end": 1965, "input": "tokens", "text": "had a fully accredited , Senate - approved ambassador in Sudan "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2008, "end": 2009, "input": "tokens", "text": "atrocities in Darfur , prevented UN organizations from delivering food aid "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "UN", "context": {"start": 2008, "end": 2009, "input": "tokens", "text": "atrocities in Darfur , prevented UN organizations from delivering food aid "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2162, "end": 2165, "input": "tokens", "text": "The U . S . Africa Leadership Summit has been one of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa Leadership Summit", "context": {"start": 2162, "end": 2165, "input": "tokens", "text": "The U . S . Africa Leadership Summit has been one of the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2174, "end": 2175, "input": "tokens", "text": "the high points in the Obama administration ' s engagements in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 2174, "end": 2175, "input": "tokens", "text": "the high points in the Obama administration ' s engagements in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2371, "end": 2372, "input": "tokens", "text": "he plans to host another U . S . - Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "U", "context": {"start": 2371, "end": 2372, "input": "tokens", "text": "he plans to host another U . S . - Africa "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2395, "end": 2398, "input": "tokens", "text": "the 2014 Leadership Summit . The Business Summit is important , but it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "The Business Summit", "context": {"start": 2395, "end": 2398, "input": "tokens", "text": "the 2014 Leadership Summit . The Business Summit is important , but it "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2475, "end": 2476, "input": "tokens", "text": ". \n Assistant Secretary of State for African Affairs \n from "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "State", "context": {"start": 2475, "end": 2476, "input": "tokens", "text": ". \n Assistant Secretary of State for African Affairs \n from "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2512, "end": 2513, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Distributed", "context": {"start": 2512, "end": 2513, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2514, "end": 2517, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "AllAfrica Global Media", "context": {"start": 2514, "end": 2517, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 16, "end": 17, "input": "tokens", "text": "Africa ( a Visit to Nigeria for One Thing ) \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 16, "end": 17, "input": "tokens", "text": "Africa ( a Visit to Nigeria for One Thing ) \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 46, "end": 47, "input": "tokens", "text": "\n By Johnnie Carson \n Washington , DC \u2014 \n After "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 46, "end": 47, "input": "tokens", "text": "\n By Johnnie Carson \n Washington , DC \u2014 \n After "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 102, "end": 105, "input": "tokens", "text": "\n Johnnie Carson \n , the United States ' top policy - maker "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the United States", "context": {"start": 102, "end": 105, "input": "tokens", "text": "\n Johnnie Carson \n , the United States ' top policy - maker "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 126, "end": 127, "input": "tokens", "text": "has significantly elevated and transformed America ' s engagement with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "America", "context": {"start": 126, "end": 127, "input": "tokens", "text": "has significantly elevated and transformed America ' s engagement with Africa "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 200, "end": 201, "input": "tokens", "text": "Act ( AGOA ) , America ' s most important trade "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "America", "context": {"start": 200, "end": 201, "input": "tokens", "text": "Act ( AGOA ) , America ' s most important trade "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 288, "end": 291, "input": "tokens", "text": "substantially trade between Africa and the United States . \n Recognizing the growing "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the United States", "context": {"start": 288, "end": 291, "input": "tokens", "text": "substantially trade between Africa and the United States . \n Recognizing the growing "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 389, "end": 390, "input": "tokens", "text": "January 2017 : \n Visit Nigeria : \n President Obama has "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 389, "end": 390, "input": "tokens", "text": "January 2017 : \n Visit Nigeria : \n President Obama has "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 409, "end": 410, "input": "tokens", "text": "but he has not visited Nigeria , the continent ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 409, "end": 410, "input": "tokens", "text": "but he has not visited Nigeria , the continent ' s "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 444, "end": 446, "input": "tokens", "text": "almost twice the size of South Africa ' s and a third "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "South Africa", "context": {"start": 444, "end": 446, "input": "tokens", "text": "almost twice the size of South Africa ' s and a third "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 455, "end": 456, "input": "tokens", "text": "third larger than that of Egypt . \n It is also "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Egypt", "context": {"start": 455, "end": 456, "input": "tokens", "text": "third larger than that of Egypt . \n It is also "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 496, "end": 497, "input": "tokens", "text": "country on the continent except Nigeria , and it would be "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 496, "end": 497, "input": "tokens", "text": "country on the continent except Nigeria , and it would be "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 515, "end": 516, "input": "tokens", "text": "House without a stop in Lagos or Abuja . \n Some "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Lagos", "context": {"start": 515, "end": 516, "input": "tokens", "text": "House without a stop in Lagos or Abuja . \n Some "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 542, "end": 543, "input": "tokens", "text": "president can travel safely to Nairobi , where al Shabaab has "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nairobi", "context": {"start": 542, "end": 543, "input": "tokens", "text": "president can travel safely to Nairobi , where al Shabaab has "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 568, "end": 569, "input": "tokens", "text": "able to travel safely to Abuja or Lagos . He is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Abuja", "context": {"start": 568, "end": 569, "input": "tokens", "text": "able to travel safely to Abuja or Lagos . He is "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 570, "end": 571, "input": "tokens", "text": "travel safely to Abuja or Lagos . He is bound to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Lagos", "context": {"start": 570, "end": 571, "input": "tokens", "text": "travel safely to Abuja or Lagos . He is bound to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 587, "end": 588, "input": "tokens", "text": ", and a stop in Nigeria - similar to his 2009 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 587, "end": 588, "input": "tokens", "text": ", and a stop in Nigeria - similar to his 2009 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 595, "end": 596, "input": "tokens", "text": "to his 2009 visit to Ghana - would not be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Ghana", "context": {"start": 595, "end": 596, "input": "tokens", "text": "to his 2009 visit to Ghana - would not be a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 638, "end": 639, "input": "tokens", "text": "a major priority for the Obama administration in Africa . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 638, "end": 639, "input": "tokens", "text": "a major priority for the Obama administration in Africa . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 723, "end": 724, "input": "tokens", "text": "Africa a boost and reaffirm America ' s strong commitment to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "America", "context": {"start": 723, "end": 724, "input": "tokens", "text": "Africa a boost and reaffirm America ' s strong commitment to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 739, "end": 741, "input": "tokens", "text": "by hosting a conference in West Africa with the democratically - elected "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "West Africa", "context": {"start": 739, "end": 741, "input": "tokens", "text": "by hosting a conference in West Africa with the democratically - elected "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 748, "end": 749, "input": "tokens", "text": "democratically - elected leaders of Benin , Burkina Faso , Cape "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Benin", "context": {"start": 748, "end": 749, "input": "tokens", "text": "democratically - elected leaders of Benin , Burkina Faso , Cape "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 750, "end": 752, "input": "tokens", "text": "elected leaders of Benin , Burkina Faso , Cape Verde , Liberia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burkina Faso", "context": {"start": 750, "end": 752, "input": "tokens", "text": "elected leaders of Benin , Burkina Faso , Cape Verde , Liberia "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 753, "end": 755, "input": "tokens", "text": "Benin , Burkina Faso , Cape Verde , Liberia , Niger , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Cape Verde", "context": {"start": 753, "end": 755, "input": "tokens", "text": "Benin , Burkina Faso , Cape Verde , Liberia , Niger , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 756, "end": 757, "input": "tokens", "text": "Faso , Cape Verde , Liberia , Niger , Nigeria , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Liberia", "context": {"start": 756, "end": 757, "input": "tokens", "text": "Faso , Cape Verde , Liberia , Niger , Nigeria , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 758, "end": 759, "input": "tokens", "text": "Cape Verde , Liberia , Niger , Nigeria , Mali , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Niger", "context": {"start": 758, "end": 759, "input": "tokens", "text": "Cape Verde , Liberia , Niger , Nigeria , Mali , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 760, "end": 761, "input": "tokens", "text": ", Liberia , Niger , Nigeria , Mali , Mauritania , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 760, "end": 761, "input": "tokens", "text": ", Liberia , Niger , Nigeria , Mali , Mauritania , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 762, "end": 763, "input": "tokens", "text": ", Niger , Nigeria , Mali , Mauritania , Senegal , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Mali", "context": {"start": 762, "end": 763, "input": "tokens", "text": ", Niger , Nigeria , Mali , Mauritania , Senegal , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 764, "end": 765, "input": "tokens", "text": ", Nigeria , Mali , Mauritania , Senegal , Sierra Leone "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Mauritania", "context": {"start": 764, "end": 765, "input": "tokens", "text": ", Nigeria , Mali , Mauritania , Senegal , Sierra Leone "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 766, "end": 767, "input": "tokens", "text": ", Mali , Mauritania , Senegal , Sierra Leone and Togo "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Senegal", "context": {"start": 766, "end": 767, "input": "tokens", "text": ", Mali , Mauritania , Senegal , Sierra Leone and Togo "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 771, "end": 772, "input": "tokens", "text": "Senegal , Sierra Leone and Togo . \n Support Nigeria ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Togo", "context": {"start": 771, "end": 772, "input": "tokens", "text": "Senegal , Sierra Leone and Togo . \n Support Nigeria ' "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 774, "end": 776, "input": "tokens", "text": "Leone and Togo . \n Support Nigeria ' s permanent membership in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Support Nigeria", "context": {"start": 774, "end": 776, "input": "tokens", "text": "Leone and Togo . \n Support Nigeria ' s permanent membership in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 832, "end": 833, "input": "tokens", "text": "group of nations to include Nigeria as a permanent member of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 832, "end": 833, "input": "tokens", "text": "group of nations to include Nigeria as a permanent member of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 844, "end": 845, "input": "tokens", "text": "important global organization . \n Nigeria is already more important than "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 844, "end": 845, "input": "tokens", "text": "important global organization . \n Nigeria is already more important than "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 858, "end": 859, "input": "tokens", "text": "current G20 members , notably Argentina and South Africa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Argentina", "context": {"start": 858, "end": 859, "input": "tokens", "text": "current G20 members , notably Argentina and South Africa , and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 860, "end": 862, "input": "tokens", "text": "members , notably Argentina and South Africa , and over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "South Africa", "context": {"start": 860, "end": 862, "input": "tokens", "text": "members , notably Argentina and South Africa , and over the next "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 918, "end": 919, "input": "tokens", "text": "should make the inclusion of Nigeria a priority over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 918, "end": 919, "input": "tokens", "text": "should make the inclusion of Nigeria a priority over the next "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1145, "end": 1146, "input": "tokens", "text": "' s recent speeches in Nairobi and Addis Ababa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nairobi", "context": {"start": 1145, "end": 1146, "input": "tokens", "text": "' s recent speeches in Nairobi and Addis Ababa , and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1147, "end": 1149, "input": "tokens", "text": "recent speeches in Nairobi and Addis Ababa , and at the 70th "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Addis Ababa", "context": {"start": 1147, "end": 1149, "input": "tokens", "text": "recent speeches in Nairobi and Addis Ababa , and at the 70th "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1259, "end": 1260, "input": "tokens", "text": "the White House : \n Tanzania is the most populous state "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Tanzania", "context": {"start": 1259, "end": 1260, "input": "tokens", "text": "the White House : \n Tanzania is the most populous state "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1270, "end": 1272, "input": "tokens", "text": "and the largest democracy in East Africa . It is also one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "East Africa", "context": {"start": 1270, "end": 1272, "input": "tokens", "text": "and the largest democracy in East Africa . It is also one "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1294, "end": 1295, "input": "tokens", "text": "a participant in all of Washington ' s major economic initiatives "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1294, "end": 1295, "input": "tokens", "text": "a participant in all of Washington ' s major economic initiatives "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1306, "end": 1307, "input": "tokens", "text": "\n In late October , Tanzania held presidential and parliamentary elections "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Tanzania", "context": {"start": 1306, "end": 1307, "input": "tokens", "text": "\n In late October , Tanzania held presidential and parliamentary elections "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1327, "end": 1328, "input": "tokens", "text": "those on the island of Zanzibar were disputed . President John "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Zanzibar", "context": {"start": 1327, "end": 1328, "input": "tokens", "text": "those on the island of Zanzibar were disputed . President John "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1353, "end": 1354, "input": "tokens", "text": "without dispute , making him Tanzania ' s fifth democratically - "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Tanzania", "context": {"start": 1353, "end": 1354, "input": "tokens", "text": "without dispute , making him Tanzania ' s fifth democratically - "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1379, "end": 1380, "input": "tokens", "text": "important to reach out to Tanzania ' s new president early "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Tanzania", "context": {"start": 1379, "end": 1380, "input": "tokens", "text": "important to reach out to Tanzania ' s new president early "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1400, "end": 1401, "input": "tokens", "text": "between Dar es Salaam and Washington . \n This is particularly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1400, "end": 1401, "input": "tokens", "text": "between Dar es Salaam and Washington . \n This is particularly "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1417, "end": 1420, "input": "tokens", "text": "have any major ties with the United States . Tanzania also has a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the United States", "context": {"start": 1417, "end": 1420, "input": "tokens", "text": "have any major ties with the United States . Tanzania also has a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1421, "end": 1422, "input": "tokens", "text": "with the United States . Tanzania also has a critical role "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Tanzania", "context": {"start": 1421, "end": 1422, "input": "tokens", "text": "with the United States . Tanzania also has a critical role "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1439, "end": 1440, "input": "tokens", "text": "building issues , particularly in Burundi and the eastern Congo . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burundi", "context": {"start": 1439, "end": 1440, "input": "tokens", "text": "building issues , particularly in Burundi and the eastern Congo . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1443, "end": 1444, "input": "tokens", "text": "in Burundi and the eastern Congo . Early political consultations with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Congo", "context": {"start": 1443, "end": 1444, "input": "tokens", "text": "in Burundi and the eastern Congo . Early political consultations with "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1482, "end": 1483, "input": "tokens", "text": "of State John Kerry to Rwanda , Burundi , the Democratic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Rwanda", "context": {"start": 1482, "end": 1483, "input": "tokens", "text": "of State John Kerry to Rwanda , Burundi , the Democratic "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1484, "end": 1485, "input": "tokens", "text": "John Kerry to Rwanda , Burundi , the Democratic Republic of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burundi", "context": {"start": 1484, "end": 1485, "input": "tokens", "text": "John Kerry to Rwanda , Burundi , the Democratic Republic of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1495, "end": 1496, "input": "tokens", "text": "Congo ( DRC ) , Uganda and the Republic of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Uganda", "context": {"start": 1495, "end": 1496, "input": "tokens", "text": "Congo ( DRC ) , Uganda and the Republic of the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1497, "end": 1501, "input": "tokens", "text": "DRC ) , Uganda and the Republic of the Congo : \n The Great "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Republic of the", "context": {"start": 1497, "end": 1501, "input": "tokens", "text": "DRC ) , Uganda and the Republic of the Congo : \n The Great "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1501, "end": 1502, "input": "tokens", "text": "and the Republic of the Congo : \n The Great Lakes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Congo", "context": {"start": 1501, "end": 1502, "input": "tokens", "text": "and the Republic of the Congo : \n The Great Lakes "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1521, "end": 1522, "input": "tokens", "text": "volatile and unstable regions in Africa , with daily political and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 1521, "end": 1522, "input": "tokens", "text": "volatile and unstable regions in Africa , with daily political and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1530, "end": 1531, "input": "tokens", "text": "political and ethnic violence in Burundi , and with the leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burundi", "context": {"start": 1530, "end": 1531, "input": "tokens", "text": "political and ethnic violence in Burundi , and with the leaders "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1537, "end": 1538, "input": "tokens", "text": "and with the leaders of Rwanda , the DRC and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Rwanda", "context": {"start": 1537, "end": 1538, "input": "tokens", "text": "and with the leaders of Rwanda , the DRC and the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1543, "end": 1544, "input": "tokens", "text": ", the DRC and the Congo threatening to extend themselves in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Congo", "context": {"start": 1543, "end": 1544, "input": "tokens", "text": ", the DRC and the Congo threatening to extend themselves in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1592, "end": 1593, "input": "tokens", "text": "we are already seeing in Burundi . High level engagement with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burundi", "context": {"start": 1592, "end": 1593, "input": "tokens", "text": "we are already seeing in Burundi . High level engagement with "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1617, "end": 1618, "input": "tokens", "text": "Kerry to the DRC , Uganda , Rwanda and Burundi would "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Uganda", "context": {"start": 1617, "end": 1618, "input": "tokens", "text": "Kerry to the DRC , Uganda , Rwanda and Burundi would "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1619, "end": 1620, "input": "tokens", "text": "the DRC , Uganda , Rwanda and Burundi would be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Rwanda", "context": {"start": 1619, "end": 1620, "input": "tokens", "text": "the DRC , Uganda , Rwanda and Burundi would be a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1621, "end": 1622, "input": "tokens", "text": ", Uganda , Rwanda and Burundi would be a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burundi", "context": {"start": 1621, "end": 1622, "input": "tokens", "text": ", Uganda , Rwanda and Burundi would be a strong signal "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1628, "end": 1629, "input": "tokens", "text": "be a strong signal of Washington ' s deep concern and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1628, "end": 1629, "input": "tokens", "text": "be a strong signal of Washington ' s deep concern and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1673, "end": 1674, "input": "tokens", "text": "S . consulate in northern Nigeria and a full embassy in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 1673, "end": 1674, "input": "tokens", "text": "S . consulate in northern Nigeria and a full embassy in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1679, "end": 1680, "input": "tokens", "text": "and a full embassy in Mogadishu : \n The establishment of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Mogadishu", "context": {"start": 1679, "end": 1680, "input": "tokens", "text": "and a full embassy in Mogadishu : \n The establishment of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1689, "end": 1690, "input": "tokens", "text": "of a consulate in northern Nigeria is long overdue . More "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 1689, "end": 1690, "input": "tokens", "text": "of a consulate in northern Nigeria is long overdue . More "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1698, "end": 1699, "input": "tokens", "text": ". More than half of Nigeria ' s 180 million people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 1698, "end": 1699, "input": "tokens", "text": ". More than half of Nigeria ' s 180 million people "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1777, "end": 1778, "input": "tokens", "text": "in the region and help Nigeria to deal with the economic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 1777, "end": 1778, "input": "tokens", "text": "in the region and help Nigeria to deal with the economic "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1795, "end": 1796, "input": "tokens", "text": "there . A consulate in Kaduna , which once had one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Kaduna", "context": {"start": 1795, "end": 1796, "input": "tokens", "text": "there . A consulate in Kaduna , which once had one "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1814, "end": 1815, "input": "tokens", "text": "to the Muslim community that Washington genuinely cares about the people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1814, "end": 1815, "input": "tokens", "text": "to the Muslim community that Washington genuinely cares about the people "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1835, "end": 1836, "input": "tokens", "text": "of a failed state , Somalia has made significant progress over "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Somalia", "context": {"start": 1835, "end": 1836, "input": "tokens", "text": "of a failed state , Somalia has made significant progress over "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1868, "end": 1869, "input": "tokens", "text": "with the Somali government in Mogadishu in January 2013 . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Mogadishu", "context": {"start": 1868, "end": 1869, "input": "tokens", "text": "with the Somali government in Mogadishu in January 2013 . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1890, "end": 1891, "input": "tokens", "text": "step . He should reaffirm Washington ' s commitment to Somalia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1890, "end": 1891, "input": "tokens", "text": "step . He should reaffirm Washington ' s commitment to Somalia "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1895, "end": 1896, "input": "tokens", "text": "Washington ' s commitment to Somalia and recognize the country ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Somalia", "context": {"start": 1895, "end": 1896, "input": "tokens", "text": "Washington ' s commitment to Somalia and recognize the country ' "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1922, "end": 1923, "input": "tokens", "text": "diplomatic embassy compound in downtown Mogadishu . \n Elevate U . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Mogadishu", "context": {"start": 1922, "end": 1923, "input": "tokens", "text": "diplomatic embassy compound in downtown Mogadishu . \n Elevate U . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1933, "end": 1934, "input": "tokens", "text": "S . diplomatic relations with Sudan : \n Relations between Washington "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Sudan", "context": {"start": 1933, "end": 1934, "input": "tokens", "text": "S . diplomatic relations with Sudan : \n Relations between Washington "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1938, "end": 1939, "input": "tokens", "text": "Sudan : \n Relations between Washington and Khartoum have been prickly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1938, "end": 1939, "input": "tokens", "text": "Sudan : \n Relations between Washington and Khartoum have been prickly "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1940, "end": 1941, "input": "tokens", "text": "\n Relations between Washington and Khartoum have been prickly and frequently "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Khartoum", "context": {"start": 1940, "end": 1941, "input": "tokens", "text": "\n Relations between Washington and Khartoum have been prickly and frequently "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1969, "end": 1970, "input": "tokens", "text": "Senate - approved ambassador in Sudan since 1997 . \n The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Sudan", "context": {"start": 1969, "end": 1970, "input": "tokens", "text": "Senate - approved ambassador in Sudan since 1997 . \n The "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1975, "end": 1976, "input": "tokens", "text": "since 1997 . \n The Khartoum government has not been a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Khartoum", "context": {"start": 1975, "end": 1976, "input": "tokens", "text": "since 1997 . \n The Khartoum government has not been a "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1988, "end": 1989, "input": "tokens", "text": "actor . ( Nor have Cuba , Myanmar or Iran . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Cuba", "context": {"start": 1988, "end": 1989, "input": "tokens", "text": "actor . ( Nor have Cuba , Myanmar or Iran . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1992, "end": 1993, "input": "tokens", "text": "have Cuba , Myanmar or Iran . ) The regime in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Iran", "context": {"start": 1992, "end": 1993, "input": "tokens", "text": "have Cuba , Myanmar or Iran . ) The regime in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1998, "end": 1999, "input": "tokens", "text": ". ) The regime in Sudan has carried out mass atrocities "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Sudan", "context": {"start": 1998, "end": 1999, "input": "tokens", "text": ". ) The regime in Sudan has carried out mass atrocities "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2005, "end": 2006, "input": "tokens", "text": "carried out mass atrocities in Darfur , prevented UN organizations from "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Darfur", "context": {"start": 2005, "end": 2006, "input": "tokens", "text": "carried out mass atrocities in Darfur , prevented UN organizations from "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2043, "end": 2044, "input": "tokens", "text": "- imposed comprehensive sanctions on Khartoum have not isolated the country "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Khartoum", "context": {"start": 2043, "end": 2044, "input": "tokens", "text": "- imposed comprehensive sanctions on Khartoum have not isolated the country "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2055, "end": 2056, "input": "tokens", "text": "weakened its government . The U . S . should review "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "U", "context": {"start": 2055, "end": 2056, "input": "tokens", "text": "weakened its government . The U . S . should review "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2065, "end": 2066, "input": "tokens", "text": "review its current policies toward Khartoum , and consider elevating its "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Khartoum", "context": {"start": 2065, "end": 2066, "input": "tokens", "text": "review its current policies toward Khartoum , and consider elevating its "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2081, "end": 2082, "input": "tokens", "text": "status in order to expand America ' s dialogue and probe "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "America", "context": {"start": 2081, "end": 2082, "input": "tokens", "text": "status in order to expand America ' s dialogue and probe "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2200, "end": 2201, "input": "tokens", "text": "a - kind gathering in Washington . A number of new "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 2200, "end": 2201, "input": "tokens", "text": "a - kind gathering in Washington . A number of new "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2494, "end": 2496, "input": "tokens", "text": "Senior Advisor at the \n United States Institute of Peace . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "United States", "context": {"start": 2494, "end": 2496, "input": "tokens", "text": "Senior Advisor at the \n United States Institute of Peace . \n "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 70, "end": 71, "input": "tokens", "text": "on Africa than any previous American president , but with one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "American", "context": {"start": 70, "end": 71, "input": "tokens", "text": "on Africa than any previous American president , but with one "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 326, "end": 327, "input": "tokens", "text": "that will bring 500 young African entrepreneurs , professionals and community "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "African", "context": {"start": 326, "end": 327, "input": "tokens", "text": "that will bring 500 young African entrepreneurs , professionals and community "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 476, "end": 477, "input": "tokens", "text": "million people , its largest Muslim country , and its largest "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Muslim", "context": {"start": 476, "end": 477, "input": "tokens", "text": "million people , its largest Muslim country , and its largest "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 695, "end": 696, "input": "tokens", "text": "With a growing number of African leaders attempting to extend their "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "African", "context": {"start": 695, "end": 696, "input": "tokens", "text": "With a growing number of African leaders attempting to extend their "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1179, "end": 1180, "input": "tokens", "text": "should be allocated to strengthen African judiciaries and legislatures , to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "African", "context": {"start": 1179, "end": 1180, "input": "tokens", "text": "should be allocated to strengthen African judiciaries and legislatures , to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1430, "end": 1432, "input": "tokens", "text": "critical role to play in East African peace - building issues , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "East African", "context": {"start": 1430, "end": 1432, "input": "tokens", "text": "critical role to play in East African peace - building issues , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1727, "end": 1728, "input": "tokens", "text": "It is also the largest Muslim region in Africa and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Muslim", "context": {"start": 1727, "end": 1728, "input": "tokens", "text": "It is also the largest Muslim region in Africa and the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1734, "end": 1735, "input": "tokens", "text": "in Africa and the largest Muslim region in the world where "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Muslim", "context": {"start": 1734, "end": 1735, "input": "tokens", "text": "in Africa and the largest Muslim region in the world where "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1811, "end": 1812, "input": "tokens", "text": "a strong signal to the Muslim community that Washington genuinely cares "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Muslim", "context": {"start": 1811, "end": 1812, "input": "tokens", "text": "a strong signal to the Muslim community that Washington genuinely cares "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 1865, "end": 1866, "input": "tokens", "text": "formal diplomatic relations with the Somali government in Mogadishu in January "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Somali", "context": {"start": 1865, "end": 1866, "input": "tokens", "text": "formal diplomatic relations with the Somali government in Mogadishu in January "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2222, "end": 2223, "input": "tokens", "text": "summit brought dozens of senior American business leaders into direct contact "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "American", "context": {"start": 2222, "end": 2223, "input": "tokens", "text": "summit brought dozens of senior American business leaders into direct contact "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2237, "end": 2238, "input": "tokens", "text": "very first time - with African heads of state and prominent "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "African", "context": {"start": 2237, "end": 2238, "input": "tokens", "text": "very first time - with African heads of state and prominent "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2353, "end": 2354, "input": "tokens", "text": "continuing efforts to promote greater American trade and commerce with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "American", "context": {"start": 2353, "end": 2354, "input": "tokens", "text": "continuing efforts to promote greater American trade and commerce with Africa "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 2453, "end": 2454, "input": "tokens", "text": "be building a more robust African agenda for his last year "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "African", "context": {"start": 2453, "end": 2454, "input": "tokens", "text": "be building a more robust African agenda for his last year "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/04/201601040001.html"}, "content_strict": {"text": " \n Photo: \n AllAfrica \n Former U.S. Assistant Secretary of State Johnnie Carson \n guest column \n By Johnnie Carson \n Washington, DC \u2014 \n After seven years in office, President Barack Obama has already engaged more broadly on Africa than any previous American president, but with one year remaining in the White House, there are still a few things he should do before he leaves, writes \n Johnnie Carson \n , the United States' top policy-maker on Africa in the first Obama administration. \n President Obama has significantly elevated and transformed America's engagement with Africa, traveling widely across the continent, championing the renewal of several old programs and launching a series of highly focused new initiatives that could help speed-up Africa's economic development. \n He has been particularly active in promoting economic and development issues. \n He fought successfully for the renewal and extension of the African Growth and Opportunity Act (AGOA), America's most important trade legislation with Africa; he hosted the first U.S.-Africa Leadership Summit, attended by 37 heads of state; and he has established several important new economic programs, including \"Power Africa\" - to expand significantly electrical access across the continent; \"Feed the Future\" - to increase household food production and to generate a green revolution throughout Africa, and \"Trade Africa\" - to expand substantially trade between Africa and the United States. \n Recognizing the growing role of the continent's next generation of young leaders, President Obama established YALI - the Young African Leaders Initiative, a program that will bring 500 young African entrepreneurs, professionals and community organizers to the U.S. each year for the next several years for five weeks of leadership, organization and management training. \n But what next? \n Despite his rather impressive list of accomplishments, here are ten things the president should do before he leaves office in January 2017: \n Visit Nigeria: \n President Obama has traveled to Africa five times during his presidency - but he has not visited Nigeria, the continent's economic, political, communications and petroleum giant, and its most important state. It is the continent's largest economy - almost twice the size of South Africa's and a third larger than that of Egypt. \n It is also the continent's most populous state, with 180 million people, its largest Muslim country, and its largest democracy. \n The president has visited every major country on the continent except Nigeria, and it would be a mistake for him to leave the White House without a stop in Lagos or Abuja. \n Some have suggested that security may be a concern because of Boko Haram, but if the president can travel safely to Nairobi, where al Shabaab has carried out high profile attacks in the center of the city, he should be able to travel safely to Abuja or Lagos. He is bound to make one more trip to Europe, and a stop in Nigeria - similar to his 2009 visit to Ghana - would not be a major diversion. \n Co-host a regional summit on democracy in west Africa: \n Strengthening democracy institutions, promoting good governance and supporting free and fair elections has been a major priority for the Obama administration in Africa. \n During his first official visit to the continent as president in July 2009, President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy and good governance and the need to create \"more strong institutions, not more strong men.\" With a growing number of African leaders attempting to extend their terms of office, democracy remains fragile across the continent. The president could give democracy in Africa a boost and reaffirm America's strong commitment to Africa's political progress by hosting a conference in West Africa with the democratically-elected leaders of Benin, Burkina Faso, Cape Verde, Liberia, Niger, Nigeria, Mali, Mauritania, Senegal, Sierra Leone and Togo. \n Support Nigeria's permanent membership in the G20: \n President Obama has said that he wants to ensure that Africa has a place at the table to participate in the deliberations concerning major global political and economic issues. One way to accomplish that is to expand or reorganize the G20 group of nations to include Nigeria as a permanent member of this important global organization. \n Nigeria is already more important than several of the current G20 members, notably Argentina and South Africa, and over the next two decades it will become one of the world's mega states, eclipsing several other G20 members in the size of its economy, population and regional influence. It would also be one of the G20's largest democracies. The administration should make the inclusion of Nigeria a priority over the next 12 months. \n Press for the passage of the Electrify Africa legislation: \n Power Africa is one of President Obama's most important signature initiatives. In the world's most energy deficient and starved continent, it is intended to increase Africa's power output by 30,000 megawatts over the next decade or two. \n But like a number of recent White House initiatives, Power Africa is not backed by any legislative mandate and could be easily brushed aside after the Obama administration leaves office. The program enjoys bi-partisan support in the Congress and the administration needs to work with congressional leaders to prioritize the passage of the Electrify Africa legislation. At the same time, the administration needs to create a senior level \"Power Africa czar\" to manage the program and consider moving interagency responsibility for oversight from USAID to a cabinet level department. \n Instruct USAID to establish a permanent democracy fund: \n If democracy promotion is an important priority, it should be funded adequately and on a long-term basis. Today that is not the case. Funding for democracy has declined sharply during Obama's second term despite the president's recent speeches in Nairobi and Addis Ababa, and at the 70th session of the United Nations General Assembly in New York. \n Dedicated and hard-to-reprogram funds should be allocated to strengthen African judiciaries and legislatures, to promote civil society groups and the media, to assist women's organizations and youth groups and to support domestic and international election monitoring. Funds should also be made available to assist local organizations to undertake parallel vote counts, to aid local election commissions and to prevent pre- and post-election violence. \n Invite Tanzania's newly elected President John Magufuli to the White House: \n Tanzania is the most populous state and the largest democracy in East Africa. It is also one of the largest recipients of U.S. development assistance and a participant in all of Washington's major economic initiatives. \n In late October, Tanzania held presidential and parliamentary elections.The elections on the mainland went well, but those on the island of Zanzibar were disputed. President John Pombe Magufuli, a reform-minded academic-turned-politician, was elected without dispute, making him Tanzania's fifth democratically-elected president in a row. Although the Zanzibar election remains unresolved, it is important to reach out to Tanzania's new president early in his tenure to continue to foster the strong relationship between Dar es Salaam and Washington. \n This is particularly important since President Magufuli does not have any major ties with the United States.Tanzania also has a critical role to play in East African peace-building issues, particularly in Burundi and the eastern Congo. Early political consultations with President Magufuli and his new foreign minister, Dr. Augustine Mahiga, could prove valuable in promoting stability in the Great Lakes region. \n Send Secretary of State John Kerry to Rwanda, Burundi, the Democratic Republic of Congo (DRC), Uganda and the Republic of the Congo: \n The Great Lakes Region of Central Africa is one of the most volatile and unstable regions in Africa, with daily political and ethnic violence in Burundi, and with the leaders of Rwanda, the DRC and the Congo threatening to extend themselves in office in violation of their constitutions. \n Although time is running out, there is still an opportunity to prevent further democratic backsliding and the serious instability and violence that will almost certainly be unleashed - as we are already seeing in Burundi. High level engagement with the leaders in the region is required. \n An extended visit by Secretary Kerry to the DRC, Uganda, Rwanda and Burundi would be a strong signal of Washington's deep concern and interest in the region's negative political and security trajectory. Without serious engagement with the leaders on the ground, there will be no meaningful progress. \n Open a U.S. consulate in northern Nigeria and a full embassy in Mogadishu: \n The establishment of a consulate in northern Nigeria is long overdue. More than half of Nigeria's 180 million people live in the northern part of the country, an area of serious political and security concern. It is also the largest Muslim region in Africa and the largest Muslim region in the world where there is no full-time U.S. diplomatic presence. \n A U.S. diplomatic mission would advance long-term political, economic and security interests in the region and help Nigeria to deal with the economic, social and security challenges it faces there. A consulate in Kaduna, which once had one, or Kano would convey a strong signal to the Muslim community that Washington genuinely cares about the people in the region. \n Once the global poster child of a failed state, Somalia has made significant progress over the past seven years. In recognition of the progress, the U.S. re-established formal diplomatic relations with the Somali government in Mogadishu in January 2013. \n Before he leaves office, President Obama should take one more step. He should reaffirm Washington's commitment to Somalia and recognize the country's continuing progress by appointing a Senate-approved ambassador and opening a small, secure diplomatic embassy compound in downtown Mogadishu. \n Elevate U.S. diplomatic relations with Sudan: \n Relations between Washington and Khartoum have been prickly and frequently difficult for over two decades and the U.S. has not had a fully accredited, Senate-approved ambassador in Sudan since 1997. \n The Khartoum government has not been a good international actor. (Nor have Cuba, Myanmar or Iran.) The regime in Sudan has carried out mass atrocities in Darfur, prevented UN organizations from delivering food aid and humanitarian assistance to those in need and meddled in the affairs of several of its neighbors. \n But U.S.-imposed comprehensive sanctions on Khartoum have not isolated the country nor weakened its government. The U.S. should review its current policies toward Khartoum, and consider elevating its diplomatic relationship to full ambassadorial status in order to expand America's dialogue and probe for new openings to resolve some of the country's domestic and regional issues. The U.S. can do this while maintaining its sanctions regime on the government and its demands that President Omar al-Bashir address the serious human rights charges against him. \n Provide a status report on the results of the U.S.-Africa Leadership Summit: \n The U.S. Africa Leadership Summit has been one of the high points in the Obama administration's engagements in Africa. \n Leaders from 50 different countries participated in this first-of-a-kind gathering in Washington. A number of new programs were announced and a major business conference associated with the summit brought dozens of senior American business leaders into direct contact - many for the very first time - with African heads of state and prominent business leaders from the continent. \n The administration has never released a comprehensive report on the summit or a one-year progress report on the implementation of summit agreements. The issuance of some type of status report would be a useful vehicle for identifying summit objectives and initiatives as well as tracking the progress of the administration's efforts. The administration should do everything it can to sustain the goodwill and policy initiatives that emerged from the summit to help ensure that it does not become a one-off event. \n The administration should be applauded for its continuing efforts to promote greater American trade and commerce with Africa. The president has already announced that he plans to host another U.S.-Africa Business Summit similar to the day-long event his administration hosted during the 2014 Leadership Summit. The Business Summit is important, but it should not be the only thing on President Obama's Africa agenda for 2016. He has time to do more, and he should. Twelve months is a long time in the life of an administration and his foreign policy team should be building a more robust African agenda for his last year in office. \n Ambassador Carson was the U.S. \n Assistant Secretary of State for African Affairs \n from 2009 to 2012. He is currently a Senior Advisor at the \n United States Institute of Peace. \n ", "simple_tokens": ["\n", "photo", ":", "\n", "allafrica", "\n", "former", "u", ".", "s", ".", "assistant", "secretary", "of", "state", "johnnie", "carson", "\n", "guest", "column", "\n", "by", "johnnie", "carson", "\n", "washington", ",", "dc", "\u2014", "\n", "after", "seven", "years", "in", "office", ",", "president", "barack", "obama", "has", "already", "engaged", "more", "broadly", "on", "africa", "than", "any", "previous", "american", "president", ",", "but", "with", "one", "year", "remaining", "in", "the", "white", "house", ",", "there", "are", "still", "a", "few", "things", "he", "should", "do", "before", "he", "leaves", ",", "writes", "\n", "johnnie", "carson", "\n", ",", "the", "united", "states", "'", "top", "policy", "-", "maker", "on", "africa", "in", "the", "first", "obama", "administration", ".", "\n", "president", "obama", "has", "significantly", "elevated", "and", "transformed", "america", "'", "s", "engagement", "with", "africa", ",", "traveling", "widely", "across", "the", "continent", ",", "championing", "the", "renewal", "of", "several", "old", "programs", "and", "launching", "a", "series", "of", "highly", "focused", "new", "initiatives", "that", "could", "help", "speed", "-", "up", "africa", "'", "s", "economic", "development", ".", "\n", "he", "has", "been", "particularly", "active", "in", "promoting", "economic", "and", "development", "issues", ".", "\n", "he", "fought", "successfully", "for", "the", "renewal", "and", "extension", "of", "the", "african", "growth", "and", "opportunity", "act", "(", "agoa", ")", ",", "america", "'", "s", "most", "important", "trade", "legislation", "with", "africa", ";", "he", "hosted", "the", "first", "u", ".", "s", ".", "-", "africa", "leadership", "summit", ",", "attended", "by", "37", "heads", "of", "state", ";", "and", "he", "has", "established", "several", "important", "new", "economic", "programs", ",", "including", "\"", "power", "africa", "\"", "-", "to", "expand", "significantly", "electrical", "access", "across", "the", "continent", ";", "\"", "feed", "the", "future", "\"", "-", "to", "increase", "household", "food", "production", "and", "to", "generate", "a", "green", "revolution", "throughout", "africa", ",", "and", "\"", "trade", "africa", "\"", "-", "to", "expand", "substantially", "trade", "between", "africa", "and", "the", "united", "states", ".", "\n", "recognizing", "the", "growing", "role", "of", "the", "continent", "'", "s", "next", "generation", "of", "young", "leaders", ",", "president", "obama", "established", "yali", "-", "the", "young", "african", "leaders", "initiative", ",", "a", "program", "that", "will", "bring", "500", "young", "african", "entrepreneurs", ",", "professionals", "and", "community", "organizers", "to", "the", "u", ".", "s", ".", "each", "year", "for", "the", "next", "several", "years", "for", "five", "weeks", "of", "leadership", ",", "organization", "and", "management", "training", ".", "\n", "but", "what", "next", "?", "\n", "despite", "his", "rather", "impressive", "list", "of", "accomplishments", ",", "here", "are", "ten", "things", "the", "president", "should", "do", "before", "he", "leaves", "office", "in", "january", "2017", ":", "\n", "visit", "nigeria", ":", "\n", "president", "obama", "has", "traveled", "to", "africa", "five", "times", "during", "his", "presidency", "-", "but", "he", "has", "not", "visited", "nigeria", ",", "the", "continent", "'", "s", "economic", ",", "political", ",", "communications", "and", "petroleum", "giant", ",", "and", "its", "most", "important", "state", ".", "it", "is", "the", "continent", "'", "s", "largest", "economy", "-", "almost", "twice", "the", "size", "of", "south", "africa", "'", "s", "and", "a", "third", "larger", "than", "that", "of", "egypt", ".", "\n", "it", "is", "also", "the", "continent", "'", "s", "most", "populous", "state", ",", "with", "180", "million", "people", ",", "its", "largest", "muslim", "country", ",", "and", "its", "largest", "democracy", ".", "\n", "the", "president", "has", "visited", "every", "major", "country", "on", "the", "continent", "except", "nigeria", ",", "and", "it", "would", "be", "a", "mistake", "for", "him", "to", "leave", "the", "white", "house", "without", "a", "stop", "in", "lagos", "or", "abuja", ".", "\n", "some", "have", "suggested", "that", "security", "may", "be", "a", "concern", "because", "of", "boko", "haram", ",", "but", "if", "the", "president", "can", "travel", "safely", "to", "nairobi", ",", "where", "al", "shabaab", "has", "carried", "out", "high", "profile", "attacks", "in", "the", "center", "of", "the", "city", ",", "he", "should", "be", "able", "to", "travel", "safely", "to", "abuja", "or", "lagos", ".", "he", "is", "bound", "to", "make", "one", "more", "trip", "to", "europe", ",", "and", "a", "stop", "in", "nigeria", "-", "similar", "to", "his", "2009", "visit", "to", "ghana", "-", "would", "not", "be", "a", "major", "diversion", ".", "\n", "co", "-", "host", "a", "regional", "summit", "on", "democracy", "in", "west", "africa", ":", "\n", "strengthening", "democracy", "institutions", ",", "promoting", "good", "governance", "and", "supporting", "free", "and", "fair", "elections", "has", "been", "a", "major", "priority", "for", "the", "obama", "administration", "in", "africa", ".", "\n", "during", "his", "first", "official", "visit", "to", "the", "continent", "as", "president", "in", "july", "2009", ",", "president", "obama", "spoke", "eloquently", "before", "the", "ghanaian", "parliament", "about", "the", "importance", "of", "democracy", "and", "good", "governance", "and", "the", "need", "to", "create", "\"", "more", "strong", "institutions", ",", "not", "more", "strong", "men", ".", "\"", "with", "a", "growing", "number", "of", "african", "leaders", "attempting", "to", "extend", "their", "terms", "of", "office", ",", "democracy", "remains", "fragile", "across", "the", "continent", ".", "the", "president", "could", "give", "democracy", "in", "africa", "a", "boost", "and", "reaffirm", "america", "'", "s", "strong", "commitment", "to", "africa", "'", "s", "political", "progress", "by", "hosting", "a", "conference", "in", "west", "africa", "with", "the", "democratically", "-", "elected", "leaders", "of", "benin", ",", "burkina", "faso", ",", "cape", "verde", ",", "liberia", ",", "niger", ",", "nigeria", ",", "mali", ",", "mauritania", ",", "senegal", ",", "sierra", "leone", "and", "togo", ".", "\n", "support", "nigeria", "'", "s", "permanent", "membership", "in", "the", "g20", ":", "\n", "president", "obama", "has", "said", "that", "he", "wants", "to", "ensure", "that", "africa", "has", "a", "place", "at", "the", "table", "to", "participate", "in", "the", "deliberations", "concerning", "major", "global", "political", "and", "economic", "issues", ".", "one", "way", "to", "accomplish", "that", "is", "to", "expand", "or", "reorganize", "the", "g20", "group", "of", "nations", "to", "include", "nigeria", "as", "a", "permanent", "member", "of", "this", "important", "global", "organization", ".", "\n", "nigeria", "is", "already", "more", "important", "than", "several", "of", "the", "current", "g20", "members", ",", "notably", "argentina", "and", "south", "africa", ",", "and", "over", "the", "next", "two", "decades", "it", "will", "become", "one", "of", "the", "world", "'", "s", "mega", "states", ",", "eclipsing", "several", "other", "g20", "members", "in", "the", "size", "of", "its", "economy", ",", "population", "and", "regional", "influence", ".", "it", "would", "also", "be", "one", "of", "the", "g20", "'", "s", "largest", "democracies", ".", "the", "administration", "should", "make", "the", "inclusion", "of", "nigeria", "a", "priority", "over", "the", "next", "12", "months", ".", "\n", "press", "for", "the", "passage", "of", "the", "electrify", "africa", "legislation", ":", "\n", "power", "africa", "is", "one", "of", "president", "obama", "'", "s", "most", "important", "signature", "initiatives", ".", "in", "the", "world", "'", "s", "most", "energy", "deficient", "and", "starved", "continent", ",", "it", "is", "intended", "to", "increase", "africa", "'", "s", "power", "output", "by", "30", ",", "000", "megawatts", "over", "the", "next", "decade", "or", "two", ".", "\n", "but", "like", "a", "number", "of", "recent", "white", "house", "initiatives", ",", "power", "africa", "is", "not", "backed", "by", "any", "legislative", "mandate", "and", "could", "be", "easily", "brushed", "aside", "after", "the", "obama", "administration", "leaves", "office", ".", "the", "program", "enjoys", "bi", "-", "partisan", "support", "in", "the", "congress", "and", "the", "administration", "needs", "to", "work", "with", "congressional", "leaders", "to", "prioritize", "the", "passage", "of", "the", "electrify", "africa", "legislation", ".", "at", "the", "same", "time", ",", "the", "administration", "needs", "to", "create", "a", "senior", "level", "\"", "power", "africa", "czar", "\"", "to", "manage", "the", "program", "and", "consider", "moving", "interagency", "responsibility", "for", "oversight", "from", "usaid", "to", "a", "cabinet", "level", "department", ".", "\n", "instruct", "usaid", "to", "establish", "a", "permanent", "democracy", "fund", ":", "\n", "if", "democracy", "promotion", "is", "an", "important", "priority", ",", "it", "should", "be", "funded", "adequately", "and", "on", "a", "long", "-", "term", "basis", ".", "today", "that", "is", "not", "the", "case", ".", "funding", "for", "democracy", "has", "declined", "sharply", "during", "obama", "'", "s", "second", "term", "despite", "the", "president", "'", "s", "recent", "speeches", "in", "nairobi", "and", "addis", "ababa", ",", "and", "at", "the", "70th", "session", "of", "the", "united", "nations", "general", "assembly", "in", "new", "york", ".", "\n", "dedicated", "and", "hard", "-", "to", "-", "reprogram", "funds", "should", "be", "allocated", "to", "strengthen", "african", "judiciaries", "and", "legislatures", ",", "to", "promote", "civil", "society", "groups", "and", "the", "media", ",", "to", "assist", "women", "'", "s", "organizations", "and", "youth", "groups", "and", "to", "support", "domestic", "and", "international", "election", "monitoring", ".", "funds", "should", "also", "be", "made", "available", "to", "assist", "local", "organizations", "to", "undertake", "parallel", "vote", "counts", ",", "to", "aid", "local", "election", "commissions", "and", "to", "prevent", "pre", "-", "and", "post", "-", "election", "violence", ".", "\n", "invite", "tanzania", "'", "s", "newly", "elected", "president", "john", "magufuli", "to", "the", "white", "house", ":", "\n", "tanzania", "is", "the", "most", "populous", "state", "and", "the", "largest", "democracy", "in", "east", "africa", ".", "it", "is", "also", "one", "of", "the", "largest", "recipients", "of", "u", ".", "s", ".", "development", "assistance", "and", "a", "participant", "in", "all", "of", "washington", "'", "s", "major", "economic", "initiatives", ".", "\n", "in", "late", "october", ",", "tanzania", "held", "presidential", "and", "parliamentary", "elections", ".", "the", "elections", "on", "the", "mainland", "went", "well", ",", "but", "those", "on", "the", "island", "of", "zanzibar", "were", "disputed", ".", "president", "john", "pombe", "magufuli", ",", "a", "reform", "-", "minded", "academic", "-", "turned", "-", "politician", ",", "was", "elected", "without", "dispute", ",", "making", "him", "tanzania", "'", "s", "fifth", "democratically", "-", "elected", "president", "in", "a", "row", ".", "although", "the", "zanzibar", "election", "remains", "unresolved", ",", "it", "is", "important", "to", "reach", "out", "to", "tanzania", "'", "s", "new", "president", "early", "in", "his", "tenure", "to", "continue", "to", "foster", "the", "strong", "relationship", "between", "dar", "es", "salaam", "and", "washington", ".", "\n", "this", "is", "particularly", "important", "since", "president", "magufuli", "does", "not", "have", "any", "major", "ties", "with", "the", "united", "states", ".", "tanzania", "also", "has", "a", "critical", "role", "to", "play", "in", "east", "african", "peace", "-", "building", "issues", ",", "particularly", "in", "burundi", "and", "the", "eastern", "congo", ".", "early", "political", "consultations", "with", "president", "magufuli", "and", "his", "new", "foreign", "minister", ",", "dr", ".", "augustine", "mahiga", ",", "could", "prove", "valuable", "in", "promoting", "stability", "in", "the", "great", "lakes", "region", ".", "\n", "send", "secretary", "of", "state", "john", "kerry", "to", "rwanda", ",", "burundi", ",", "the", "democratic", "republic", "of", "congo", "(", "drc", ")", ",", "uganda", "and", "the", "republic", "of", "the", "congo", ":", "\n", "the", "great", "lakes", "region", "of", "central", "africa", "is", "one", "of", "the", "most", "volatile", "and", "unstable", "regions", "in", "africa", ",", "with", "daily", "political", "and", "ethnic", "violence", "in", "burundi", ",", "and", "with", "the", "leaders", "of", "rwanda", ",", "the", "drc", "and", "the", "congo", "threatening", "to", "extend", "themselves", "in", "office", "in", "violation", "of", "their", "constitutions", ".", "\n", "although", "time", "is", "running", "out", ",", "there", "is", "still", "an", "opportunity", "to", "prevent", "further", "democratic", "backsliding", "and", "the", "serious", "instability", "and", "violence", "that", "will", "almost", "certainly", "be", "unleashed", "-", "as", "we", "are", "already", "seeing", "in", "burundi", ".", "high", "level", "engagement", "with", "the", "leaders", "in", "the", "region", "is", "required", ".", "\n", "an", "extended", "visit", "by", "secretary", "kerry", "to", "the", "drc", ",", "uganda", ",", "rwanda", "and", "burundi", "would", "be", "a", "strong", "signal", "of", "washington", "'", "s", "deep", "concern", "and", "interest", "in", "the", "region", "'", "s", "negative", "political", "and", "security", "trajectory", ".", "without", "serious", "engagement", "with", "the", "leaders", "on", "the", "ground", ",", "there", "will", "be", "no", "meaningful", "progress", ".", "\n", "open", "a", "u", ".", "s", ".", "consulate", "in", "northern", "nigeria", "and", "a", "full", "embassy", "in", "mogadishu", ":", "\n", "the", "establishment", "of", "a", "consulate", "in", "northern", "nigeria", "is", "long", "overdue", ".", "more", "than", "half", "of", "nigeria", "'", "s", "180", "million", "people", "live", "in", "the", "northern", "part", "of", "the", "country", ",", "an", "area", "of", "serious", "political", "and", "security", "concern", ".", "it", "is", "also", "the", "largest", "muslim", "region", "in", "africa", "and", "the", "largest", "muslim", "region", "in", "the", "world", "where", "there", "is", "no", "full", "-", "time", "u", ".", "s", ".", "diplomatic", "presence", ".", "\n", "a", "u", ".", "s", ".", "diplomatic", "mission", "would", "advance", "long", "-", "term", "political", ",", "economic", "and", "security", "interests", "in", "the", "region", "and", "help", "nigeria", "to", "deal", "with", "the", "economic", ",", "social", "and", "security", "challenges", "it", "faces", "there", ".", "a", "consulate", "in", "kaduna", ",", "which", "once", "had", "one", ",", "or", "kano", "would", "convey", "a", "strong", "signal", "to", "the", "muslim", "community", "that", "washington", "genuinely", "cares", "about", "the", "people", "in", "the", "region", ".", "\n", "once", "the", "global", "poster", "child", "of", "a", "failed", "state", ",", "somalia", "has", "made", "significant", "progress", "over", "the", "past", "seven", "years", ".", "in", "recognition", "of", "the", "progress", ",", "the", "u", ".", "s", ".", "re", "-", "established", "formal", "diplomatic", "relations", "with", "the", "somali", "government", "in", "mogadishu", "in", "january", "2013", ".", "\n", "before", "he", "leaves", "office", ",", "president", "obama", "should", "take", "one", "more", "step", ".", "he", "should", "reaffirm", "washington", "'", "s", "commitment", "to", "somalia", "and", "recognize", "the", "country", "'", "s", "continuing", "progress", "by", "appointing", "a", "senate", "-", "approved", "ambassador", "and", "opening", "a", "small", ",", "secure", "diplomatic", "embassy", "compound", "in", "downtown", "mogadishu", ".", "\n", "elevate", "u", ".", "s", ".", "diplomatic", "relations", "with", "sudan", ":", "\n", "relations", "between", "washington", "and", "khartoum", "have", "been", "prickly", "and", "frequently", "difficult", "for", "over", "two", "decades", "and", "the", "u", ".", "s", ".", "has", "not", "had", "a", "fully", "accredited", ",", "senate", "-", "approved", "ambassador", "in", "sudan", "since", "1997", ".", "\n", "the", "khartoum", "government", "has", "not", "been", "a", "good", "international", "actor", ".", "(", "nor", "have", "cuba", ",", "myanmar", "or", "iran", ".", ")", "the", "regime", "in", "sudan", "has", "carried", "out", "mass", "atrocities", "in", "darfur", ",", "prevented", "un", "organizations", "from", "delivering", "food", "aid", "and", "humanitarian", "assistance", "to", "those", "in", "need", "and", "meddled", "in", "the", "affairs", "of", "several", "of", "its", "neighbors", ".", "\n", "but", "u", ".", "s", ".", "-", "imposed", "comprehensive", "sanctions", "on", "khartoum", "have", "not", "isolated", "the", "country", "nor", "weakened", "its", "government", ".", "the", "u", ".", "s", ".", "should", "review", "its", "current", "policies", "toward", "khartoum", ",", "and", "consider", "elevating", "its", "diplomatic", "relationship", "to", "full", "ambassadorial", "status", "in", "order", "to", "expand", "america", "'", "s", "dialogue", "and", "probe", "for", "new", "openings", "to", "resolve", "some", "of", "the", "country", "'", "s", "domestic", "and", "regional", "issues", ".", "the", "u", ".", "s", ".", "can", "do", "this", "while", "maintaining", "its", "sanctions", "regime", "on", "the", "government", "and", "its", "demands", "that", "president", "omar", "al", "-", "bashir", "address", "the", "serious", "human", "rights", "charges", "against", "him", ".", "\n", "provide", "a", "status", "report", "on", "the", "results", "of", "the", "u", ".", "s", ".", "-", "africa", "leadership", "summit", ":", "\n", "the", "u", ".", "s", ".", "africa", "leadership", "summit", "has", "been", "one", "of", "the", "high", "points", "in", "the", "obama", "administration", "'", "s", "engagements", "in", "africa", ".", "\n", "leaders", "from", "50", "different", "countries", "participated", "in", "this", "first", "-", "of", "-", "a", "-", "kind", "gathering", "in", "washington", ".", "a", "number", "of", "new", "programs", "were", "announced", "and", "a", "major", "business", "conference", "associated", "with", "the", "summit", "brought", "dozens", "of", "senior", "american", "business", "leaders", "into", "direct", "contact", "-", "many", "for", "the", "very", "first", "time", "-", "with", "african", "heads", "of", "state", "and", "prominent", "business", "leaders", "from", "the", "continent", ".", "\n", "the", "administration", "has", "never", "released", "a", "comprehensive", "report", "on", "the", "summit", "or", "a", "one", "-", "year", "progress", "report", "on", "the", "implementation", "of", "summit", "agreements", ".", "the", "issuance", "of", "some", "type", "of", "status", "report", "would", "be", "a", "useful", "vehicle", "for", "identifying", "summit", "objectives", "and", "initiatives", "as", "well", "as", "tracking", "the", "progress", "of", "the", "administration", "'", "s", "efforts", ".", "the", "administration", "should", "do", "everything", "it", "can", "to", "sustain", "the", "goodwill", "and", "policy", "initiatives", "that", "emerged", "from", "the", "summit", "to", "help", "ensure", "that", "it", "does", "not", "become", "a", "one", "-", "off", "event", ".", "\n", "the", "administration", "should", "be", "applauded", "for", "its", "continuing", "efforts", "to", "promote", "greater", "american", "trade", "and", "commerce", "with", "africa", ".", "the", "president", "has", "already", "announced", "that", "he", "plans", "to", "host", "another", "u", ".", "s", ".", "-", "africa", "business", "summit", "similar", "to", "the", "day", "-", "long", "event", "his", "administration", "hosted", "during", "the", "2014", "leadership", "summit", ".", "the", "business", "summit", "is", "important", ",", "but", "it", "should", "not", "be", "the", "only", "thing", "on", "president", "obama", "'", "s", "africa", "agenda", "for", "2016", ".", "he", "has", "time", "to", "do", "more", ",", "and", "he", "should", ".", "twelve", "months", "is", "a", "long", "time", "in", "the", "life", "of", "an", "administration", "and", "his", "foreign", "policy", "team", "should", "be", "building", "a", "more", "robust", "african", "agenda", "for", "his", "last", "year", "in", "office", ".", "\n", "ambassador", "carson", "was", "the", "u", ".", "s", ".", "\n", "assistant", "secretary", "of", "state", "for", "african", "affairs", "\n", "from", "2009", "to", "2012", ".", "he", "is", "currently", "a", "senior", "advisor", "at", "the", "\n", "united", "states", "institute", "of", "peace", ".", "\n"], "simple_tokens_original_case": ["\n", "Photo", ":", "\n", "AllAfrica", "\n", "Former", "U", ".", "S", ".", "Assistant", "Secretary", "of", "State", "Johnnie", "Carson", "\n", "guest", "column", "\n", "By", "Johnnie", "Carson", "\n", "Washington", ",", "DC", "\u2014", "\n", "After", "seven", "years", "in", "office", ",", "President", "Barack", "Obama", "has", "already", "engaged", "more", "broadly", "on", "Africa", "than", "any", "previous", "American", "president", ",", "but", "with", "one", "year", "remaining", "in", "the", "White", "House", ",", "there", "are", "still", "a", "few", "things", "he", "should", "do", "before", "he", "leaves", ",", "writes", "\n", "Johnnie", "Carson", "\n", ",", "the", "United", "States", "'", "top", "policy", "-", "maker", "on", "Africa", "in", "the", "first", "Obama", "administration", ".", "\n", "President", "Obama", "has", "significantly", "elevated", "and", "transformed", "America", "'", "s", "engagement", "with", "Africa", ",", "traveling", "widely", "across", "the", "continent", ",", "championing", "the", "renewal", "of", "several", "old", "programs", "and", "launching", "a", "series", "of", "highly", "focused", "new", "initiatives", "that", "could", "help", "speed", "-", "up", "Africa", "'", "s", "economic", "development", ".", "\n", "He", "has", "been", "particularly", "active", "in", "promoting", "economic", "and", "development", "issues", ".", "\n", "He", "fought", "successfully", "for", "the", "renewal", "and", "extension", "of", "the", "African", "Growth", "and", "Opportunity", "Act", "(", "AGOA", ")", ",", "America", "'", "s", "most", "important", "trade", "legislation", "with", "Africa", ";", "he", "hosted", "the", "first", "U", ".", "S", ".", "-", "Africa", "Leadership", "Summit", ",", "attended", "by", "37", "heads", "of", "state", ";", "and", "he", "has", "established", "several", "important", "new", "economic", "programs", ",", "including", "\"", "Power", "Africa", "\"", "-", "to", "expand", "significantly", "electrical", "access", "across", "the", "continent", ";", "\"", "Feed", "the", "Future", "\"", "-", "to", "increase", "household", "food", "production", "and", "to", "generate", "a", "green", "revolution", "throughout", "Africa", ",", "and", "\"", "Trade", "Africa", "\"", "-", "to", "expand", "substantially", "trade", "between", "Africa", "and", "the", "United", "States", ".", "\n", "Recognizing", "the", "growing", "role", "of", "the", "continent", "'", "s", "next", "generation", "of", "young", "leaders", ",", "President", "Obama", "established", "YALI", "-", "the", "Young", "African", "Leaders", "Initiative", ",", "a", "program", "that", "will", "bring", "500", "young", "African", "entrepreneurs", ",", "professionals", "and", "community", "organizers", "to", "the", "U", ".", "S", ".", "each", "year", "for", "the", "next", "several", "years", "for", "five", "weeks", "of", "leadership", ",", "organization", "and", "management", "training", ".", "\n", "But", "what", "next", "?", "\n", "Despite", "his", "rather", "impressive", "list", "of", "accomplishments", ",", "here", "are", "ten", "things", "the", "president", "should", "do", "before", "he", "leaves", "office", "in", "January", "2017", ":", "\n", "Visit", "Nigeria", ":", "\n", "President", "Obama", "has", "traveled", "to", "Africa", "five", "times", "during", "his", "presidency", "-", "but", "he", "has", "not", "visited", "Nigeria", ",", "the", "continent", "'", "s", "economic", ",", "political", ",", "communications", "and", "petroleum", "giant", ",", "and", "its", "most", "important", "state", ".", "It", "is", "the", "continent", "'", "s", "largest", "economy", "-", "almost", "twice", "the", "size", "of", "South", "Africa", "'", "s", "and", "a", "third", "larger", "than", "that", "of", "Egypt", ".", "\n", "It", "is", "also", "the", "continent", "'", "s", "most", "populous", "state", ",", "with", "180", "million", "people", ",", "its", "largest", "Muslim", "country", ",", "and", "its", "largest", "democracy", ".", "\n", "The", "president", "has", "visited", "every", "major", "country", "on", "the", "continent", "except", "Nigeria", ",", "and", "it", "would", "be", "a", "mistake", "for", "him", "to", "leave", "the", "White", "House", "without", "a", "stop", "in", "Lagos", "or", "Abuja", ".", "\n", "Some", "have", "suggested", "that", "security", "may", "be", "a", "concern", "because", "of", "Boko", "Haram", ",", "but", "if", "the", "president", "can", "travel", "safely", "to", "Nairobi", ",", "where", "al", "Shabaab", "has", "carried", "out", "high", "profile", "attacks", "in", "the", "center", "of", "the", "city", ",", "he", "should", "be", "able", "to", "travel", "safely", "to", "Abuja", "or", "Lagos", ".", "He", "is", "bound", "to", "make", "one", "more", "trip", "to", "Europe", ",", "and", "a", "stop", "in", "Nigeria", "-", "similar", "to", "his", "2009", "visit", "to", "Ghana", "-", "would", "not", "be", "a", "major", "diversion", ".", "\n", "Co", "-", "host", "a", "regional", "summit", "on", "democracy", "in", "west", "Africa", ":", "\n", "Strengthening", "democracy", "institutions", ",", "promoting", "good", "governance", "and", "supporting", "free", "and", "fair", "elections", "has", "been", "a", "major", "priority", "for", "the", "Obama", "administration", "in", "Africa", ".", "\n", "During", "his", "first", "official", "visit", "to", "the", "continent", "as", "president", "in", "July", "2009", ",", "President", "Obama", "spoke", "eloquently", "before", "the", "Ghanaian", "Parliament", "about", "the", "importance", "of", "democracy", "and", "good", "governance", "and", "the", "need", "to", "create", "\"", "more", "strong", "institutions", ",", "not", "more", "strong", "men", ".", "\"", "With", "a", "growing", "number", "of", "African", "leaders", "attempting", "to", "extend", "their", "terms", "of", "office", ",", "democracy", "remains", "fragile", "across", "the", "continent", ".", "The", "president", "could", "give", "democracy", "in", "Africa", "a", "boost", "and", "reaffirm", "America", "'", "s", "strong", "commitment", "to", "Africa", "'", "s", "political", "progress", "by", "hosting", "a", "conference", "in", "West", "Africa", "with", "the", "democratically", "-", "elected", "leaders", "of", "Benin", ",", "Burkina", "Faso", ",", "Cape", "Verde", ",", "Liberia", ",", "Niger", ",", "Nigeria", ",", "Mali", ",", "Mauritania", ",", "Senegal", ",", "Sierra", "Leone", "and", "Togo", ".", "\n", "Support", "Nigeria", "'", "s", "permanent", "membership", "in", "the", "G20", ":", "\n", "President", "Obama", "has", "said", "that", "he", "wants", "to", "ensure", "that", "Africa", "has", "a", "place", "at", "the", "table", "to", "participate", "in", "the", "deliberations", "concerning", "major", "global", "political", "and", "economic", "issues", ".", "One", "way", "to", "accomplish", "that", "is", "to", "expand", "or", "reorganize", "the", "G20", "group", "of", "nations", "to", "include", "Nigeria", "as", "a", "permanent", "member", "of", "this", "important", "global", "organization", ".", "\n", "Nigeria", "is", "already", "more", "important", "than", "several", "of", "the", "current", "G20", "members", ",", "notably", "Argentina", "and", "South", "Africa", ",", "and", "over", "the", "next", "two", "decades", "it", "will", "become", "one", "of", "the", "world", "'", "s", "mega", "states", ",", "eclipsing", "several", "other", "G20", "members", "in", "the", "size", "of", "its", "economy", ",", "population", "and", "regional", "influence", ".", "It", "would", "also", "be", "one", "of", "the", "G20", "'", "s", "largest", "democracies", ".", "The", "administration", "should", "make", "the", "inclusion", "of", "Nigeria", "a", "priority", "over", "the", "next", "12", "months", ".", "\n", "Press", "for", "the", "passage", "of", "the", "Electrify", "Africa", "legislation", ":", "\n", "Power", "Africa", "is", "one", "of", "President", "Obama", "'", "s", "most", "important", "signature", "initiatives", ".", "In", "the", "world", "'", "s", "most", "energy", "deficient", "and", "starved", "continent", ",", "it", "is", "intended", "to", "increase", "Africa", "'", "s", "power", "output", "by", "30", ",", "000", "megawatts", "over", "the", "next", "decade", "or", "two", ".", "\n", "But", "like", "a", "number", "of", "recent", "White", "House", "initiatives", ",", "Power", "Africa", "is", "not", "backed", "by", "any", "legislative", "mandate", "and", "could", "be", "easily", "brushed", "aside", "after", "the", "Obama", "administration", "leaves", "office", ".", "The", "program", "enjoys", "bi", "-", "partisan", "support", "in", "the", "Congress", "and", "the", "administration", "needs", "to", "work", "with", "congressional", "leaders", "to", "prioritize", "the", "passage", "of", "the", "Electrify", "Africa", "legislation", ".", "At", "the", "same", "time", ",", "the", "administration", "needs", "to", "create", "a", "senior", "level", "\"", "Power", "Africa", "czar", "\"", "to", "manage", "the", "program", "and", "consider", "moving", "interagency", "responsibility", "for", "oversight", "from", "USAID", "to", "a", "cabinet", "level", "department", ".", "\n", "Instruct", "USAID", "to", "establish", "a", "permanent", "democracy", "fund", ":", "\n", "If", "democracy", "promotion", "is", "an", "important", "priority", ",", "it", "should", "be", "funded", "adequately", "and", "on", "a", "long", "-", "term", "basis", ".", "Today", "that", "is", "not", "the", "case", ".", "Funding", "for", "democracy", "has", "declined", "sharply", "during", "Obama", "'", "s", "second", "term", "despite", "the", "president", "'", "s", "recent", "speeches", "in", "Nairobi", "and", "Addis", "Ababa", ",", "and", "at", "the", "70th", "session", "of", "the", "United", "Nations", "General", "Assembly", "in", "New", "York", ".", "\n", "Dedicated", "and", "hard", "-", "to", "-", "reprogram", "funds", "should", "be", "allocated", "to", "strengthen", "African", "judiciaries", "and", "legislatures", ",", "to", "promote", "civil", "society", "groups", "and", "the", "media", ",", "to", "assist", "women", "'", "s", "organizations", "and", "youth", "groups", "and", "to", "support", "domestic", "and", "international", "election", "monitoring", ".", "Funds", "should", "also", "be", "made", "available", "to", "assist", "local", "organizations", "to", "undertake", "parallel", "vote", "counts", ",", "to", "aid", "local", "election", "commissions", "and", "to", "prevent", "pre", "-", "and", "post", "-", "election", "violence", ".", "\n", "Invite", "Tanzania", "'", "s", "newly", "elected", "President", "John", "Magufuli", "to", "the", "White", "House", ":", "\n", "Tanzania", "is", "the", "most", "populous", "state", "and", "the", "largest", "democracy", "in", "East", "Africa", ".", "It", "is", "also", "one", "of", "the", "largest", "recipients", "of", "U", ".", "S", ".", "development", "assistance", "and", "a", "participant", "in", "all", "of", "Washington", "'", "s", "major", "economic", "initiatives", ".", "\n", "In", "late", "October", ",", "Tanzania", "held", "presidential", "and", "parliamentary", "elections", ".", "The", "elections", "on", "the", "mainland", "went", "well", ",", "but", "those", "on", "the", "island", "of", "Zanzibar", "were", "disputed", ".", "President", "John", "Pombe", "Magufuli", ",", "a", "reform", "-", "minded", "academic", "-", "turned", "-", "politician", ",", "was", "elected", "without", "dispute", ",", "making", "him", "Tanzania", "'", "s", "fifth", "democratically", "-", "elected", "president", "in", "a", "row", ".", "Although", "the", "Zanzibar", "election", "remains", "unresolved", ",", "it", "is", "important", "to", "reach", "out", "to", "Tanzania", "'", "s", "new", "president", "early", "in", "his", "tenure", "to", "continue", "to", "foster", "the", "strong", "relationship", "between", "Dar", "es", "Salaam", "and", "Washington", ".", "\n", "This", "is", "particularly", "important", "since", "President", "Magufuli", "does", "not", "have", "any", "major", "ties", "with", "the", "United", "States", ".", "Tanzania", "also", "has", "a", "critical", "role", "to", "play", "in", "East", "African", "peace", "-", "building", "issues", ",", "particularly", "in", "Burundi", "and", "the", "eastern", "Congo", ".", "Early", "political", "consultations", "with", "President", "Magufuli", "and", "his", "new", "foreign", "minister", ",", "Dr", ".", "Augustine", "Mahiga", ",", "could", "prove", "valuable", "in", "promoting", "stability", "in", "the", "Great", "Lakes", "region", ".", "\n", "Send", "Secretary", "of", "State", "John", "Kerry", "to", "Rwanda", ",", "Burundi", ",", "the", "Democratic", "Republic", "of", "Congo", "(", "DRC", ")", ",", "Uganda", "and", "the", "Republic", "of", "the", "Congo", ":", "\n", "The", "Great", "Lakes", "Region", "of", "Central", "Africa", "is", "one", "of", "the", "most", "volatile", "and", "unstable", "regions", "in", "Africa", ",", "with", "daily", "political", "and", "ethnic", "violence", "in", "Burundi", ",", "and", "with", "the", "leaders", "of", "Rwanda", ",", "the", "DRC", "and", "the", "Congo", "threatening", "to", "extend", "themselves", "in", "office", "in", "violation", "of", "their", "constitutions", ".", "\n", "Although", "time", "is", "running", "out", ",", "there", "is", "still", "an", "opportunity", "to", "prevent", "further", "democratic", "backsliding", "and", "the", "serious", "instability", "and", "violence", "that", "will", "almost", "certainly", "be", "unleashed", "-", "as", "we", "are", "already", "seeing", "in", "Burundi", ".", "High", "level", "engagement", "with", "the", "leaders", "in", "the", "region", "is", "required", ".", "\n", "An", "extended", "visit", "by", "Secretary", "Kerry", "to", "the", "DRC", ",", "Uganda", ",", "Rwanda", "and", "Burundi", "would", "be", "a", "strong", "signal", "of", "Washington", "'", "s", "deep", "concern", "and", "interest", "in", "the", "region", "'", "s", "negative", "political", "and", "security", "trajectory", ".", "Without", "serious", "engagement", "with", "the", "leaders", "on", "the", "ground", ",", "there", "will", "be", "no", "meaningful", "progress", ".", "\n", "Open", "a", "U", ".", "S", ".", "consulate", "in", "northern", "Nigeria", "and", "a", "full", "embassy", "in", "Mogadishu", ":", "\n", "The", "establishment", "of", "a", "consulate", "in", "northern", "Nigeria", "is", "long", "overdue", ".", "More", "than", "half", "of", "Nigeria", "'", "s", "180", "million", "people", "live", "in", "the", "northern", "part", "of", "the", "country", ",", "an", "area", "of", "serious", "political", "and", "security", "concern", ".", "It", "is", "also", "the", "largest", "Muslim", "region", "in", "Africa", "and", "the", "largest", "Muslim", "region", "in", "the", "world", "where", "there", "is", "no", "full", "-", "time", "U", ".", "S", ".", "diplomatic", "presence", ".", "\n", "A", "U", ".", "S", ".", "diplomatic", "mission", "would", "advance", "long", "-", "term", "political", ",", "economic", "and", "security", "interests", "in", "the", "region", "and", "help", "Nigeria", "to", "deal", "with", "the", "economic", ",", "social", "and", "security", "challenges", "it", "faces", "there", ".", "A", "consulate", "in", "Kaduna", ",", "which", "once", "had", "one", ",", "or", "Kano", "would", "convey", "a", "strong", "signal", "to", "the", "Muslim", "community", "that", "Washington", "genuinely", "cares", "about", "the", "people", "in", "the", "region", ".", "\n", "Once", "the", "global", "poster", "child", "of", "a", "failed", "state", ",", "Somalia", "has", "made", "significant", "progress", "over", "the", "past", "seven", "years", ".", "In", "recognition", "of", "the", "progress", ",", "the", "U", ".", "S", ".", "re", "-", "established", "formal", "diplomatic", "relations", "with", "the", "Somali", "government", "in", "Mogadishu", "in", "January", "2013", ".", "\n", "Before", "he", "leaves", "office", ",", "President", "Obama", "should", "take", "one", "more", "step", ".", "He", "should", "reaffirm", "Washington", "'", "s", "commitment", "to", "Somalia", "and", "recognize", "the", "country", "'", "s", "continuing", "progress", "by", "appointing", "a", "Senate", "-", "approved", "ambassador", "and", "opening", "a", "small", ",", "secure", "diplomatic", "embassy", "compound", "in", "downtown", "Mogadishu", ".", "\n", "Elevate", "U", ".", "S", ".", "diplomatic", "relations", "with", "Sudan", ":", "\n", "Relations", "between", "Washington", "and", "Khartoum", "have", "been", "prickly", "and", "frequently", "difficult", "for", "over", "two", "decades", "and", "the", "U", ".", "S", ".", "has", "not", "had", "a", "fully", "accredited", ",", "Senate", "-", "approved", "ambassador", "in", "Sudan", "since", "1997", ".", "\n", "The", "Khartoum", "government", "has", "not", "been", "a", "good", "international", "actor", ".", "(", "Nor", "have", "Cuba", ",", "Myanmar", "or", "Iran", ".", ")", "The", "regime", "in", "Sudan", "has", "carried", "out", "mass", "atrocities", "in", "Darfur", ",", "prevented", "UN", "organizations", "from", "delivering", "food", "aid", "and", "humanitarian", "assistance", "to", "those", "in", "need", "and", "meddled", "in", "the", "affairs", "of", "several", "of", "its", "neighbors", ".", "\n", "But", "U", ".", "S", ".", "-", "imposed", "comprehensive", "sanctions", "on", "Khartoum", "have", "not", "isolated", "the", "country", "nor", "weakened", "its", "government", ".", "The", "U", ".", "S", ".", "should", "review", "its", "current", "policies", "toward", "Khartoum", ",", "and", "consider", "elevating", "its", "diplomatic", "relationship", "to", "full", "ambassadorial", "status", "in", "order", "to", "expand", "America", "'", "s", "dialogue", "and", "probe", "for", "new", "openings", "to", "resolve", "some", "of", "the", "country", "'", "s", "domestic", "and", "regional", "issues", ".", "The", "U", ".", "S", ".", "can", "do", "this", "while", "maintaining", "its", "sanctions", "regime", "on", "the", "government", "and", "its", "demands", "that", "President", "Omar", "al", "-", "Bashir", "address", "the", "serious", "human", "rights", "charges", "against", "him", ".", "\n", "Provide", "a", "status", "report", "on", "the", "results", "of", "the", "U", ".", "S", ".", "-", "Africa", "Leadership", "Summit", ":", "\n", "The", "U", ".", "S", ".", "Africa", "Leadership", "Summit", "has", "been", "one", "of", "the", "high", "points", "in", "the", "Obama", "administration", "'", "s", "engagements", "in", "Africa", ".", "\n", "Leaders", "from", "50", "different", "countries", "participated", "in", "this", "first", "-", "of", "-", "a", "-", "kind", "gathering", "in", "Washington", ".", "A", "number", "of", "new", "programs", "were", "announced", "and", "a", "major", "business", "conference", "associated", "with", "the", "summit", "brought", "dozens", "of", "senior", "American", "business", "leaders", "into", "direct", "contact", "-", "many", "for", "the", "very", "first", "time", "-", "with", "African", "heads", "of", "state", "and", "prominent", "business", "leaders", "from", "the", "continent", ".", "\n", "The", "administration", "has", "never", "released", "a", "comprehensive", "report", "on", "the", "summit", "or", "a", "one", "-", "year", "progress", "report", "on", "the", "implementation", "of", "summit", "agreements", ".", "The", "issuance", "of", "some", "type", "of", "status", "report", "would", "be", "a", "useful", "vehicle", "for", "identifying", "summit", "objectives", "and", "initiatives", "as", "well", "as", "tracking", "the", "progress", "of", "the", "administration", "'", "s", "efforts", ".", "The", "administration", "should", "do", "everything", "it", "can", "to", "sustain", "the", "goodwill", "and", "policy", "initiatives", "that", "emerged", "from", "the", "summit", "to", "help", "ensure", "that", "it", "does", "not", "become", "a", "one", "-", "off", "event", ".", "\n", "The", "administration", "should", "be", "applauded", "for", "its", "continuing", "efforts", "to", "promote", "greater", "American", "trade", "and", "commerce", "with", "Africa", ".", "The", "president", "has", "already", "announced", "that", "he", "plans", "to", "host", "another", "U", ".", "S", ".", "-", "Africa", "Business", "Summit", "similar", "to", "the", "day", "-", "long", "event", "his", "administration", "hosted", "during", "the", "2014", "Leadership", "Summit", ".", "The", "Business", "Summit", "is", "important", ",", "but", "it", "should", "not", "be", "the", "only", "thing", "on", "President", "Obama", "'", "s", "Africa", "agenda", "for", "2016", ".", "He", "has", "time", "to", "do", "more", ",", "and", "he", "should", ".", "Twelve", "months", "is", "a", "long", "time", "in", "the", "life", "of", "an", "administration", "and", "his", "foreign", "policy", "team", "should", "be", "building", "a", "more", "robust", "African", "agenda", "for", "his", "last", "year", "in", "office", ".", "\n", "Ambassador", "Carson", "was", "the", "U", ".", "S", ".", "\n", "Assistant", "Secretary", "of", "State", "for", "African", "Affairs", "\n", "from", "2009", "to", "2012", ".", "He", "is", "currently", "a", "Senior", "Advisor", "at", "the", "\n", "United", "States", "Institute", "of", "Peace", ".", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 4, "end": 5, "input": "tokens", "text": "\n Photo : \n AllAfrica \n Former U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "AllAfrica", "context": {"start": 4, "end": 5, "input": "tokens", "text": "\n Photo : \n AllAfrica \n Former U . S "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 15, "end": 17, "input": "tokens", "text": ". Assistant Secretary of State Johnnie Carson \n guest column \n By "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Johnnie Carson", "context": {"start": 15, "end": 17, "input": "tokens", "text": ". Assistant Secretary of State Johnnie Carson \n guest column \n By "}}, {"origin": {"segment": "content_strict", "context": {"start": 22, "end": 24, "input": "tokens", "text": "\n guest column \n By Johnnie Carson \n Washington , DC \u2014 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Johnnie Carson", "context": {"start": 22, "end": 24, "input": "tokens", "text": "\n guest column \n By Johnnie Carson \n Washington , DC \u2014 "}}, {"origin": {"segment": "content_strict", "context": {"start": 37, "end": 39, "input": "tokens", "text": "years in office , President Barack Obama has already engaged more broadly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Barack Obama", "context": {"start": 37, "end": 39, "input": "tokens", "text": "years in office , President Barack Obama has already engaged more broadly "}}, {"origin": {"segment": "content_strict", "context": {"start": 77, "end": 79, "input": "tokens", "text": "he leaves , writes \n Johnnie Carson \n , the United States "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Johnnie Carson", "context": {"start": 77, "end": 79, "input": "tokens", "text": "he leaves , writes \n Johnnie Carson \n , the United States "}}, {"origin": {"segment": "content_strict", "context": {"start": 99, "end": 100, "input": "tokens", "text": "Obama administration . \n President Obama has significantly elevated and transformed "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 99, "end": 100, "input": "tokens", "text": "Obama administration . \n President Obama has significantly elevated and transformed "}}, {"origin": {"segment": "content_strict", "context": {"start": 288, "end": 289, "input": "tokens", "text": "of young leaders , President Obama established YALI - the Young "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 288, "end": 289, "input": "tokens", "text": "of young leaders , President Obama established YALI - the Young "}}, {"origin": {"segment": "content_strict", "context": {"start": 372, "end": 373, "input": "tokens", "text": "Visit Nigeria : \n President Obama has traveled to Africa five "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 372, "end": 373, "input": "tokens", "text": "Visit Nigeria : \n President Obama has traveled to Africa five "}}, {"origin": {"segment": "content_strict", "context": {"start": 524, "end": 526, "input": "tokens", "text": "safely to Nairobi , where al Shabaab has carried out high profile "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "al Shabaab", "context": {"start": 524, "end": 526, "input": "tokens", "text": "safely to Nairobi , where al Shabaab has carried out high profile "}}, {"origin": {"segment": "content_strict", "context": {"start": 638, "end": 639, "input": "tokens", "text": "in July 2009 , President Obama spoke eloquently before the Ghanaian "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 638, "end": 639, "input": "tokens", "text": "in July 2009 , President Obama spoke eloquently before the Ghanaian "}}, {"origin": {"segment": "content_strict", "context": {"start": 765, "end": 766, "input": "tokens", "text": "the G20 : \n President Obama has said that he wants "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 765, "end": 766, "input": "tokens", "text": "the G20 : \n President Obama has said that he wants "}}, {"origin": {"segment": "content_strict", "context": {"start": 924, "end": 925, "input": "tokens", "text": "Africa is one of President Obama ' s most important signature "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 924, "end": 925, "input": "tokens", "text": "Africa is one of President Obama ' s most important signature "}}, {"origin": {"segment": "content_strict", "context": {"start": 977, "end": 979, "input": "tokens", "text": "recent White House initiatives , Power Africa is not backed by any "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Power Africa", "context": {"start": 977, "end": 979, "input": "tokens", "text": "recent White House initiatives , Power Africa is not backed by any "}}, {"origin": {"segment": "content_strict", "context": {"start": 1223, "end": 1225, "input": "tokens", "text": "- election violence . \n Invite Tanzania ' s newly elected President "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Invite Tanzania", "context": {"start": 1223, "end": 1225, "input": "tokens", "text": "- election violence . \n Invite Tanzania ' s newly elected President "}}, {"origin": {"segment": "content_strict", "context": {"start": 1230, "end": 1232, "input": "tokens", "text": "' s newly elected President John Magufuli to the White House : "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "John Magufuli", "context": {"start": 1230, "end": 1232, "input": "tokens", "text": "' s newly elected President John Magufuli to the White House : "}}, {"origin": {"segment": "content_strict", "context": {"start": 1311, "end": 1314, "input": "tokens", "text": "Zanzibar were disputed . President John Pombe Magufuli , a reform - minded "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "John Pombe Magufuli", "context": {"start": 1311, "end": 1314, "input": "tokens", "text": "Zanzibar were disputed . President John Pombe Magufuli , a reform - minded "}}, {"origin": {"segment": "content_strict", "context": {"start": 1346, "end": 1347, "input": "tokens", "text": "a row . Although the Zanzibar election remains unresolved , it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Zanzibar", "context": {"start": 1346, "end": 1347, "input": "tokens", "text": "a row . Although the Zanzibar election remains unresolved , it "}}, {"origin": {"segment": "content_strict", "context": {"start": 1388, "end": 1389, "input": "tokens", "text": "is particularly important since President Magufuli does not have any major "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Magufuli", "context": {"start": 1388, "end": 1389, "input": "tokens", "text": "is particularly important since President Magufuli does not have any major "}}, {"origin": {"segment": "content_strict", "context": {"start": 1429, "end": 1430, "input": "tokens", "text": "Early political consultations with President Magufuli and his new foreign minister "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Magufuli", "context": {"start": 1429, "end": 1430, "input": "tokens", "text": "Early political consultations with President Magufuli and his new foreign minister "}}, {"origin": {"segment": "content_strict", "context": {"start": 1436, "end": 1437, "input": "tokens", "text": "his new foreign minister , Dr . Augustine Mahiga , could "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Dr", "context": {"start": 1436, "end": 1437, "input": "tokens", "text": "his new foreign minister , Dr . Augustine Mahiga , could "}}, {"origin": {"segment": "content_strict", "context": {"start": 1438, "end": 1440, "input": "tokens", "text": "foreign minister , Dr . Augustine Mahiga , could prove valuable in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Augustine Mahiga", "context": {"start": 1438, "end": 1440, "input": "tokens", "text": "foreign minister , Dr . Augustine Mahiga , could prove valuable in "}}, {"origin": {"segment": "content_strict", "context": {"start": 1458, "end": 1460, "input": "tokens", "text": "\n Send Secretary of State John Kerry to Rwanda , Burundi , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "John Kerry", "context": {"start": 1458, "end": 1460, "input": "tokens", "text": "\n Send Secretary of State John Kerry to Rwanda , Burundi , "}}, {"origin": {"segment": "content_strict", "context": {"start": 1591, "end": 1592, "input": "tokens", "text": "An extended visit by Secretary Kerry to the DRC , Uganda "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Kerry", "context": {"start": 1591, "end": 1592, "input": "tokens", "text": "An extended visit by Secretary Kerry to the DRC , Uganda "}}, {"origin": {"segment": "content_strict", "context": {"start": 1782, "end": 1783, "input": "tokens", "text": "once had one , or Kano would convey a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Kano", "context": {"start": 1782, "end": 1783, "input": "tokens", "text": "once had one , or Kano would convey a strong signal "}}, {"origin": {"segment": "content_strict", "context": {"start": 1859, "end": 1860, "input": "tokens", "text": "he leaves office , President Obama should take one more step "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 1859, "end": 1860, "input": "tokens", "text": "he leaves office , President Obama should take one more step "}}, {"origin": {"segment": "content_strict", "context": {"start": 1969, "end": 1970, "input": "tokens", "text": "( Nor have Cuba , Myanmar or Iran . ) The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Myanmar", "context": {"start": 1969, "end": 1970, "input": "tokens", "text": "( Nor have Cuba , Myanmar or Iran . ) The "}}, {"origin": {"segment": "content_strict", "context": {"start": 2103, "end": 2107, "input": "tokens", "text": "and its demands that President Omar al - Bashir address the serious human rights "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Omar al - Bashir", "context": {"start": 2103, "end": 2107, "input": "tokens", "text": "and its demands that President Omar al - Bashir address the serious human rights "}}, {"origin": {"segment": "content_strict", "context": {"start": 2390, "end": 2391, "input": "tokens", "text": "the only thing on President Obama ' s Africa agenda for "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 2390, "end": 2391, "input": "tokens", "text": "the only thing on President Obama ' s Africa agenda for "}}, {"origin": {"segment": "content_strict", "context": {"start": 2442, "end": 2444, "input": "tokens", "text": "year in office . \n Ambassador Carson was the U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Ambassador Carson", "context": {"start": 2442, "end": 2444, "input": "tokens", "text": "year in office . \n Ambassador Carson was the U . S "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 45, "end": 46, "input": "tokens", "text": "already engaged more broadly on Africa than any previous American president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 45, "end": 46, "input": "tokens", "text": "already engaged more broadly on Africa than any previous American president "}}, {"origin": {"segment": "content_strict", "context": {"start": 90, "end": 91, "input": "tokens", "text": "top policy - maker on Africa in the first Obama administration "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 90, "end": 91, "input": "tokens", "text": "top policy - maker on Africa in the first Obama administration "}}, {"origin": {"segment": "content_strict", "context": {"start": 110, "end": 111, "input": "tokens", "text": "America ' s engagement with Africa , traveling widely across the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 110, "end": 111, "input": "tokens", "text": "America ' s engagement with Africa , traveling widely across the "}}, {"origin": {"segment": "content_strict", "context": {"start": 140, "end": 141, "input": "tokens", "text": "could help speed - up Africa ' s economic development . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 140, "end": 141, "input": "tokens", "text": "could help speed - up Africa ' s economic development . "}}, {"origin": {"segment": "content_strict", "context": {"start": 187, "end": 188, "input": "tokens", "text": "most important trade legislation with Africa ; he hosted the first "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 187, "end": 188, "input": "tokens", "text": "most important trade legislation with Africa ; he hosted the first "}}, {"origin": {"segment": "content_strict", "context": {"start": 252, "end": 253, "input": "tokens", "text": "generate a green revolution throughout Africa , and \" Trade Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 252, "end": 253, "input": "tokens", "text": "generate a green revolution throughout Africa , and \" Trade Africa "}}, {"origin": {"segment": "content_strict", "context": {"start": 265, "end": 266, "input": "tokens", "text": "to expand substantially trade between Africa and the United States . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 265, "end": 266, "input": "tokens", "text": "to expand substantially trade between Africa and the United States . "}}, {"origin": {"segment": "content_strict", "context": {"start": 376, "end": 377, "input": "tokens", "text": "President Obama has traveled to Africa five times during his presidency "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 376, "end": 377, "input": "tokens", "text": "President Obama has traveled to Africa five times during his presidency "}}, {"origin": {"segment": "content_strict", "context": {"start": 560, "end": 561, "input": "tokens", "text": "make one more trip to Europe , and a stop in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Europe", "context": {"start": 560, "end": 561, "input": "tokens", "text": "make one more trip to Europe , and a stop in "}}, {"origin": {"segment": "content_strict", "context": {"start": 594, "end": 595, "input": "tokens", "text": "summit on democracy in west Africa : \n Strengthening democracy institutions "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 594, "end": 595, "input": "tokens", "text": "summit on democracy in west Africa : \n Strengthening democracy institutions "}}, {"origin": {"segment": "content_strict", "context": {"start": 620, "end": 621, "input": "tokens", "text": "for the Obama administration in Africa . \n During his first "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 620, "end": 621, "input": "tokens", "text": "for the Obama administration in Africa . \n During his first "}}, {"origin": {"segment": "content_strict", "context": {"start": 697, "end": 698, "input": "tokens", "text": "president could give democracy in Africa a boost and reaffirm America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 697, "end": 698, "input": "tokens", "text": "president could give democracy in Africa a boost and reaffirm America "}}, {"origin": {"segment": "content_strict", "context": {"start": 708, "end": 709, "input": "tokens", "text": "' s strong commitment to Africa ' s political progress by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 708, "end": 709, "input": "tokens", "text": "' s strong commitment to Africa ' s political progress by "}}, {"origin": {"segment": "content_strict", "context": {"start": 774, "end": 775, "input": "tokens", "text": "he wants to ensure that Africa has a place at the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 774, "end": 775, "input": "tokens", "text": "he wants to ensure that Africa has a place at the "}}, {"origin": {"segment": "content_strict", "context": {"start": 949, "end": 950, "input": "tokens", "text": "it is intended to increase Africa ' s power output by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 949, "end": 950, "input": "tokens", "text": "it is intended to increase Africa ' s power output by "}}, {"origin": {"segment": "content_strict", "context": {"start": 1709, "end": 1710, "input": "tokens", "text": "the largest Muslim region in Africa and the largest Muslim region "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 1709, "end": 1710, "input": "tokens", "text": "the largest Muslim region in Africa and the largest Muslim region "}}, {"origin": {"segment": "content_strict", "context": {"start": 2159, "end": 2160, "input": "tokens", "text": "administration ' s engagements in Africa . \n Leaders from 50 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 2159, "end": 2160, "input": "tokens", "text": "administration ' s engagements in Africa . \n Leaders from 50 "}}, {"origin": {"segment": "content_strict", "context": {"start": 2337, "end": 2338, "input": "tokens", "text": "American trade and commerce with Africa . The president has already "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 2337, "end": 2338, "input": "tokens", "text": "American trade and commerce with Africa . The president has already "}}, {"origin": {"segment": "content_strict", "context": {"start": 2393, "end": 2394, "input": "tokens", "text": "on President Obama ' s Africa agenda for 2016 . He "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 2393, "end": 2394, "input": "tokens", "text": "on President Obama ' s Africa agenda for 2016 . He "}}]}}, "money": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 1679, "end": 1682, "input": "tokens", "text": "than half of Nigeria ' s 180 million people live in the northern "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "s 180 million", "context": {"start": 1679, "end": 1682, "input": "tokens", "text": "than half of Nigeria ' s 180 million people live in the northern "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 14, "end": 15, "input": "tokens", "text": "S . Assistant Secretary of State Johnnie Carson \n guest column "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "State", "context": {"start": 14, "end": 15, "input": "tokens", "text": "S . Assistant Secretary of State Johnnie Carson \n guest column "}}, {"origin": {"segment": "content_strict", "context": {"start": 27, "end": 29, "input": "tokens", "text": "Johnnie Carson \n Washington , DC \u2014 \n After seven years in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "DC \u2014", "context": {"start": 27, "end": 29, "input": "tokens", "text": "Johnnie Carson \n Washington , DC \u2014 \n After seven years in "}}, {"origin": {"segment": "content_strict", "context": {"start": 58, "end": 61, "input": "tokens", "text": "with one year remaining in the White House , there are still a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the White House", "context": {"start": 58, "end": 61, "input": "tokens", "text": "with one year remaining in the White House , there are still a "}}, {"origin": {"segment": "content_strict", "context": {"start": 169, "end": 175, "input": "tokens", "text": "the renewal and extension of the African Growth and Opportunity Act ( AGOA ) , America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the African Growth and Opportunity Act", "context": {"start": 169, "end": 175, "input": "tokens", "text": "the renewal and extension of the African Growth and Opportunity Act ( AGOA ) , America "}}, {"origin": {"segment": "content_strict", "context": {"start": 176, "end": 177, "input": "tokens", "text": "Growth and Opportunity Act ( AGOA ) , America ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "AGOA", "context": {"start": 176, "end": 177, "input": "tokens", "text": "Growth and Opportunity Act ( AGOA ) , America ' s "}}, {"origin": {"segment": "content_strict", "context": {"start": 221, "end": 223, "input": "tokens", "text": "economic programs , including \" Power Africa \" - to expand significantly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Power Africa", "context": {"start": 221, "end": 223, "input": "tokens", "text": "economic programs , including \" Power Africa \" - to expand significantly "}}, {"origin": {"segment": "content_strict", "context": {"start": 256, "end": 258, "input": "tokens", "text": "throughout Africa , and \" Trade Africa \" - to expand substantially "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Trade Africa", "context": {"start": 256, "end": 258, "input": "tokens", "text": "throughout Africa , and \" Trade Africa \" - to expand substantially "}}, {"origin": {"segment": "content_strict", "context": {"start": 290, "end": 291, "input": "tokens", "text": "leaders , President Obama established YALI - the Young African Leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "YALI", "context": {"start": 290, "end": 291, "input": "tokens", "text": "leaders , President Obama established YALI - the Young African Leaders "}}, {"origin": {"segment": "content_strict", "context": {"start": 292, "end": 297, "input": "tokens", "text": "President Obama established YALI - the Young African Leaders Initiative , a program that will "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Young African Leaders Initiative", "context": {"start": 292, "end": 297, "input": "tokens", "text": "President Obama established YALI - the Young African Leaders Initiative , a program that will "}}, {"origin": {"segment": "content_strict", "context": {"start": 496, "end": 497, "input": "tokens", "text": "a stop in Lagos or Abuja . \n Some have suggested "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Abuja", "context": {"start": 496, "end": 497, "input": "tokens", "text": "a stop in Lagos or Abuja . \n Some have suggested "}}, {"origin": {"segment": "content_strict", "context": {"start": 510, "end": 512, "input": "tokens", "text": "be a concern because of Boko Haram , but if the president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Boko Haram", "context": {"start": 510, "end": 512, "input": "tokens", "text": "be a concern because of Boko Haram , but if the president "}}, {"origin": {"segment": "content_strict", "context": {"start": 642, "end": 645, "input": "tokens", "text": "President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Ghanaian Parliament", "context": {"start": 642, "end": 645, "input": "tokens", "text": "President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy "}}, {"origin": {"segment": "content_strict", "context": {"start": 747, "end": 749, "input": "tokens", "text": ", Mauritania , Senegal , Sierra Leone and Togo . \n Support "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Sierra Leone", "context": {"start": 747, "end": 749, "input": "tokens", "text": ", Mauritania , Senegal , Sierra Leone and Togo . \n Support "}}, {"origin": {"segment": "content_strict", "context": {"start": 863, "end": 864, "input": "tokens", "text": "states , eclipsing several other G20 members in the size of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "G20", "context": {"start": 863, "end": 864, "input": "tokens", "text": "states , eclipsing several other G20 members in the size of "}}, {"origin": {"segment": "content_strict", "context": {"start": 884, "end": 885, "input": "tokens", "text": "also be one of the G20 ' s largest democracies . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "G20", "context": {"start": 884, "end": 885, "input": "tokens", "text": "also be one of the G20 ' s largest democracies . "}}, {"origin": {"segment": "content_strict", "context": {"start": 912, "end": 915, "input": "tokens", "text": "Press for the passage of the Electrify Africa legislation : \n Power Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Electrify Africa", "context": {"start": 912, "end": 915, "input": "tokens", "text": "Press for the passage of the Electrify Africa legislation : \n Power Africa "}}, {"origin": {"segment": "content_strict", "context": {"start": 918, "end": 920, "input": "tokens", "text": "Electrify Africa legislation : \n Power Africa is one of President Obama "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Power Africa", "context": {"start": 918, "end": 920, "input": "tokens", "text": "Electrify Africa legislation : \n Power Africa is one of President Obama "}}, {"origin": {"segment": "content_strict", "context": {"start": 973, "end": 975, "input": "tokens", "text": "like a number of recent White House initiatives , Power Africa is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "White House", "context": {"start": 973, "end": 975, "input": "tokens", "text": "like a number of recent White House initiatives , Power Africa is "}}, {"origin": {"segment": "content_strict", "context": {"start": 994, "end": 995, "input": "tokens", "text": "easily brushed aside after the Obama administration leaves office . The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 994, "end": 995, "input": "tokens", "text": "easily brushed aside after the Obama administration leaves office . The "}}, {"origin": {"segment": "content_strict", "context": {"start": 1008, "end": 1009, "input": "tokens", "text": "- partisan support in the Congress and the administration needs to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Congress", "context": {"start": 1008, "end": 1009, "input": "tokens", "text": "- partisan support in the Congress and the administration needs to "}}, {"origin": {"segment": "content_strict", "context": {"start": 1023, "end": 1026, "input": "tokens", "text": "to prioritize the passage of the Electrify Africa legislation . At the same "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Electrify Africa", "context": {"start": 1023, "end": 1026, "input": "tokens", "text": "to prioritize the passage of the Electrify Africa legislation . At the same "}}, {"origin": {"segment": "content_strict", "context": {"start": 1042, "end": 1044, "input": "tokens", "text": "create a senior level \" Power Africa czar \" to manage the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Power Africa", "context": {"start": 1042, "end": 1044, "input": "tokens", "text": "create a senior level \" Power Africa czar \" to manage the "}}, {"origin": {"segment": "content_strict", "context": {"start": 1058, "end": 1059, "input": "tokens", "text": "interagency responsibility for oversight from USAID to a cabinet level department "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "USAID", "context": {"start": 1058, "end": 1059, "input": "tokens", "text": "interagency responsibility for oversight from USAID to a cabinet level department "}}, {"origin": {"segment": "content_strict", "context": {"start": 1135, "end": 1140, "input": "tokens", "text": "at the 70th session of the United Nations General Assembly in New York . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the United Nations General Assembly", "context": {"start": 1135, "end": 1140, "input": "tokens", "text": "at the 70th session of the United Nations General Assembly in New York . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 1233, "end": 1236, "input": "tokens", "text": "elected President John Magufuli to the White House : \n Tanzania is the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the White House", "context": {"start": 1233, "end": 1236, "input": "tokens", "text": "elected President John Magufuli to the White House : \n Tanzania is the "}}, {"origin": {"segment": "content_strict", "context": {"start": 1375, "end": 1378, "input": "tokens", "text": "foster the strong relationship between Dar es Salaam and Washington . \n This "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Dar es Salaam", "context": {"start": 1375, "end": 1378, "input": "tokens", "text": "foster the strong relationship between Dar es Salaam and Washington . \n This "}}, {"origin": {"segment": "content_strict", "context": {"start": 1457, "end": 1458, "input": "tokens", "text": ". \n Send Secretary of State John Kerry to Rwanda , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "State", "context": {"start": 1457, "end": 1458, "input": "tokens", "text": ". \n Send Secretary of State John Kerry to Rwanda , "}}, {"origin": {"segment": "content_strict", "context": {"start": 1465, "end": 1469, "input": "tokens", "text": "to Rwanda , Burundi , the Democratic Republic of Congo ( DRC ) , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Democratic Republic of", "context": {"start": 1465, "end": 1469, "input": "tokens", "text": "to Rwanda , Burundi , the Democratic Republic of Congo ( DRC ) , "}}, {"origin": {"segment": "content_strict", "context": {"start": 1471, "end": 1472, "input": "tokens", "text": "Democratic Republic of Congo ( DRC ) , Uganda and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "DRC", "context": {"start": 1471, "end": 1472, "input": "tokens", "text": "Democratic Republic of Congo ( DRC ) , Uganda and the "}}, {"origin": {"segment": "content_strict", "context": {"start": 1483, "end": 1488, "input": "tokens", "text": "of the Congo : \n The Great Lakes Region of Central Africa is one of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "The Great Lakes Region of", "context": {"start": 1483, "end": 1488, "input": "tokens", "text": "of the Congo : \n The Great Lakes Region of Central Africa is one of "}}, {"origin": {"segment": "content_strict", "context": {"start": 1519, "end": 1520, "input": "tokens", "text": "leaders of Rwanda , the DRC and the Congo threatening to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "DRC", "context": {"start": 1519, "end": 1520, "input": "tokens", "text": "leaders of Rwanda , the DRC and the Congo threatening to "}}, {"origin": {"segment": "content_strict", "context": {"start": 1594, "end": 1595, "input": "tokens", "text": "by Secretary Kerry to the DRC , Uganda , Rwanda and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "DRC", "context": {"start": 1594, "end": 1595, "input": "tokens", "text": "by Secretary Kerry to the DRC , Uganda , Rwanda and "}}, {"origin": {"segment": "content_strict", "context": {"start": 1645, "end": 1646, "input": "tokens", "text": "progress . \n Open a U . S . consulate in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "U", "context": {"start": 1645, "end": 1646, "input": "tokens", "text": "progress . \n Open a U . S . consulate in "}}, {"origin": {"segment": "content_strict", "context": {"start": 1886, "end": 1887, "input": "tokens", "text": "continuing progress by appointing a Senate - approved ambassador and opening "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Senate", "context": {"start": 1886, "end": 1887, "input": "tokens", "text": "continuing progress by appointing a Senate - approved ambassador and opening "}}, {"origin": {"segment": "content_strict", "context": {"start": 1943, "end": 1944, "input": "tokens", "text": "had a fully accredited , Senate - approved ambassador in Sudan "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Senate", "context": {"start": 1943, "end": 1944, "input": "tokens", "text": "had a fully accredited , Senate - approved ambassador in Sudan "}}, {"origin": {"segment": "content_strict", "context": {"start": 1987, "end": 1988, "input": "tokens", "text": "atrocities in Darfur , prevented UN organizations from delivering food aid "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "UN", "context": {"start": 1987, "end": 1988, "input": "tokens", "text": "atrocities in Darfur , prevented UN organizations from delivering food aid "}}, {"origin": {"segment": "content_strict", "context": {"start": 2141, "end": 2144, "input": "tokens", "text": "The U . S . Africa Leadership Summit has been one of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa Leadership Summit", "context": {"start": 2141, "end": 2144, "input": "tokens", "text": "The U . S . Africa Leadership Summit has been one of the "}}, {"origin": {"segment": "content_strict", "context": {"start": 2153, "end": 2154, "input": "tokens", "text": "the high points in the Obama administration ' s engagements in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 2153, "end": 2154, "input": "tokens", "text": "the high points in the Obama administration ' s engagements in "}}, {"origin": {"segment": "content_strict", "context": {"start": 2350, "end": 2351, "input": "tokens", "text": "he plans to host another U . S . - Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "U", "context": {"start": 2350, "end": 2351, "input": "tokens", "text": "he plans to host another U . S . - Africa "}}, {"origin": {"segment": "content_strict", "context": {"start": 2374, "end": 2377, "input": "tokens", "text": "the 2014 Leadership Summit . The Business Summit is important , but it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "The Business Summit", "context": {"start": 2374, "end": 2377, "input": "tokens", "text": "the 2014 Leadership Summit . The Business Summit is important , but it "}}, {"origin": {"segment": "content_strict", "context": {"start": 2454, "end": 2455, "input": "tokens", "text": ". \n Assistant Secretary of State for African Affairs \n from "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "State", "context": {"start": 2454, "end": 2455, "input": "tokens", "text": ". \n Assistant Secretary of State for African Affairs \n from "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 25, "end": 26, "input": "tokens", "text": "\n By Johnnie Carson \n Washington , DC \u2014 \n After "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 25, "end": 26, "input": "tokens", "text": "\n By Johnnie Carson \n Washington , DC \u2014 \n After "}}, {"origin": {"segment": "content_strict", "context": {"start": 81, "end": 84, "input": "tokens", "text": "\n Johnnie Carson \n , the United States ' top policy - maker "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the United States", "context": {"start": 81, "end": 84, "input": "tokens", "text": "\n Johnnie Carson \n , the United States ' top policy - maker "}}, {"origin": {"segment": "content_strict", "context": {"start": 105, "end": 106, "input": "tokens", "text": "has significantly elevated and transformed America ' s engagement with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "America", "context": {"start": 105, "end": 106, "input": "tokens", "text": "has significantly elevated and transformed America ' s engagement with Africa "}}, {"origin": {"segment": "content_strict", "context": {"start": 179, "end": 180, "input": "tokens", "text": "Act ( AGOA ) , America ' s most important trade "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "America", "context": {"start": 179, "end": 180, "input": "tokens", "text": "Act ( AGOA ) , America ' s most important trade "}}, {"origin": {"segment": "content_strict", "context": {"start": 267, "end": 270, "input": "tokens", "text": "substantially trade between Africa and the United States . \n Recognizing the growing "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the United States", "context": {"start": 267, "end": 270, "input": "tokens", "text": "substantially trade between Africa and the United States . \n Recognizing the growing "}}, {"origin": {"segment": "content_strict", "context": {"start": 368, "end": 369, "input": "tokens", "text": "January 2017 : \n Visit Nigeria : \n President Obama has "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 368, "end": 369, "input": "tokens", "text": "January 2017 : \n Visit Nigeria : \n President Obama has "}}, {"origin": {"segment": "content_strict", "context": {"start": 388, "end": 389, "input": "tokens", "text": "but he has not visited Nigeria , the continent ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 388, "end": 389, "input": "tokens", "text": "but he has not visited Nigeria , the continent ' s "}}, {"origin": {"segment": "content_strict", "context": {"start": 423, "end": 425, "input": "tokens", "text": "almost twice the size of South Africa ' s and a third "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "South Africa", "context": {"start": 423, "end": 425, "input": "tokens", "text": "almost twice the size of South Africa ' s and a third "}}, {"origin": {"segment": "content_strict", "context": {"start": 434, "end": 435, "input": "tokens", "text": "third larger than that of Egypt . \n It is also "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Egypt", "context": {"start": 434, "end": 435, "input": "tokens", "text": "third larger than that of Egypt . \n It is also "}}, {"origin": {"segment": "content_strict", "context": {"start": 475, "end": 476, "input": "tokens", "text": "country on the continent except Nigeria , and it would be "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 475, "end": 476, "input": "tokens", "text": "country on the continent except Nigeria , and it would be "}}, {"origin": {"segment": "content_strict", "context": {"start": 494, "end": 495, "input": "tokens", "text": "House without a stop in Lagos or Abuja . \n Some "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Lagos", "context": {"start": 494, "end": 495, "input": "tokens", "text": "House without a stop in Lagos or Abuja . \n Some "}}, {"origin": {"segment": "content_strict", "context": {"start": 521, "end": 522, "input": "tokens", "text": "president can travel safely to Nairobi , where al Shabaab has "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nairobi", "context": {"start": 521, "end": 522, "input": "tokens", "text": "president can travel safely to Nairobi , where al Shabaab has "}}, {"origin": {"segment": "content_strict", "context": {"start": 547, "end": 548, "input": "tokens", "text": "able to travel safely to Abuja or Lagos . He is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Abuja", "context": {"start": 547, "end": 548, "input": "tokens", "text": "able to travel safely to Abuja or Lagos . He is "}}, {"origin": {"segment": "content_strict", "context": {"start": 549, "end": 550, "input": "tokens", "text": "travel safely to Abuja or Lagos . He is bound to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Lagos", "context": {"start": 549, "end": 550, "input": "tokens", "text": "travel safely to Abuja or Lagos . He is bound to "}}, {"origin": {"segment": "content_strict", "context": {"start": 566, "end": 567, "input": "tokens", "text": ", and a stop in Nigeria - similar to his 2009 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 566, "end": 567, "input": "tokens", "text": ", and a stop in Nigeria - similar to his 2009 "}}, {"origin": {"segment": "content_strict", "context": {"start": 574, "end": 575, "input": "tokens", "text": "to his 2009 visit to Ghana - would not be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Ghana", "context": {"start": 574, "end": 575, "input": "tokens", "text": "to his 2009 visit to Ghana - would not be a "}}, {"origin": {"segment": "content_strict", "context": {"start": 617, "end": 618, "input": "tokens", "text": "a major priority for the Obama administration in Africa . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Obama", "context": {"start": 617, "end": 618, "input": "tokens", "text": "a major priority for the Obama administration in Africa . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 702, "end": 703, "input": "tokens", "text": "Africa a boost and reaffirm America ' s strong commitment to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "America", "context": {"start": 702, "end": 703, "input": "tokens", "text": "Africa a boost and reaffirm America ' s strong commitment to "}}, {"origin": {"segment": "content_strict", "context": {"start": 718, "end": 720, "input": "tokens", "text": "by hosting a conference in West Africa with the democratically - elected "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "West Africa", "context": {"start": 718, "end": 720, "input": "tokens", "text": "by hosting a conference in West Africa with the democratically - elected "}}, {"origin": {"segment": "content_strict", "context": {"start": 727, "end": 728, "input": "tokens", "text": "democratically - elected leaders of Benin , Burkina Faso , Cape "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Benin", "context": {"start": 727, "end": 728, "input": "tokens", "text": "democratically - elected leaders of Benin , Burkina Faso , Cape "}}, {"origin": {"segment": "content_strict", "context": {"start": 729, "end": 731, "input": "tokens", "text": "elected leaders of Benin , Burkina Faso , Cape Verde , Liberia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burkina Faso", "context": {"start": 729, "end": 731, "input": "tokens", "text": "elected leaders of Benin , Burkina Faso , Cape Verde , Liberia "}}, {"origin": {"segment": "content_strict", "context": {"start": 732, "end": 734, "input": "tokens", "text": "Benin , Burkina Faso , Cape Verde , Liberia , Niger , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Cape Verde", "context": {"start": 732, "end": 734, "input": "tokens", "text": "Benin , Burkina Faso , Cape Verde , Liberia , Niger , "}}, {"origin": {"segment": "content_strict", "context": {"start": 735, "end": 736, "input": "tokens", "text": "Faso , Cape Verde , Liberia , Niger , Nigeria , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Liberia", "context": {"start": 735, "end": 736, "input": "tokens", "text": "Faso , Cape Verde , Liberia , Niger , Nigeria , "}}, {"origin": {"segment": "content_strict", "context": {"start": 737, "end": 738, "input": "tokens", "text": "Cape Verde , Liberia , Niger , Nigeria , Mali , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Niger", "context": {"start": 737, "end": 738, "input": "tokens", "text": "Cape Verde , Liberia , Niger , Nigeria , Mali , "}}, {"origin": {"segment": "content_strict", "context": {"start": 739, "end": 740, "input": "tokens", "text": ", Liberia , Niger , Nigeria , Mali , Mauritania , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 739, "end": 740, "input": "tokens", "text": ", Liberia , Niger , Nigeria , Mali , Mauritania , "}}, {"origin": {"segment": "content_strict", "context": {"start": 741, "end": 742, "input": "tokens", "text": ", Niger , Nigeria , Mali , Mauritania , Senegal , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Mali", "context": {"start": 741, "end": 742, "input": "tokens", "text": ", Niger , Nigeria , Mali , Mauritania , Senegal , "}}, {"origin": {"segment": "content_strict", "context": {"start": 743, "end": 744, "input": "tokens", "text": ", Nigeria , Mali , Mauritania , Senegal , Sierra Leone "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Mauritania", "context": {"start": 743, "end": 744, "input": "tokens", "text": ", Nigeria , Mali , Mauritania , Senegal , Sierra Leone "}}, {"origin": {"segment": "content_strict", "context": {"start": 745, "end": 746, "input": "tokens", "text": ", Mali , Mauritania , Senegal , Sierra Leone and Togo "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Senegal", "context": {"start": 745, "end": 746, "input": "tokens", "text": ", Mali , Mauritania , Senegal , Sierra Leone and Togo "}}, {"origin": {"segment": "content_strict", "context": {"start": 750, "end": 751, "input": "tokens", "text": "Senegal , Sierra Leone and Togo . \n Support Nigeria ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Togo", "context": {"start": 750, "end": 751, "input": "tokens", "text": "Senegal , Sierra Leone and Togo . \n Support Nigeria ' "}}, {"origin": {"segment": "content_strict", "context": {"start": 753, "end": 755, "input": "tokens", "text": "Leone and Togo . \n Support Nigeria ' s permanent membership in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Support Nigeria", "context": {"start": 753, "end": 755, "input": "tokens", "text": "Leone and Togo . \n Support Nigeria ' s permanent membership in "}}, {"origin": {"segment": "content_strict", "context": {"start": 811, "end": 812, "input": "tokens", "text": "group of nations to include Nigeria as a permanent member of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 811, "end": 812, "input": "tokens", "text": "group of nations to include Nigeria as a permanent member of "}}, {"origin": {"segment": "content_strict", "context": {"start": 823, "end": 824, "input": "tokens", "text": "important global organization . \n Nigeria is already more important than "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 823, "end": 824, "input": "tokens", "text": "important global organization . \n Nigeria is already more important than "}}, {"origin": {"segment": "content_strict", "context": {"start": 837, "end": 838, "input": "tokens", "text": "current G20 members , notably Argentina and South Africa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Argentina", "context": {"start": 837, "end": 838, "input": "tokens", "text": "current G20 members , notably Argentina and South Africa , and "}}, {"origin": {"segment": "content_strict", "context": {"start": 839, "end": 841, "input": "tokens", "text": "members , notably Argentina and South Africa , and over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "South Africa", "context": {"start": 839, "end": 841, "input": "tokens", "text": "members , notably Argentina and South Africa , and over the next "}}, {"origin": {"segment": "content_strict", "context": {"start": 897, "end": 898, "input": "tokens", "text": "should make the inclusion of Nigeria a priority over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 897, "end": 898, "input": "tokens", "text": "should make the inclusion of Nigeria a priority over the next "}}, {"origin": {"segment": "content_strict", "context": {"start": 1124, "end": 1125, "input": "tokens", "text": "' s recent speeches in Nairobi and Addis Ababa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nairobi", "context": {"start": 1124, "end": 1125, "input": "tokens", "text": "' s recent speeches in Nairobi and Addis Ababa , and "}}, {"origin": {"segment": "content_strict", "context": {"start": 1126, "end": 1128, "input": "tokens", "text": "recent speeches in Nairobi and Addis Ababa , and at the 70th "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Addis Ababa", "context": {"start": 1126, "end": 1128, "input": "tokens", "text": "recent speeches in Nairobi and Addis Ababa , and at the 70th "}}, {"origin": {"segment": "content_strict", "context": {"start": 1238, "end": 1239, "input": "tokens", "text": "the White House : \n Tanzania is the most populous state "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Tanzania", "context": {"start": 1238, "end": 1239, "input": "tokens", "text": "the White House : \n Tanzania is the most populous state "}}, {"origin": {"segment": "content_strict", "context": {"start": 1249, "end": 1251, "input": "tokens", "text": "and the largest democracy in East Africa . It is also one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "East Africa", "context": {"start": 1249, "end": 1251, "input": "tokens", "text": "and the largest democracy in East Africa . It is also one "}}, {"origin": {"segment": "content_strict", "context": {"start": 1273, "end": 1274, "input": "tokens", "text": "a participant in all of Washington ' s major economic initiatives "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1273, "end": 1274, "input": "tokens", "text": "a participant in all of Washington ' s major economic initiatives "}}, {"origin": {"segment": "content_strict", "context": {"start": 1285, "end": 1286, "input": "tokens", "text": "\n In late October , Tanzania held presidential and parliamentary elections "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Tanzania", "context": {"start": 1285, "end": 1286, "input": "tokens", "text": "\n In late October , Tanzania held presidential and parliamentary elections "}}, {"origin": {"segment": "content_strict", "context": {"start": 1306, "end": 1307, "input": "tokens", "text": "those on the island of Zanzibar were disputed . President John "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Zanzibar", "context": {"start": 1306, "end": 1307, "input": "tokens", "text": "those on the island of Zanzibar were disputed . President John "}}, {"origin": {"segment": "content_strict", "context": {"start": 1332, "end": 1333, "input": "tokens", "text": "without dispute , making him Tanzania ' s fifth democratically - "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Tanzania", "context": {"start": 1332, "end": 1333, "input": "tokens", "text": "without dispute , making him Tanzania ' s fifth democratically - "}}, {"origin": {"segment": "content_strict", "context": {"start": 1358, "end": 1359, "input": "tokens", "text": "important to reach out to Tanzania ' s new president early "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Tanzania", "context": {"start": 1358, "end": 1359, "input": "tokens", "text": "important to reach out to Tanzania ' s new president early "}}, {"origin": {"segment": "content_strict", "context": {"start": 1379, "end": 1380, "input": "tokens", "text": "between Dar es Salaam and Washington . \n This is particularly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1379, "end": 1380, "input": "tokens", "text": "between Dar es Salaam and Washington . \n This is particularly "}}, {"origin": {"segment": "content_strict", "context": {"start": 1396, "end": 1399, "input": "tokens", "text": "have any major ties with the United States . Tanzania also has a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the United States", "context": {"start": 1396, "end": 1399, "input": "tokens", "text": "have any major ties with the United States . Tanzania also has a "}}, {"origin": {"segment": "content_strict", "context": {"start": 1400, "end": 1401, "input": "tokens", "text": "with the United States . Tanzania also has a critical role "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Tanzania", "context": {"start": 1400, "end": 1401, "input": "tokens", "text": "with the United States . Tanzania also has a critical role "}}, {"origin": {"segment": "content_strict", "context": {"start": 1418, "end": 1419, "input": "tokens", "text": "building issues , particularly in Burundi and the eastern Congo . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burundi", "context": {"start": 1418, "end": 1419, "input": "tokens", "text": "building issues , particularly in Burundi and the eastern Congo . "}}, {"origin": {"segment": "content_strict", "context": {"start": 1422, "end": 1423, "input": "tokens", "text": "in Burundi and the eastern Congo . Early political consultations with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Congo", "context": {"start": 1422, "end": 1423, "input": "tokens", "text": "in Burundi and the eastern Congo . Early political consultations with "}}, {"origin": {"segment": "content_strict", "context": {"start": 1461, "end": 1462, "input": "tokens", "text": "of State John Kerry to Rwanda , Burundi , the Democratic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Rwanda", "context": {"start": 1461, "end": 1462, "input": "tokens", "text": "of State John Kerry to Rwanda , Burundi , the Democratic "}}, {"origin": {"segment": "content_strict", "context": {"start": 1463, "end": 1464, "input": "tokens", "text": "John Kerry to Rwanda , Burundi , the Democratic Republic of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burundi", "context": {"start": 1463, "end": 1464, "input": "tokens", "text": "John Kerry to Rwanda , Burundi , the Democratic Republic of "}}, {"origin": {"segment": "content_strict", "context": {"start": 1474, "end": 1475, "input": "tokens", "text": "Congo ( DRC ) , Uganda and the Republic of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Uganda", "context": {"start": 1474, "end": 1475, "input": "tokens", "text": "Congo ( DRC ) , Uganda and the Republic of the "}}, {"origin": {"segment": "content_strict", "context": {"start": 1476, "end": 1480, "input": "tokens", "text": "DRC ) , Uganda and the Republic of the Congo : \n The Great "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "the Republic of the", "context": {"start": 1476, "end": 1480, "input": "tokens", "text": "DRC ) , Uganda and the Republic of the Congo : \n The Great "}}, {"origin": {"segment": "content_strict", "context": {"start": 1480, "end": 1481, "input": "tokens", "text": "and the Republic of the Congo : \n The Great Lakes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Congo", "context": {"start": 1480, "end": 1481, "input": "tokens", "text": "and the Republic of the Congo : \n The Great Lakes "}}, {"origin": {"segment": "content_strict", "context": {"start": 1500, "end": 1501, "input": "tokens", "text": "volatile and unstable regions in Africa , with daily political and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 1500, "end": 1501, "input": "tokens", "text": "volatile and unstable regions in Africa , with daily political and "}}, {"origin": {"segment": "content_strict", "context": {"start": 1509, "end": 1510, "input": "tokens", "text": "political and ethnic violence in Burundi , and with the leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burundi", "context": {"start": 1509, "end": 1510, "input": "tokens", "text": "political and ethnic violence in Burundi , and with the leaders "}}, {"origin": {"segment": "content_strict", "context": {"start": 1516, "end": 1517, "input": "tokens", "text": "and with the leaders of Rwanda , the DRC and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Rwanda", "context": {"start": 1516, "end": 1517, "input": "tokens", "text": "and with the leaders of Rwanda , the DRC and the "}}, {"origin": {"segment": "content_strict", "context": {"start": 1522, "end": 1523, "input": "tokens", "text": ", the DRC and the Congo threatening to extend themselves in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Congo", "context": {"start": 1522, "end": 1523, "input": "tokens", "text": ", the DRC and the Congo threatening to extend themselves in "}}, {"origin": {"segment": "content_strict", "context": {"start": 1571, "end": 1572, "input": "tokens", "text": "we are already seeing in Burundi . High level engagement with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burundi", "context": {"start": 1571, "end": 1572, "input": "tokens", "text": "we are already seeing in Burundi . High level engagement with "}}, {"origin": {"segment": "content_strict", "context": {"start": 1596, "end": 1597, "input": "tokens", "text": "Kerry to the DRC , Uganda , Rwanda and Burundi would "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Uganda", "context": {"start": 1596, "end": 1597, "input": "tokens", "text": "Kerry to the DRC , Uganda , Rwanda and Burundi would "}}, {"origin": {"segment": "content_strict", "context": {"start": 1598, "end": 1599, "input": "tokens", "text": "the DRC , Uganda , Rwanda and Burundi would be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Rwanda", "context": {"start": 1598, "end": 1599, "input": "tokens", "text": "the DRC , Uganda , Rwanda and Burundi would be a "}}, {"origin": {"segment": "content_strict", "context": {"start": 1600, "end": 1601, "input": "tokens", "text": ", Uganda , Rwanda and Burundi would be a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Burundi", "context": {"start": 1600, "end": 1601, "input": "tokens", "text": ", Uganda , Rwanda and Burundi would be a strong signal "}}, {"origin": {"segment": "content_strict", "context": {"start": 1607, "end": 1608, "input": "tokens", "text": "be a strong signal of Washington ' s deep concern and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1607, "end": 1608, "input": "tokens", "text": "be a strong signal of Washington ' s deep concern and "}}, {"origin": {"segment": "content_strict", "context": {"start": 1652, "end": 1653, "input": "tokens", "text": "S . consulate in northern Nigeria and a full embassy in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 1652, "end": 1653, "input": "tokens", "text": "S . consulate in northern Nigeria and a full embassy in "}}, {"origin": {"segment": "content_strict", "context": {"start": 1658, "end": 1659, "input": "tokens", "text": "and a full embassy in Mogadishu : \n The establishment of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Mogadishu", "context": {"start": 1658, "end": 1659, "input": "tokens", "text": "and a full embassy in Mogadishu : \n The establishment of "}}, {"origin": {"segment": "content_strict", "context": {"start": 1668, "end": 1669, "input": "tokens", "text": "of a consulate in northern Nigeria is long overdue . More "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 1668, "end": 1669, "input": "tokens", "text": "of a consulate in northern Nigeria is long overdue . More "}}, {"origin": {"segment": "content_strict", "context": {"start": 1677, "end": 1678, "input": "tokens", "text": ". More than half of Nigeria ' s 180 million people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 1677, "end": 1678, "input": "tokens", "text": ". More than half of Nigeria ' s 180 million people "}}, {"origin": {"segment": "content_strict", "context": {"start": 1756, "end": 1757, "input": "tokens", "text": "in the region and help Nigeria to deal with the economic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 1756, "end": 1757, "input": "tokens", "text": "in the region and help Nigeria to deal with the economic "}}, {"origin": {"segment": "content_strict", "context": {"start": 1774, "end": 1775, "input": "tokens", "text": "there . A consulate in Kaduna , which once had one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Kaduna", "context": {"start": 1774, "end": 1775, "input": "tokens", "text": "there . A consulate in Kaduna , which once had one "}}, {"origin": {"segment": "content_strict", "context": {"start": 1793, "end": 1794, "input": "tokens", "text": "to the Muslim community that Washington genuinely cares about the people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1793, "end": 1794, "input": "tokens", "text": "to the Muslim community that Washington genuinely cares about the people "}}, {"origin": {"segment": "content_strict", "context": {"start": 1814, "end": 1815, "input": "tokens", "text": "of a failed state , Somalia has made significant progress over "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Somalia", "context": {"start": 1814, "end": 1815, "input": "tokens", "text": "of a failed state , Somalia has made significant progress over "}}, {"origin": {"segment": "content_strict", "context": {"start": 1847, "end": 1848, "input": "tokens", "text": "with the Somali government in Mogadishu in January 2013 . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Mogadishu", "context": {"start": 1847, "end": 1848, "input": "tokens", "text": "with the Somali government in Mogadishu in January 2013 . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 1869, "end": 1870, "input": "tokens", "text": "step . He should reaffirm Washington ' s commitment to Somalia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1869, "end": 1870, "input": "tokens", "text": "step . He should reaffirm Washington ' s commitment to Somalia "}}, {"origin": {"segment": "content_strict", "context": {"start": 1874, "end": 1875, "input": "tokens", "text": "Washington ' s commitment to Somalia and recognize the country ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Somalia", "context": {"start": 1874, "end": 1875, "input": "tokens", "text": "Washington ' s commitment to Somalia and recognize the country ' "}}, {"origin": {"segment": "content_strict", "context": {"start": 1901, "end": 1902, "input": "tokens", "text": "diplomatic embassy compound in downtown Mogadishu . \n Elevate U . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Mogadishu", "context": {"start": 1901, "end": 1902, "input": "tokens", "text": "diplomatic embassy compound in downtown Mogadishu . \n Elevate U . "}}, {"origin": {"segment": "content_strict", "context": {"start": 1912, "end": 1913, "input": "tokens", "text": "S . diplomatic relations with Sudan : \n Relations between Washington "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Sudan", "context": {"start": 1912, "end": 1913, "input": "tokens", "text": "S . diplomatic relations with Sudan : \n Relations between Washington "}}, {"origin": {"segment": "content_strict", "context": {"start": 1917, "end": 1918, "input": "tokens", "text": "Sudan : \n Relations between Washington and Khartoum have been prickly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 1917, "end": 1918, "input": "tokens", "text": "Sudan : \n Relations between Washington and Khartoum have been prickly "}}, {"origin": {"segment": "content_strict", "context": {"start": 1919, "end": 1920, "input": "tokens", "text": "\n Relations between Washington and Khartoum have been prickly and frequently "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Khartoum", "context": {"start": 1919, "end": 1920, "input": "tokens", "text": "\n Relations between Washington and Khartoum have been prickly and frequently "}}, {"origin": {"segment": "content_strict", "context": {"start": 1948, "end": 1949, "input": "tokens", "text": "Senate - approved ambassador in Sudan since 1997 . \n The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Sudan", "context": {"start": 1948, "end": 1949, "input": "tokens", "text": "Senate - approved ambassador in Sudan since 1997 . \n The "}}, {"origin": {"segment": "content_strict", "context": {"start": 1954, "end": 1955, "input": "tokens", "text": "since 1997 . \n The Khartoum government has not been a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Khartoum", "context": {"start": 1954, "end": 1955, "input": "tokens", "text": "since 1997 . \n The Khartoum government has not been a "}}, {"origin": {"segment": "content_strict", "context": {"start": 1967, "end": 1968, "input": "tokens", "text": "actor . ( Nor have Cuba , Myanmar or Iran . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Cuba", "context": {"start": 1967, "end": 1968, "input": "tokens", "text": "actor . ( Nor have Cuba , Myanmar or Iran . "}}, {"origin": {"segment": "content_strict", "context": {"start": 1971, "end": 1972, "input": "tokens", "text": "have Cuba , Myanmar or Iran . ) The regime in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Iran", "context": {"start": 1971, "end": 1972, "input": "tokens", "text": "have Cuba , Myanmar or Iran . ) The regime in "}}, {"origin": {"segment": "content_strict", "context": {"start": 1977, "end": 1978, "input": "tokens", "text": ". ) The regime in Sudan has carried out mass atrocities "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Sudan", "context": {"start": 1977, "end": 1978, "input": "tokens", "text": ". ) The regime in Sudan has carried out mass atrocities "}}, {"origin": {"segment": "content_strict", "context": {"start": 1984, "end": 1985, "input": "tokens", "text": "carried out mass atrocities in Darfur , prevented UN organizations from "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Darfur", "context": {"start": 1984, "end": 1985, "input": "tokens", "text": "carried out mass atrocities in Darfur , prevented UN organizations from "}}, {"origin": {"segment": "content_strict", "context": {"start": 2022, "end": 2023, "input": "tokens", "text": "- imposed comprehensive sanctions on Khartoum have not isolated the country "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Khartoum", "context": {"start": 2022, "end": 2023, "input": "tokens", "text": "- imposed comprehensive sanctions on Khartoum have not isolated the country "}}, {"origin": {"segment": "content_strict", "context": {"start": 2034, "end": 2035, "input": "tokens", "text": "weakened its government . The U . S . should review "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "U", "context": {"start": 2034, "end": 2035, "input": "tokens", "text": "weakened its government . The U . S . should review "}}, {"origin": {"segment": "content_strict", "context": {"start": 2044, "end": 2045, "input": "tokens", "text": "review its current policies toward Khartoum , and consider elevating its "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Khartoum", "context": {"start": 2044, "end": 2045, "input": "tokens", "text": "review its current policies toward Khartoum , and consider elevating its "}}, {"origin": {"segment": "content_strict", "context": {"start": 2060, "end": 2061, "input": "tokens", "text": "status in order to expand America ' s dialogue and probe "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "America", "context": {"start": 2060, "end": 2061, "input": "tokens", "text": "status in order to expand America ' s dialogue and probe "}}, {"origin": {"segment": "content_strict", "context": {"start": 2179, "end": 2180, "input": "tokens", "text": "a - kind gathering in Washington . A number of new "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Washington", "context": {"start": 2179, "end": 2180, "input": "tokens", "text": "a - kind gathering in Washington . A number of new "}}, {"origin": {"segment": "content_strict", "context": {"start": 2473, "end": 2475, "input": "tokens", "text": "Senior Advisor at the \n United States Institute of Peace . \n "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "United States", "context": {"start": 2473, "end": 2475, "input": "tokens", "text": "Senior Advisor at the \n United States Institute of Peace . \n "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 49, "end": 50, "input": "tokens", "text": "on Africa than any previous American president , but with one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "American", "context": {"start": 49, "end": 50, "input": "tokens", "text": "on Africa than any previous American president , but with one "}}, {"origin": {"segment": "content_strict", "context": {"start": 305, "end": 306, "input": "tokens", "text": "that will bring 500 young African entrepreneurs , professionals and community "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "African", "context": {"start": 305, "end": 306, "input": "tokens", "text": "that will bring 500 young African entrepreneurs , professionals and community "}}, {"origin": {"segment": "content_strict", "context": {"start": 455, "end": 456, "input": "tokens", "text": "million people , its largest Muslim country , and its largest "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Muslim", "context": {"start": 455, "end": 456, "input": "tokens", "text": "million people , its largest Muslim country , and its largest "}}, {"origin": {"segment": "content_strict", "context": {"start": 674, "end": 675, "input": "tokens", "text": "With a growing number of African leaders attempting to extend their "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "African", "context": {"start": 674, "end": 675, "input": "tokens", "text": "With a growing number of African leaders attempting to extend their "}}, {"origin": {"segment": "content_strict", "context": {"start": 1158, "end": 1159, "input": "tokens", "text": "should be allocated to strengthen African judiciaries and legislatures , to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "African", "context": {"start": 1158, "end": 1159, "input": "tokens", "text": "should be allocated to strengthen African judiciaries and legislatures , to "}}, {"origin": {"segment": "content_strict", "context": {"start": 1409, "end": 1411, "input": "tokens", "text": "critical role to play in East African peace - building issues , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "East African", "context": {"start": 1409, "end": 1411, "input": "tokens", "text": "critical role to play in East African peace - building issues , "}}, {"origin": {"segment": "content_strict", "context": {"start": 1706, "end": 1707, "input": "tokens", "text": "It is also the largest Muslim region in Africa and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Muslim", "context": {"start": 1706, "end": 1707, "input": "tokens", "text": "It is also the largest Muslim region in Africa and the "}}, {"origin": {"segment": "content_strict", "context": {"start": 1713, "end": 1714, "input": "tokens", "text": "in Africa and the largest Muslim region in the world where "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Muslim", "context": {"start": 1713, "end": 1714, "input": "tokens", "text": "in Africa and the largest Muslim region in the world where "}}, {"origin": {"segment": "content_strict", "context": {"start": 1790, "end": 1791, "input": "tokens", "text": "a strong signal to the Muslim community that Washington genuinely cares "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Muslim", "context": {"start": 1790, "end": 1791, "input": "tokens", "text": "a strong signal to the Muslim community that Washington genuinely cares "}}, {"origin": {"segment": "content_strict", "context": {"start": 1844, "end": 1845, "input": "tokens", "text": "formal diplomatic relations with the Somali government in Mogadishu in January "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Somali", "context": {"start": 1844, "end": 1845, "input": "tokens", "text": "formal diplomatic relations with the Somali government in Mogadishu in January "}}, {"origin": {"segment": "content_strict", "context": {"start": 2201, "end": 2202, "input": "tokens", "text": "summit brought dozens of senior American business leaders into direct contact "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "American", "context": {"start": 2201, "end": 2202, "input": "tokens", "text": "summit brought dozens of senior American business leaders into direct contact "}}, {"origin": {"segment": "content_strict", "context": {"start": 2216, "end": 2217, "input": "tokens", "text": "very first time - with African heads of state and prominent "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "African", "context": {"start": 2216, "end": 2217, "input": "tokens", "text": "very first time - with African heads of state and prominent "}}, {"origin": {"segment": "content_strict", "context": {"start": 2332, "end": 2333, "input": "tokens", "text": "continuing efforts to promote greater American trade and commerce with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "American", "context": {"start": 2332, "end": 2333, "input": "tokens", "text": "continuing efforts to promote greater American trade and commerce with Africa "}}, {"origin": {"segment": "content_strict", "context": {"start": 2432, "end": 2433, "input": "tokens", "text": "be building a more robust African agenda for his last year "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "African", "context": {"start": 2432, "end": 2433, "input": "tokens", "text": "be building a more robust African agenda for his last year "}}]}}}}, "title": {"text": " Africa: What Obama Still Owes Africa (a Visit to Nigeria for One Thing) - allAfrica.com ", "simple_tokens": ["africa", ":", "what", "obama", "still", "owes", "africa", "(", "a", "visit", "to", "nigeria", "for", "one", "thing", ")", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Africa", ":", "What", "Obama", "Still", "Owes", "Africa", "(", "a", "Visit", "to", "Nigeria", "for", "One", "Thing", ")", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 11, "end": 12, "input": "tokens", "text": "Africa ( a Visit to Nigeria for One Thing ) - "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Nigeria", "context": {"start": 11, "end": 12, "input": "tokens", "text": "Africa ( a Visit to Nigeria for One Thing ) - "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 5, "end": 7, "input": "tokens", "text": "Africa : What Obama Still Owes Africa ( a Visit to Nigeria "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Owes Africa", "context": {"start": 5, "end": 7, "input": "tokens", "text": "Africa : What Obama Still Owes Africa ( a Visit to Nigeria "}}, {"origin": {"segment": "title", "context": {"start": 13, "end": 18, "input": "tokens", "text": "a Visit to Nigeria for One Thing ) - allAfrica . com "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "One Thing ) - allAfrica", "context": {"start": 13, "end": 18, "input": "tokens", "text": "a Visit to Nigeria for One Thing ) - allAfrica . com "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Africa : What Obama Still Owes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "value": "Africa", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Africa : What Obama Still Owes "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:14.496447", "@etk_process_time": 0.7231631278991699, "@etk_start_time": "2017-11-15T01:34:13.773284"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Africa: What Obama Still Owes Africa (a Visit to Nigeria for One Thing) - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 4 January 2016\n
\n \n \n

\n Africa: What Obama Still Owes Africa (a Visit to Nigeria for One Thing)\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n Photo:\n \n AllAfrica\n \n \n
\n
\n Former U.S. Assistant Secretary of State Johnnie Carson\n
\n
\n \n guest column\n \n \n By Johnnie Carson\n \n

\n Washington, DC —\n \n After seven years in office, President Barack Obama has already engaged more broadly on Africa than any previous American president, but with one year remaining in the White House, there are still a few things he should do before he leaves, writes\n \n Johnnie Carson\n \n , the United States' top policy-maker on Africa in the first Obama administration.\n \n

\n

\n President Obama has significantly elevated and transformed America's engagement with Africa, traveling widely across the continent, championing the renewal of several old programs and launching a series of highly focused new initiatives that could help speed-up Africa's economic development.\n

\n

\n He has been particularly active in promoting economic and development issues.\n

\n

\n He fought successfully for the renewal and extension of the African Growth and Opportunity Act (AGOA), America's most important trade legislation with Africa; he hosted the first U.S.-Africa Leadership Summit, attended by 37 heads of state; and he has established several important new economic programs, including \"Power Africa\" - to expand significantly electrical access across the continent; \"Feed the Future\" - to increase household food production and to generate a green revolution throughout Africa, and \"Trade Africa\" - to expand substantially trade between Africa and the United States.\n

\n

\n Recognizing the growing role of the continent's next generation of young leaders, President Obama established YALI - the Young African Leaders Initiative, a program that will bring 500 young African entrepreneurs, professionals and community organizers to the U.S. each year for the next several years for five weeks of leadership, organization and management training.\n

\n

\n \n But what next?\n \n

\n

\n Despite his rather impressive list of accomplishments, here are ten things the president should do before he leaves office in January 2017:\n

\n

\n \n \n Visit Nigeria:\n \n \n President Obama has traveled to Africa five times during his presidency - but he has not visited Nigeria, the continent's economic, political, communications and petroleum giant, and its most important state. It is the continent's largest economy - almost twice the size of South Africa's and a third larger than that of Egypt.\n

\n

\n It is also the continent's most populous state, with 180 million people, its largest Muslim country, and its largest democracy.\n

\n

\n The president has visited every major country on the continent except Nigeria, and it would be a mistake for him to leave the White House without a stop in Lagos or Abuja.\n

\n

\n Some have suggested that security may be a concern because of Boko Haram, but if the president can travel safely to Nairobi, where al Shabaab has carried out high profile attacks in the center of the city, he should be able to travel safely to Abuja or Lagos. He is bound to make one more trip to Europe, and a stop in Nigeria - similar to his 2009 visit to Ghana - would not be a major diversion.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n \n \n Co-host a regional summit on democracy in west Africa:\n \n \n Strengthening democracy institutions, promoting good governance and supporting free and fair elections has been a major priority for the Obama administration in Africa.\n

\n

\n During his first official visit to the continent as president in July 2009, President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy and good governance and the need to create \"more strong institutions, not more strong men.\" With a growing number of African leaders attempting to extend their terms of office, democracy remains fragile across the continent. The president could give democracy in Africa a boost and reaffirm America's strong commitment to Africa's political progress by hosting a conference in West Africa with the democratically-elected leaders of Benin, Burkina Faso, Cape Verde, Liberia, Niger, Nigeria, Mali, Mauritania, Senegal, Sierra Leone and Togo.\n

\n

\n \n \n Support Nigeria's permanent membership in the G20:\n \n \n President Obama has said that he wants to ensure that Africa has a place at the table to participate in the deliberations concerning major global political and economic issues. One way to accomplish that is to expand or reorganize the G20 group of nations to include Nigeria as a permanent member of this important global organization.\n

\n

\n Nigeria is already more important than several of the current G20 members, notably Argentina and South Africa, and over the next two decades it will become one of the world's mega states, eclipsing several other G20 members in the size of its economy, population and regional influence. It would also be one of the G20's largest democracies. The administration should make the inclusion of Nigeria a priority over the next 12 months.\n

\n

\n \n \n Press for the passage of the Electrify Africa legislation:\n \n \n Power Africa is one of President Obama's most important signature initiatives. In the world's most energy deficient and starved continent, it is intended to increase Africa's power output by 30,000 megawatts over the next decade or two.\n

\n

\n But like a number of recent White House initiatives, Power Africa is not backed by any legislative mandate and could be easily brushed aside after the Obama administration leaves office. The program enjoys bi-partisan support in the Congress and the administration needs to work with congressional leaders to prioritize the passage of the Electrify Africa legislation. At the same time, the administration needs to create a senior level \"Power Africa czar\" to manage the program and consider moving interagency responsibility for oversight from USAID to a cabinet level department.\n

\n

\n \n \n Instruct USAID to establish a permanent democracy fund:\n \n \n If democracy promotion is an important priority, it should be funded adequately and on a long-term basis. Today that is not the case. Funding for democracy has declined sharply during Obama's second term despite the president's recent speeches in Nairobi and Addis Ababa, and at the 70th session of the United Nations General Assembly in New York.\n

\n

\n Dedicated and hard-to-reprogram funds should be allocated to strengthen African judiciaries and legislatures, to promote civil society groups and the media, to assist women's organizations and youth groups and to support domestic and international election monitoring. Funds should also be made available to assist local organizations to undertake parallel vote counts, to aid local election commissions and to prevent pre- and post-election violence.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n

\n \n \n Invite Tanzania's newly elected President John Magufuli to the White House:\n \n \n Tanzania is the most populous state and the largest democracy in East Africa. It is also one of the largest recipients of U.S. development assistance and a participant in all of Washington's major economic initiatives.\n

\n

\n In late October, Tanzania held presidential and parliamentary elections.The elections on the mainland went well, but those on the island of Zanzibar were disputed. President John Pombe Magufuli, a reform-minded academic-turned-politician, was elected without dispute, making him Tanzania's fifth democratically-elected president in a row. Although the Zanzibar election remains unresolved, it is important to reach out to Tanzania's new president early in his tenure to continue to foster the strong relationship between Dar es Salaam and Washington.\n

\n

\n This is particularly important since President Magufuli does not have any major ties with the United States.Tanzania also has a critical role to play in East African peace-building issues, particularly in Burundi and the eastern Congo. Early political consultations with President Magufuli and his new foreign minister, Dr. Augustine Mahiga, could prove valuable in promoting stability in the Great Lakes region.\n

\n

\n \n \n Send Secretary of State John Kerry to Rwanda, Burundi, the Democratic Republic of Congo (DRC), Uganda and the Republic of the Congo:\n \n \n The Great Lakes Region of Central Africa is one of the most volatile and unstable regions in Africa, with daily political and ethnic violence in Burundi, and with the leaders of Rwanda, the DRC and the Congo threatening to extend themselves in office in violation of their constitutions.\n

\n

\n Although time is running out, there is still an opportunity to prevent further democratic backsliding and the serious instability and violence that will almost certainly be unleashed - as we are already seeing in Burundi. High level engagement with the leaders in the region is required.\n

\n

\n An extended visit by Secretary Kerry to the DRC, Uganda, Rwanda and Burundi would be a strong signal of Washington's deep concern and interest in the region's negative political and security trajectory. Without serious engagement with the leaders on the ground, there will be no meaningful progress.\n

\n

\n \n \n Open a U.S. consulate in northern Nigeria and a full embassy in Mogadishu:\n \n \n The establishment of a consulate in northern Nigeria is long overdue. More than half of Nigeria's 180 million people live in the northern part of the country, an area of serious political and security concern. It is also the largest Muslim region in Africa and the largest Muslim region in the world where there is no full-time U.S. diplomatic presence.\n

\n

\n A U.S. diplomatic mission would advance long-term political, economic and security interests in the region and help Nigeria to deal with the economic, social and security challenges it faces there. A consulate in Kaduna, which once had one, or Kano would convey a strong signal to the Muslim community that Washington genuinely cares about the people in the region.\n

\n

\n Once the global poster child of a failed state, Somalia has made significant progress over the past seven years. In recognition of the progress, the U.S. re-established formal diplomatic relations with the Somali government in Mogadishu in January 2013.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n Before he leaves office, President Obama should take one more step. He should reaffirm Washington's commitment to Somalia and recognize the country's continuing progress by appointing a Senate-approved ambassador and opening a small, secure diplomatic embassy compound in downtown Mogadishu.\n

\n

\n \n \n Elevate U.S. diplomatic relations with Sudan:\n \n \n Relations between Washington and Khartoum have been prickly and frequently difficult for over two decades and the U.S. has not had a fully accredited, Senate-approved ambassador in Sudan since 1997.\n

\n

\n The Khartoum government has not been a good international actor. (Nor have Cuba, Myanmar or Iran.) The regime in Sudan has carried out mass atrocities in Darfur, prevented UN organizations from delivering food aid and humanitarian assistance to those in need and meddled in the affairs of several of its neighbors.\n

\n

\n But U.S.-imposed comprehensive sanctions on Khartoum have not isolated the country nor weakened its government. The U.S. should review its current policies toward Khartoum, and consider elevating its diplomatic relationship to full ambassadorial status in order to expand America's dialogue and probe for new openings to resolve some of the country's domestic and regional issues. The U.S. can do this while maintaining its sanctions regime on the government and its demands that President Omar al-Bashir address the serious human rights charges against him.\n

\n

\n \n \n Provide a status report on the results of the U.S.-Africa Leadership Summit:\n \n \n The U.S. Africa Leadership Summit has been one of the high points in the Obama administration's engagements in Africa.\n

\n

\n Leaders from 50 different countries participated in this first-of-a-kind gathering in Washington. A number of new programs were announced and a major business conference associated with the summit brought dozens of senior American business leaders into direct contact - many for the very first time - with African heads of state and prominent business leaders from the continent.\n

\n

\n The administration has never released a comprehensive report on the summit or a one-year progress report on the implementation of summit agreements. The issuance of some type of status report would be a useful vehicle for identifying summit objectives and initiatives as well as tracking the progress of the administration's efforts. The administration should do everything it can to sustain the goodwill and policy initiatives that emerged from the summit to help ensure that it does not become a one-off event.\n

\n

\n The administration should be applauded for its continuing efforts to promote greater American trade and commerce with Africa. The president has already announced that he plans to host another U.S.-Africa Business Summit similar to the day-long event his administration hosted during the 2014 Leadership Summit. The Business Summit is important, but it should not be the only thing on President Obama's Africa agenda for 2016. He has time to do more, and he should. Twelve months is a long time in the life of an administration and his foreign policy team should be building a more robust African agenda for his last year in office.\n

\n

\n \n Ambassador Carson was the U.S.\n \n Assistant Secretary of State for African Affairs\n \n from 2009 to 2012. He is currently a Senior Advisor at the\n \n United States Institute of Peace.\n \n \n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 allAfrica.com. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C", "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"} -{"url": "http://www.ce_news_article.org/2016/01/04/201601040025.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 515, "end": 516, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 10, "end": 12, "input": "tokens", "text": "athletes from the High Altitude Athletics Club of Jos , Plateau State "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Athletics Club"}, {"source": {"segment": "content_relaxed", "context": {"start": 29, "end": 31, "input": "tokens", "text": "athletes from the High Altitude Athletics Club of Jos , Plateau State "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Athletics Club"}], "key": "athletics club", "value": "Athletics Club"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 71, "end": 74, "input": "tokens", "text": "runners in Nigeria . \n Coach Steve Nuhu , owner of the High "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Coach Steve Nuhu"}, {"source": {"segment": "content_relaxed", "context": {"start": 90, "end": 93, "input": "tokens", "text": "runners in Nigeria . \n Coach Steve Nuhu , owner of the High "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Coach Steve Nuhu"}], "key": "coach steve nuhu", "value": "Coach Steve Nuhu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 213, "end": 215, "input": "tokens", "text": "6 race in Lagos , Coach Nuhu is optimistic that his athletes "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Coach Nuhu"}, {"source": {"segment": "content_relaxed", "context": {"start": 232, "end": 234, "input": "tokens", "text": "6 race in Lagos , Coach Nuhu is optimistic that his athletes "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Coach Nuhu"}], "key": "coach nuhu", "value": "Coach Nuhu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 347, "end": 348, "input": "tokens", "text": "around the globe \" said Nuhu . \n "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nuhu"}, {"source": {"segment": "content_relaxed", "context": {"start": 366, "end": 367, "input": "tokens", "text": "around the globe \" said Nuhu . \n Copyright \n 2016 "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nuhu"}], "key": "nuhu", "value": "Nuhu"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 2, "end": 6, "input": "tokens", "text": "Nigeria : Lagos Marathon - 25 Elite Runners From Jos Sign "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos Marathon - 25"}], "key": "lagos marathon - 25", "value": "Lagos Marathon - 25"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "method": "rearrange_description"}], "key": "description", "value": " \n Twenty-five elite athletes from the High Altitude Athletics Club of Jos, Plateau State, and some fun runners will be in Lagos to participate in the February 6, 2016, Access Bank Lagos City Marathon. \n Plateau State and adjoining states like Bauchi, Kaduna, Gombe and others have the highest number of long distance road races and marathon runners in Nigeria. \n Coach Steve Nuhu, owner of the High Altitude Athletics Club, said the return of the Lagos City Marathon is one of the best things to happen to Nigeria sports in recent times, \n \"We are talking about youth empowerment, unemployment and other vices, what better way to engage our youth than having many marathons and road races in Nigeria. \n \"I hope and pray that many other states, especially states in the Northern part of the country with a very high percentage of distance runners who train year in, year out but are not involved in competitions because of dearth or even absence of competitions will take a cue from Lagos and organize more road races, half and full marathons.\" \n For the February 6 race in Lagos, Coach Nuhu is optimistic that his athletes will not only win the national title but will also give the elite athletes from other parts of the world a good fight for the ultimate prize, \n \"For us, the February 6 race is a celebration of our sports. We are coming to Lagos with 25 elite marathoners and many fun runners. Our target is not just the prizes for Nigerians, but also the ultimate prize. The reason why our athletes are not running fantastic time is because we don't have competitions regularly like the Kenyans. \n \"The moment we start and make money on the road, we shall compete more and rival East Africans for the best prizes around the globe\" said Nuhu. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 485, "end": 486, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Lagos Marathon - 25 Elite Runners From Jos Sign Up for Race - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 35, "end": 37, "input": "tokens", "text": "February 6 , 2016 , Access Bank Lagos City Marathon . \n "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Access Bank"}, {"source": {"segment": "content_relaxed", "context": {"start": 54, "end": 56, "input": "tokens", "text": "February 6 , 2016 , Access Bank Lagos City Marathon . \n "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Access Bank"}], "key": "access bank", "value": "Access Bank"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 77, "end": 82, "input": "tokens", "text": "Steve Nuhu , owner of the High Altitude Athletics Club , said the return of "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the High Altitude Athletics Club"}, {"source": {"segment": "content_relaxed", "context": {"start": 96, "end": 101, "input": "tokens", "text": "Steve Nuhu , owner of the High Altitude Athletics Club , said the return of "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the High Altitude Athletics Club"}], "key": "the high altitude athletics club", "value": "the High Altitude Athletics Club"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 87, "end": 91, "input": "tokens", "text": ", said the return of the Lagos City Marathon is one of the best "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Lagos City Marathon"}, {"source": {"segment": "content_relaxed", "context": {"start": 106, "end": 110, "input": "tokens", "text": ", said the return of the Lagos City Marathon is one of the best "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Lagos City Marathon"}], "key": "the lagos city marathon", "value": "the Lagos City Marathon"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 372, "end": 374, "input": "tokens", "text": ". \n Copyright \n 2016 Premium Times . All rights reserved . "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}], "key": "premium times", "value": "Premium Times"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 379, "end": 380, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 381, "end": 384, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 15, "end": 17, "input": "tokens", "text": "Athletics Club of Jos , Plateau State , and some fun runners "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Plateau State"}, {"source": {"segment": "content_strict", "context": {"start": 42, "end": 44, "input": "tokens", "text": "Lagos City Marathon . \n Plateau State and adjoining states like Bauchi "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Plateau State"}, {"source": {"segment": "content_relaxed", "context": {"start": 34, "end": 36, "input": "tokens", "text": "Athletics Club of Jos , Plateau State , and some fun runners "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Plateau State"}, {"source": {"segment": "content_relaxed", "context": {"start": 61, "end": 63, "input": "tokens", "text": "Lagos City Marathon . \n Plateau State and adjoining states like Bauchi "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Plateau State"}], "key": "plateau state", "value": "Plateau State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 25, "end": 26, "input": "tokens", "text": "fun runners will be in Lagos to participate in the February "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_strict", "context": {"start": 191, "end": 192, "input": "tokens", "text": "will take a cue from Lagos and organize more road races "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_strict", "context": {"start": 211, "end": 212, "input": "tokens", "text": "the February 6 race in Lagos , Coach Nuhu is optimistic "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_strict", "context": {"start": 268, "end": 269, "input": "tokens", "text": ". We are coming to Lagos with 25 elite marathoners and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 44, "end": 45, "input": "tokens", "text": "fun runners will be in Lagos to participate in the February "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 210, "end": 211, "input": "tokens", "text": "will take a cue from Lagos and organize more road races "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 230, "end": 231, "input": "tokens", "text": "the February 6 race in Lagos , Coach Nuhu is optimistic "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 287, "end": 288, "input": "tokens", "text": ". We are coming to Lagos with 25 elite marathoners and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}], "key": "lagos", "value": "Lagos"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 37, "end": 40, "input": "tokens", "text": ", 2016 , Access Bank Lagos City Marathon . \n Plateau State and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos City Marathon"}, {"source": {"segment": "content_relaxed", "context": {"start": 56, "end": 59, "input": "tokens", "text": ", 2016 , Access Bank Lagos City Marathon . \n Plateau State and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos City Marathon"}], "key": "lagos city marathon", "value": "Lagos City Marathon"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 48, "end": 49, "input": "tokens", "text": "State and adjoining states like Bauchi , Kaduna , Gombe and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bauchi"}, {"source": {"segment": "content_relaxed", "context": {"start": 67, "end": 68, "input": "tokens", "text": "State and adjoining states like Bauchi , Kaduna , Gombe and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bauchi"}], "key": "bauchi", "value": "Bauchi"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 50, "end": 51, "input": "tokens", "text": "adjoining states like Bauchi , Kaduna , Gombe and others have "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kaduna"}, {"source": {"segment": "content_relaxed", "context": {"start": 69, "end": 70, "input": "tokens", "text": "adjoining states like Bauchi , Kaduna , Gombe and others have "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kaduna"}], "key": "kaduna", "value": "Kaduna"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 52, "end": 53, "input": "tokens", "text": "like Bauchi , Kaduna , Gombe and others have the highest "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gombe"}, {"source": {"segment": "content_relaxed", "context": {"start": 71, "end": 72, "input": "tokens", "text": "like Bauchi , Kaduna , Gombe and others have the highest "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gombe"}], "key": "gombe", "value": "Gombe"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 68, "end": 69, "input": "tokens", "text": "races and marathon runners in Nigeria . \n Coach Steve Nuhu "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 100, "end": 101, "input": "tokens", "text": "best things to happen to Nigeria sports in recent times , "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 135, "end": 136, "input": "tokens", "text": "marathons and road races in Nigeria . \n \" I hope "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 3 January 2016 \n Nigeria : Lagos Marathon - 25 "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 87, "end": 88, "input": "tokens", "text": "races and marathon runners in Nigeria . \n Coach Steve Nuhu "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 119, "end": 120, "input": "tokens", "text": "best things to happen to Nigeria sports in recent times , "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 154, "end": 155, "input": "tokens", "text": "marathons and road races in Nigeria . \n \" I hope "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Lagos Marathon - 25 "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 336, "end": 338, "input": "tokens", "text": "shall compete more and rival East Africans for the best prizes around "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East Africans"}, {"source": {"segment": "content_relaxed", "context": {"start": 355, "end": 357, "input": "tokens", "text": "shall compete more and rival East Africans for the best prizes around "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East Africans"}], "key": "east africans", "value": "East Africans"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Lagos Marathon - 25 Elite Runners From "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos Marathon"}], "key": "lagos marathon", "value": "Lagos Marathon"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 286, "end": 287, "input": "tokens", "text": "not just the prizes for Nigerians , but also the ultimate "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigerians"}, {"source": {"segment": "content_relaxed", "context": {"start": 305, "end": 306, "input": "tokens", "text": "not just the prizes for Nigerians , but also the ultimate "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigerians"}], "key": "nigerians", "value": "Nigerians"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 315, "end": 316, "input": "tokens", "text": "have competitions regularly like the Kenyans . \n \" The moment "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kenyans"}, {"source": {"segment": "content_relaxed", "context": {"start": 334, "end": 335, "input": "tokens", "text": "have competitions regularly like the Kenyans . \n \" The moment "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kenyans"}], "key": "kenyans", "value": "Kenyans"}]}, "content_extraction": {"content_relaxed": {"text": " \n 3 January 2016 \n Nigeria: Lagos Marathon - 25 Elite Runners From Jos Sign Up for Race \n Twenty-five elite athletes from the High Altitude Athletics Club of Jos, Plateau State, and some fun runners will be in Lagos to participate in the February 6, 2016, Access Bank Lagos City Marathon. \n Plateau State and adjoining states like Bauchi, Kaduna, Gombe and others have the highest number of long distance road races and marathon runners in Nigeria. \n Coach Steve Nuhu, owner of the High Altitude Athletics Club, said the return of the Lagos City Marathon is one of the best things to happen to Nigeria sports in recent times, \n \"We are talking about youth empowerment, unemployment and other vices, what better way to engage our youth than having many marathons and road races in Nigeria. \n \"I hope and pray that many other states, especially states in the Northern part of the country with a very high percentage of distance runners who train year in, year out but are not involved in competitions because of dearth or even absence of competitions will take a cue from Lagos and organize more road races, half and full marathons.\" \n For the February 6 race in Lagos, Coach Nuhu is optimistic that his athletes will not only win the national title but will also give the elite athletes from other parts of the world a good fight for the ultimate prize, \n \"For us, the February 6 race is a celebration of our sports. We are coming to Lagos with 25 elite marathoners and many fun runners. Our target is not just the prizes for Nigerians, but also the ultimate prize. The reason why our athletes are not running fantastic time is because we don't have competitions regularly like the Kenyans. \n \"The moment we start and make money on the road, we shall compete more and rival East Africans for the best prizes around the globe\" said Nuhu. \n Copyright \n 2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "3", "january", "2016", "\n", "nigeria", ":", "lagos", "marathon", "-", "25", "elite", "runners", "from", "jos", "sign", "up", "for", "race", "\n", "twenty", "-", "five", "elite", "athletes", "from", "the", "high", "altitude", "athletics", "club", "of", "jos", ",", "plateau", "state", ",", "and", "some", "fun", "runners", "will", "be", "in", "lagos", "to", "participate", "in", "the", "february", "6", ",", "2016", ",", "access", "bank", "lagos", "city", "marathon", ".", "\n", "plateau", "state", "and", "adjoining", "states", "like", "bauchi", ",", "kaduna", ",", "gombe", "and", "others", "have", "the", "highest", "number", "of", "long", "distance", "road", "races", "and", "marathon", "runners", "in", "nigeria", ".", "\n", "coach", "steve", "nuhu", ",", "owner", "of", "the", "high", "altitude", "athletics", "club", ",", "said", "the", "return", "of", "the", "lagos", "city", "marathon", "is", "one", "of", "the", "best", "things", "to", "happen", "to", "nigeria", "sports", "in", "recent", "times", ",", "\n", "\"", "we", "are", "talking", "about", "youth", "empowerment", ",", "unemployment", "and", "other", "vices", ",", "what", "better", "way", "to", "engage", "our", "youth", "than", "having", "many", "marathons", "and", "road", "races", "in", "nigeria", ".", "\n", "\"", "i", "hope", "and", "pray", "that", "many", "other", "states", ",", "especially", "states", "in", "the", "northern", "part", "of", "the", "country", "with", "a", "very", "high", "percentage", "of", "distance", "runners", "who", "train", "year", "in", ",", "year", "out", "but", "are", "not", "involved", "in", "competitions", "because", "of", "dearth", "or", "even", "absence", "of", "competitions", "will", "take", "a", "cue", "from", "lagos", "and", "organize", "more", "road", "races", ",", "half", "and", "full", "marathons", ".", "\"", "\n", "for", "the", "february", "6", "race", "in", "lagos", ",", "coach", "nuhu", "is", "optimistic", "that", "his", "athletes", "will", "not", "only", "win", "the", "national", "title", "but", "will", "also", "give", "the", "elite", "athletes", "from", "other", "parts", "of", "the", "world", "a", "good", "fight", "for", "the", "ultimate", "prize", ",", "\n", "\"", "for", "us", ",", "the", "february", "6", "race", "is", "a", "celebration", "of", "our", "sports", ".", "we", "are", "coming", "to", "lagos", "with", "25", "elite", "marathoners", "and", "many", "fun", "runners", ".", "our", "target", "is", "not", "just", "the", "prizes", "for", "nigerians", ",", "but", "also", "the", "ultimate", "prize", ".", "the", "reason", "why", "our", "athletes", "are", "not", "running", "fantastic", "time", "is", "because", "we", "don", "'", "t", "have", "competitions", "regularly", "like", "the", "kenyans", ".", "\n", "\"", "the", "moment", "we", "start", "and", "make", "money", "on", "the", "road", ",", "we", "shall", "compete", "more", "and", "rival", "east", "africans", "for", "the", "best", "prizes", "around", "the", "globe", "\"", "said", "nuhu", ".", "\n", "copyright", "\n", "2016", "premium", "times", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "3", "January", "2016", "\n", "Nigeria", ":", "Lagos", "Marathon", "-", "25", "Elite", "Runners", "From", "Jos", "Sign", "Up", "for", "Race", "\n", "Twenty", "-", "five", "elite", "athletes", "from", "the", "High", "Altitude", "Athletics", "Club", "of", "Jos", ",", "Plateau", "State", ",", "and", "some", "fun", "runners", "will", "be", "in", "Lagos", "to", "participate", "in", "the", "February", "6", ",", "2016", ",", "Access", "Bank", "Lagos", "City", "Marathon", ".", "\n", "Plateau", "State", "and", "adjoining", "states", "like", "Bauchi", ",", "Kaduna", ",", "Gombe", "and", "others", "have", "the", "highest", "number", "of", "long", "distance", "road", "races", "and", "marathon", "runners", "in", "Nigeria", ".", "\n", "Coach", "Steve", "Nuhu", ",", "owner", "of", "the", "High", "Altitude", "Athletics", "Club", ",", "said", "the", "return", "of", "the", "Lagos", "City", "Marathon", "is", "one", "of", "the", "best", "things", "to", "happen", "to", "Nigeria", "sports", "in", "recent", "times", ",", "\n", "\"", "We", "are", "talking", "about", "youth", "empowerment", ",", "unemployment", "and", "other", "vices", ",", "what", "better", "way", "to", "engage", "our", "youth", "than", "having", "many", "marathons", "and", "road", "races", "in", "Nigeria", ".", "\n", "\"", "I", "hope", "and", "pray", "that", "many", "other", "states", ",", "especially", "states", "in", "the", "Northern", "part", "of", "the", "country", "with", "a", "very", "high", "percentage", "of", "distance", "runners", "who", "train", "year", "in", ",", "year", "out", "but", "are", "not", "involved", "in", "competitions", "because", "of", "dearth", "or", "even", "absence", "of", "competitions", "will", "take", "a", "cue", "from", "Lagos", "and", "organize", "more", "road", "races", ",", "half", "and", "full", "marathons", ".", "\"", "\n", "For", "the", "February", "6", "race", "in", "Lagos", ",", "Coach", "Nuhu", "is", "optimistic", "that", "his", "athletes", "will", "not", "only", "win", "the", "national", "title", "but", "will", "also", "give", "the", "elite", "athletes", "from", "other", "parts", "of", "the", "world", "a", "good", "fight", "for", "the", "ultimate", "prize", ",", "\n", "\"", "For", "us", ",", "the", "February", "6", "race", "is", "a", "celebration", "of", "our", "sports", ".", "We", "are", "coming", "to", "Lagos", "with", "25", "elite", "marathoners", "and", "many", "fun", "runners", ".", "Our", "target", "is", "not", "just", "the", "prizes", "for", "Nigerians", ",", "but", "also", "the", "ultimate", "prize", ".", "The", "reason", "why", "our", "athletes", "are", "not", "running", "fantastic", "time", "is", "because", "we", "don", "'", "t", "have", "competitions", "regularly", "like", "the", "Kenyans", ".", "\n", "\"", "The", "moment", "we", "start", "and", "make", "money", "on", "the", "road", ",", "we", "shall", "compete", "more", "and", "rival", "East", "Africans", "for", "the", "best", "prizes", "around", "the", "globe", "\"", "said", "Nuhu", ".", "\n", "Copyright", "\n", "2016", "Premium", "Times", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 515, "end": 516, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "AllAfrica", "context": {"start": 515, "end": 516, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 29, "end": 31, "input": "tokens", "text": "athletes from the High Altitude Athletics Club of Jos , Plateau State "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Athletics Club", "context": {"start": 29, "end": 31, "input": "tokens", "text": "athletes from the High Altitude Athletics Club of Jos , Plateau State "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 90, "end": 93, "input": "tokens", "text": "runners in Nigeria . \n Coach Steve Nuhu , owner of the High "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Coach Steve Nuhu", "context": {"start": 90, "end": 93, "input": "tokens", "text": "runners in Nigeria . \n Coach Steve Nuhu , owner of the High "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 232, "end": 234, "input": "tokens", "text": "6 race in Lagos , Coach Nuhu is optimistic that his athletes "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Coach Nuhu", "context": {"start": 232, "end": 234, "input": "tokens", "text": "6 race in Lagos , Coach Nuhu is optimistic that his athletes "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 366, "end": 367, "input": "tokens", "text": "around the globe \" said Nuhu . \n Copyright \n 2016 "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nuhu", "context": {"start": 366, "end": 367, "input": "tokens", "text": "around the globe \" said Nuhu . \n Copyright \n 2016 "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 485, "end": 486, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "AllAfrica", "context": {"start": 485, "end": 486, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 54, "end": 56, "input": "tokens", "text": "February 6 , 2016 , Access Bank Lagos City Marathon . \n "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Access Bank", "context": {"start": 54, "end": 56, "input": "tokens", "text": "February 6 , 2016 , Access Bank Lagos City Marathon . \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 96, "end": 101, "input": "tokens", "text": "Steve Nuhu , owner of the High Altitude Athletics Club , said the return of "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "the High Altitude Athletics Club", "context": {"start": 96, "end": 101, "input": "tokens", "text": "Steve Nuhu , owner of the High Altitude Athletics Club , said the return of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 106, "end": 110, "input": "tokens", "text": ", said the return of the Lagos City Marathon is one of the best "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "the Lagos City Marathon", "context": {"start": 106, "end": 110, "input": "tokens", "text": ", said the return of the Lagos City Marathon is one of the best "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 372, "end": 374, "input": "tokens", "text": ". \n Copyright \n 2016 Premium Times . All rights reserved . "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Premium Times", "context": {"start": 372, "end": 374, "input": "tokens", "text": ". \n Copyright \n 2016 Premium Times . All rights reserved . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 379, "end": 380, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Distributed", "context": {"start": 379, "end": 380, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 381, "end": 384, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "AllAfrica Global Media", "context": {"start": 381, "end": 384, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 3 January 2016 \n Nigeria : Lagos Marathon - 25 "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 3 January 2016 \n Nigeria : Lagos Marathon - 25 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Lagos Marathon - 25 Elite Runners From "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos Marathon", "context": {"start": 7, "end": 9, "input": "tokens", "text": "January 2016 \n Nigeria : Lagos Marathon - 25 Elite Runners From "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 34, "end": 36, "input": "tokens", "text": "Athletics Club of Jos , Plateau State , and some fun runners "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Plateau State", "context": {"start": 34, "end": 36, "input": "tokens", "text": "Athletics Club of Jos , Plateau State , and some fun runners "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 44, "end": 45, "input": "tokens", "text": "fun runners will be in Lagos to participate in the February "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos", "context": {"start": 44, "end": 45, "input": "tokens", "text": "fun runners will be in Lagos to participate in the February "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 56, "end": 59, "input": "tokens", "text": ", 2016 , Access Bank Lagos City Marathon . \n Plateau State and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos City Marathon", "context": {"start": 56, "end": 59, "input": "tokens", "text": ", 2016 , Access Bank Lagos City Marathon . \n Plateau State and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 61, "end": 63, "input": "tokens", "text": "Lagos City Marathon . \n Plateau State and adjoining states like Bauchi "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Plateau State", "context": {"start": 61, "end": 63, "input": "tokens", "text": "Lagos City Marathon . \n Plateau State and adjoining states like Bauchi "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 67, "end": 68, "input": "tokens", "text": "State and adjoining states like Bauchi , Kaduna , Gombe and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Bauchi", "context": {"start": 67, "end": 68, "input": "tokens", "text": "State and adjoining states like Bauchi , Kaduna , Gombe and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 69, "end": 70, "input": "tokens", "text": "adjoining states like Bauchi , Kaduna , Gombe and others have "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Kaduna", "context": {"start": 69, "end": 70, "input": "tokens", "text": "adjoining states like Bauchi , Kaduna , Gombe and others have "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 71, "end": 72, "input": "tokens", "text": "like Bauchi , Kaduna , Gombe and others have the highest "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Gombe", "context": {"start": 71, "end": 72, "input": "tokens", "text": "like Bauchi , Kaduna , Gombe and others have the highest "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 87, "end": 88, "input": "tokens", "text": "races and marathon runners in Nigeria . \n Coach Steve Nuhu "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nigeria", "context": {"start": 87, "end": 88, "input": "tokens", "text": "races and marathon runners in Nigeria . \n Coach Steve Nuhu "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 119, "end": 120, "input": "tokens", "text": "best things to happen to Nigeria sports in recent times , "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nigeria", "context": {"start": 119, "end": 120, "input": "tokens", "text": "best things to happen to Nigeria sports in recent times , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 154, "end": 155, "input": "tokens", "text": "marathons and road races in Nigeria . \n \" I hope "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nigeria", "context": {"start": 154, "end": 155, "input": "tokens", "text": "marathons and road races in Nigeria . \n \" I hope "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 210, "end": 211, "input": "tokens", "text": "will take a cue from Lagos and organize more road races "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos", "context": {"start": 210, "end": 211, "input": "tokens", "text": "will take a cue from Lagos and organize more road races "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 230, "end": 231, "input": "tokens", "text": "the February 6 race in Lagos , Coach Nuhu is optimistic "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos", "context": {"start": 230, "end": 231, "input": "tokens", "text": "the February 6 race in Lagos , Coach Nuhu is optimistic "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 287, "end": 288, "input": "tokens", "text": ". We are coming to Lagos with 25 elite marathoners and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos", "context": {"start": 287, "end": 288, "input": "tokens", "text": ". We are coming to Lagos with 25 elite marathoners and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 355, "end": 357, "input": "tokens", "text": "shall compete more and rival East Africans for the best prizes around "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "East Africans", "context": {"start": 355, "end": 357, "input": "tokens", "text": "shall compete more and rival East Africans for the best prizes around "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 305, "end": 306, "input": "tokens", "text": "not just the prizes for Nigerians , but also the ultimate "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nigerians", "context": {"start": 305, "end": 306, "input": "tokens", "text": "not just the prizes for Nigerians , but also the ultimate "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 334, "end": 335, "input": "tokens", "text": "have competitions regularly like the Kenyans . \n \" The moment "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Kenyans", "context": {"start": 334, "end": 335, "input": "tokens", "text": "have competitions regularly like the Kenyans . \n \" The moment "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/04/201601040025.html"}, "content_strict": {"text": " \n Twenty-five elite athletes from the High Altitude Athletics Club of Jos, Plateau State, and some fun runners will be in Lagos to participate in the February 6, 2016, Access Bank Lagos City Marathon. \n Plateau State and adjoining states like Bauchi, Kaduna, Gombe and others have the highest number of long distance road races and marathon runners in Nigeria. \n Coach Steve Nuhu, owner of the High Altitude Athletics Club, said the return of the Lagos City Marathon is one of the best things to happen to Nigeria sports in recent times, \n \"We are talking about youth empowerment, unemployment and other vices, what better way to engage our youth than having many marathons and road races in Nigeria. \n \"I hope and pray that many other states, especially states in the Northern part of the country with a very high percentage of distance runners who train year in, year out but are not involved in competitions because of dearth or even absence of competitions will take a cue from Lagos and organize more road races, half and full marathons.\" \n For the February 6 race in Lagos, Coach Nuhu is optimistic that his athletes will not only win the national title but will also give the elite athletes from other parts of the world a good fight for the ultimate prize, \n \"For us, the February 6 race is a celebration of our sports. We are coming to Lagos with 25 elite marathoners and many fun runners. Our target is not just the prizes for Nigerians, but also the ultimate prize. The reason why our athletes are not running fantastic time is because we don't have competitions regularly like the Kenyans. \n \"The moment we start and make money on the road, we shall compete more and rival East Africans for the best prizes around the globe\" said Nuhu. \n ", "simple_tokens": ["\n", "twenty", "-", "five", "elite", "athletes", "from", "the", "high", "altitude", "athletics", "club", "of", "jos", ",", "plateau", "state", ",", "and", "some", "fun", "runners", "will", "be", "in", "lagos", "to", "participate", "in", "the", "february", "6", ",", "2016", ",", "access", "bank", "lagos", "city", "marathon", ".", "\n", "plateau", "state", "and", "adjoining", "states", "like", "bauchi", ",", "kaduna", ",", "gombe", "and", "others", "have", "the", "highest", "number", "of", "long", "distance", "road", "races", "and", "marathon", "runners", "in", "nigeria", ".", "\n", "coach", "steve", "nuhu", ",", "owner", "of", "the", "high", "altitude", "athletics", "club", ",", "said", "the", "return", "of", "the", "lagos", "city", "marathon", "is", "one", "of", "the", "best", "things", "to", "happen", "to", "nigeria", "sports", "in", "recent", "times", ",", "\n", "\"", "we", "are", "talking", "about", "youth", "empowerment", ",", "unemployment", "and", "other", "vices", ",", "what", "better", "way", "to", "engage", "our", "youth", "than", "having", "many", "marathons", "and", "road", "races", "in", "nigeria", ".", "\n", "\"", "i", "hope", "and", "pray", "that", "many", "other", "states", ",", "especially", "states", "in", "the", "northern", "part", "of", "the", "country", "with", "a", "very", "high", "percentage", "of", "distance", "runners", "who", "train", "year", "in", ",", "year", "out", "but", "are", "not", "involved", "in", "competitions", "because", "of", "dearth", "or", "even", "absence", "of", "competitions", "will", "take", "a", "cue", "from", "lagos", "and", "organize", "more", "road", "races", ",", "half", "and", "full", "marathons", ".", "\"", "\n", "for", "the", "february", "6", "race", "in", "lagos", ",", "coach", "nuhu", "is", "optimistic", "that", "his", "athletes", "will", "not", "only", "win", "the", "national", "title", "but", "will", "also", "give", "the", "elite", "athletes", "from", "other", "parts", "of", "the", "world", "a", "good", "fight", "for", "the", "ultimate", "prize", ",", "\n", "\"", "for", "us", ",", "the", "february", "6", "race", "is", "a", "celebration", "of", "our", "sports", ".", "we", "are", "coming", "to", "lagos", "with", "25", "elite", "marathoners", "and", "many", "fun", "runners", ".", "our", "target", "is", "not", "just", "the", "prizes", "for", "nigerians", ",", "but", "also", "the", "ultimate", "prize", ".", "the", "reason", "why", "our", "athletes", "are", "not", "running", "fantastic", "time", "is", "because", "we", "don", "'", "t", "have", "competitions", "regularly", "like", "the", "kenyans", ".", "\n", "\"", "the", "moment", "we", "start", "and", "make", "money", "on", "the", "road", ",", "we", "shall", "compete", "more", "and", "rival", "east", "africans", "for", "the", "best", "prizes", "around", "the", "globe", "\"", "said", "nuhu", ".", "\n"], "simple_tokens_original_case": ["\n", "Twenty", "-", "five", "elite", "athletes", "from", "the", "High", "Altitude", "Athletics", "Club", "of", "Jos", ",", "Plateau", "State", ",", "and", "some", "fun", "runners", "will", "be", "in", "Lagos", "to", "participate", "in", "the", "February", "6", ",", "2016", ",", "Access", "Bank", "Lagos", "City", "Marathon", ".", "\n", "Plateau", "State", "and", "adjoining", "states", "like", "Bauchi", ",", "Kaduna", ",", "Gombe", "and", "others", "have", "the", "highest", "number", "of", "long", "distance", "road", "races", "and", "marathon", "runners", "in", "Nigeria", ".", "\n", "Coach", "Steve", "Nuhu", ",", "owner", "of", "the", "High", "Altitude", "Athletics", "Club", ",", "said", "the", "return", "of", "the", "Lagos", "City", "Marathon", "is", "one", "of", "the", "best", "things", "to", "happen", "to", "Nigeria", "sports", "in", "recent", "times", ",", "\n", "\"", "We", "are", "talking", "about", "youth", "empowerment", ",", "unemployment", "and", "other", "vices", ",", "what", "better", "way", "to", "engage", "our", "youth", "than", "having", "many", "marathons", "and", "road", "races", "in", "Nigeria", ".", "\n", "\"", "I", "hope", "and", "pray", "that", "many", "other", "states", ",", "especially", "states", "in", "the", "Northern", "part", "of", "the", "country", "with", "a", "very", "high", "percentage", "of", "distance", "runners", "who", "train", "year", "in", ",", "year", "out", "but", "are", "not", "involved", "in", "competitions", "because", "of", "dearth", "or", "even", "absence", "of", "competitions", "will", "take", "a", "cue", "from", "Lagos", "and", "organize", "more", "road", "races", ",", "half", "and", "full", "marathons", ".", "\"", "\n", "For", "the", "February", "6", "race", "in", "Lagos", ",", "Coach", "Nuhu", "is", "optimistic", "that", "his", "athletes", "will", "not", "only", "win", "the", "national", "title", "but", "will", "also", "give", "the", "elite", "athletes", "from", "other", "parts", "of", "the", "world", "a", "good", "fight", "for", "the", "ultimate", "prize", ",", "\n", "\"", "For", "us", ",", "the", "February", "6", "race", "is", "a", "celebration", "of", "our", "sports", ".", "We", "are", "coming", "to", "Lagos", "with", "25", "elite", "marathoners", "and", "many", "fun", "runners", ".", "Our", "target", "is", "not", "just", "the", "prizes", "for", "Nigerians", ",", "but", "also", "the", "ultimate", "prize", ".", "The", "reason", "why", "our", "athletes", "are", "not", "running", "fantastic", "time", "is", "because", "we", "don", "'", "t", "have", "competitions", "regularly", "like", "the", "Kenyans", ".", "\n", "\"", "The", "moment", "we", "start", "and", "make", "money", "on", "the", "road", ",", "we", "shall", "compete", "more", "and", "rival", "East", "Africans", "for", "the", "best", "prizes", "around", "the", "globe", "\"", "said", "Nuhu", ".", "\n"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 15, "end": 17, "input": "tokens", "text": "Athletics Club of Jos , Plateau State , and some fun runners "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Plateau State", "context": {"start": 15, "end": 17, "input": "tokens", "text": "Athletics Club of Jos , Plateau State , and some fun runners "}}, {"origin": {"segment": "content_strict", "context": {"start": 25, "end": 26, "input": "tokens", "text": "fun runners will be in Lagos to participate in the February "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos", "context": {"start": 25, "end": 26, "input": "tokens", "text": "fun runners will be in Lagos to participate in the February "}}, {"origin": {"segment": "content_strict", "context": {"start": 37, "end": 40, "input": "tokens", "text": ", 2016 , Access Bank Lagos City Marathon . \n Plateau State and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos City Marathon", "context": {"start": 37, "end": 40, "input": "tokens", "text": ", 2016 , Access Bank Lagos City Marathon . \n Plateau State and "}}, {"origin": {"segment": "content_strict", "context": {"start": 42, "end": 44, "input": "tokens", "text": "Lagos City Marathon . \n Plateau State and adjoining states like Bauchi "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Plateau State", "context": {"start": 42, "end": 44, "input": "tokens", "text": "Lagos City Marathon . \n Plateau State and adjoining states like Bauchi "}}, {"origin": {"segment": "content_strict", "context": {"start": 48, "end": 49, "input": "tokens", "text": "State and adjoining states like Bauchi , Kaduna , Gombe and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Bauchi", "context": {"start": 48, "end": 49, "input": "tokens", "text": "State and adjoining states like Bauchi , Kaduna , Gombe and "}}, {"origin": {"segment": "content_strict", "context": {"start": 50, "end": 51, "input": "tokens", "text": "adjoining states like Bauchi , Kaduna , Gombe and others have "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Kaduna", "context": {"start": 50, "end": 51, "input": "tokens", "text": "adjoining states like Bauchi , Kaduna , Gombe and others have "}}, {"origin": {"segment": "content_strict", "context": {"start": 52, "end": 53, "input": "tokens", "text": "like Bauchi , Kaduna , Gombe and others have the highest "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Gombe", "context": {"start": 52, "end": 53, "input": "tokens", "text": "like Bauchi , Kaduna , Gombe and others have the highest "}}, {"origin": {"segment": "content_strict", "context": {"start": 68, "end": 69, "input": "tokens", "text": "races and marathon runners in Nigeria . \n Coach Steve Nuhu "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nigeria", "context": {"start": 68, "end": 69, "input": "tokens", "text": "races and marathon runners in Nigeria . \n Coach Steve Nuhu "}}, {"origin": {"segment": "content_strict", "context": {"start": 100, "end": 101, "input": "tokens", "text": "best things to happen to Nigeria sports in recent times , "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nigeria", "context": {"start": 100, "end": 101, "input": "tokens", "text": "best things to happen to Nigeria sports in recent times , "}}, {"origin": {"segment": "content_strict", "context": {"start": 135, "end": 136, "input": "tokens", "text": "marathons and road races in Nigeria . \n \" I hope "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nigeria", "context": {"start": 135, "end": 136, "input": "tokens", "text": "marathons and road races in Nigeria . \n \" I hope "}}, {"origin": {"segment": "content_strict", "context": {"start": 191, "end": 192, "input": "tokens", "text": "will take a cue from Lagos and organize more road races "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos", "context": {"start": 191, "end": 192, "input": "tokens", "text": "will take a cue from Lagos and organize more road races "}}, {"origin": {"segment": "content_strict", "context": {"start": 211, "end": 212, "input": "tokens", "text": "the February 6 race in Lagos , Coach Nuhu is optimistic "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos", "context": {"start": 211, "end": 212, "input": "tokens", "text": "the February 6 race in Lagos , Coach Nuhu is optimistic "}}, {"origin": {"segment": "content_strict", "context": {"start": 268, "end": 269, "input": "tokens", "text": ". We are coming to Lagos with 25 elite marathoners and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos", "context": {"start": 268, "end": 269, "input": "tokens", "text": ". We are coming to Lagos with 25 elite marathoners and "}}, {"origin": {"segment": "content_strict", "context": {"start": 336, "end": 338, "input": "tokens", "text": "shall compete more and rival East Africans for the best prizes around "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "East Africans", "context": {"start": 336, "end": 338, "input": "tokens", "text": "shall compete more and rival East Africans for the best prizes around "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 35, "end": 37, "input": "tokens", "text": "February 6 , 2016 , Access Bank Lagos City Marathon . \n "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Access Bank", "context": {"start": 35, "end": 37, "input": "tokens", "text": "February 6 , 2016 , Access Bank Lagos City Marathon . \n "}}, {"origin": {"segment": "content_strict", "context": {"start": 77, "end": 82, "input": "tokens", "text": "Steve Nuhu , owner of the High Altitude Athletics Club , said the return of "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "the High Altitude Athletics Club", "context": {"start": 77, "end": 82, "input": "tokens", "text": "Steve Nuhu , owner of the High Altitude Athletics Club , said the return of "}}, {"origin": {"segment": "content_strict", "context": {"start": 87, "end": 91, "input": "tokens", "text": ", said the return of the Lagos City Marathon is one of the best "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "the Lagos City Marathon", "context": {"start": 87, "end": 91, "input": "tokens", "text": ", said the return of the Lagos City Marathon is one of the best "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 10, "end": 12, "input": "tokens", "text": "athletes from the High Altitude Athletics Club of Jos , Plateau State "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Athletics Club", "context": {"start": 10, "end": 12, "input": "tokens", "text": "athletes from the High Altitude Athletics Club of Jos , Plateau State "}}, {"origin": {"segment": "content_strict", "context": {"start": 71, "end": 74, "input": "tokens", "text": "runners in Nigeria . \n Coach Steve Nuhu , owner of the High "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Coach Steve Nuhu", "context": {"start": 71, "end": 74, "input": "tokens", "text": "runners in Nigeria . \n Coach Steve Nuhu , owner of the High "}}, {"origin": {"segment": "content_strict", "context": {"start": 213, "end": 215, "input": "tokens", "text": "6 race in Lagos , Coach Nuhu is optimistic that his athletes "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Coach Nuhu", "context": {"start": 213, "end": 215, "input": "tokens", "text": "6 race in Lagos , Coach Nuhu is optimistic that his athletes "}}, {"origin": {"segment": "content_strict", "context": {"start": 347, "end": 348, "input": "tokens", "text": "around the globe \" said Nuhu . \n "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nuhu", "context": {"start": 347, "end": 348, "input": "tokens", "text": "around the globe \" said Nuhu . \n "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 286, "end": 287, "input": "tokens", "text": "not just the prizes for Nigerians , but also the ultimate "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nigerians", "context": {"start": 286, "end": 287, "input": "tokens", "text": "not just the prizes for Nigerians , but also the ultimate "}}, {"origin": {"segment": "content_strict", "context": {"start": 315, "end": 316, "input": "tokens", "text": "have competitions regularly like the Kenyans . \n \" The moment "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Kenyans", "context": {"start": 315, "end": 316, "input": "tokens", "text": "have competitions regularly like the Kenyans . \n \" The moment "}}]}}}}, "title": {"text": " Nigeria: Lagos Marathon - 25 Elite Runners From Jos Sign Up for Race - allAfrica.com ", "simple_tokens": ["nigeria", ":", "lagos", "marathon", "-", "25", "elite", "runners", "from", "jos", "sign", "up", "for", "race", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Lagos", "Marathon", "-", "25", "Elite", "Runners", "From", "Jos", "Sign", "Up", "for", "Race", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Lagos Marathon - 25 "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Lagos Marathon - 25 "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 2, "end": 6, "input": "tokens", "text": "Nigeria : Lagos Marathon - 25 Elite Runners From Jos Sign "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "value": "Lagos Marathon - 25", "context": {"start": 2, "end": 6, "input": "tokens", "text": "Nigeria : Lagos Marathon - 25 Elite Runners From Jos Sign "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:14.906080", "@etk_process_time": 0.4010920524597168, "@etk_start_time": "2017-11-15T01:34:14.504988"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Lagos Marathon - 25 Elite Runners From Jos Sign Up for Race - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 3 January 2016\n
\n \n \n

\n Nigeria: Lagos Marathon - 25 Elite Runners From Jos Sign Up for Race\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n

\n Twenty-five elite athletes from the High Altitude Athletics Club of Jos, Plateau State, and some fun runners will be in Lagos to participate in the February 6, 2016, Access Bank Lagos City Marathon.\n

\n

\n Plateau State and adjoining states like Bauchi, Kaduna, Gombe and others have the highest number of long distance road races and marathon runners in Nigeria.\n

\n

\n Coach Steve Nuhu, owner of the High Altitude Athletics Club, said the return of the Lagos City Marathon is one of the best things to happen to Nigeria sports in recent times,\n

\n

\n \"We are talking about youth empowerment, unemployment and other vices, what better way to engage our youth than having many marathons and road races in Nigeria.\n

\n
\n
\n
\n
\n

\n \"I hope and pray that many other states, especially states in the Northern part of the country with a very high percentage of distance runners who train year in, year out but are not involved in competitions because of dearth or even absence of competitions will take a cue from Lagos and organize more road races, half and full marathons.\"\n

\n

\n For the February 6 race in Lagos, Coach Nuhu is optimistic that his athletes will not only win the national title but will also give the elite athletes from other parts of the world a good fight for the ultimate prize,\n

\n

\n \"For us, the February 6 race is a celebration of our sports. We are coming to Lagos with 25 elite marathoners and many fun runners. Our target is not just the prizes for Nigerians, but also the ultimate prize. The reason why our athletes are not running fantastic time is because we don't have competitions regularly like the Kenyans.\n

\n

\n \"The moment we start and make money on the road, we shall compete more and rival East Africans for the best prizes around the globe\" said Nuhu.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC", "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"} -{"url": "http://www.ce_news_article.org/2016/01/04/201601040034.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 622, "end": 623, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Blessing Obineche \n The President , Rivers "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blessing Obineche"}, {"source": {"segment": "content_relaxed", "context": {"start": 22, "end": 24, "input": "tokens", "text": "- Election . \n By Blessing Obineche \n The President , Rivers "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blessing Obineche"}], "key": "blessing obineche", "value": "Blessing Obineche"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 29, "end": 31, "input": "tokens", "text": "that wife of former President Goodluck Jonathan , Dr . Mrs Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}, {"source": {"segment": "content_strict", "context": {"start": 419, "end": 421, "input": "tokens", "text": "further noted that former President Goodluck Jonathan and his family , including "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 49, "end": 51, "input": "tokens", "text": "that wife of former President Goodluck Jonathan , Dr . Mrs Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 439, "end": 441, "input": "tokens", "text": "further noted that former President Goodluck Jonathan and his family , including "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}], "key": "goodluck jonathan", "value": "Goodluck Jonathan"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 32, "end": 33, "input": "tokens", "text": "former President Goodluck Jonathan , Dr . Mrs Patience Jonathan recently "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_strict", "context": {"start": 202, "end": 203, "input": "tokens", "text": "choice of her husband , Dr . Goodluck Ebele Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_relaxed", "context": {"start": 52, "end": 53, "input": "tokens", "text": "former President Goodluck Jonathan , Dr . Mrs Patience Jonathan recently "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_relaxed", "context": {"start": 222, "end": 223, "input": "tokens", "text": "choice of her husband , Dr . Goodluck Ebele Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}], "key": "dr", "value": "Dr"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 36, "end": 37, "input": "tokens", "text": ", Dr . Mrs Patience Jonathan recently met former Niger Delta "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_strict", "context": {"start": 119, "end": 120, "input": "tokens", "text": "stated that Mrs . Patience Jonathan , who is the Chair "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_strict", "context": {"start": 255, "end": 256, "input": "tokens", "text": "Timipre Sylva by Dame Patience Jonathan , as it described it "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 9, "end": 10, "input": "tokens", "text": "\n Nigeria : Dame Patience Jonathan Not Working for Sylva ' "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 56, "end": 57, "input": "tokens", "text": ", Dr . Mrs Patience Jonathan recently met former Niger Delta "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 139, "end": 140, "input": "tokens", "text": "stated that Mrs . Patience Jonathan , who is the Chair "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 275, "end": 276, "input": "tokens", "text": "Timipre Sylva by Dame Patience Jonathan , as it described it "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "title", "context": {"start": 4, "end": 5, "input": "tokens", "text": "Nigeria : Dame Patience Jonathan Not Working for Sylva ' "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}], "key": "jonathan", "value": "Jonathan"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 46, "end": 48, "input": "tokens", "text": "Delta Militants headed by Chief Ateke Tom in Okrika , Rivers State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ateke Tom"}, {"source": {"segment": "content_strict", "context": {"start": 157, "end": 159, "input": "tokens", "text": "support and meeting with Chief Ateke Tom led former militants group as "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ateke Tom"}, {"source": {"segment": "content_relaxed", "context": {"start": 66, "end": 68, "input": "tokens", "text": "Delta Militants headed by Chief Ateke Tom in Okrika , Rivers State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ateke Tom"}, {"source": {"segment": "content_relaxed", "context": {"start": 177, "end": 179, "input": "tokens", "text": "support and meeting with Chief Ateke Tom led former militants group as "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ateke Tom"}], "key": "ateke tom", "value": "Ateke Tom"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 69, "end": 71, "input": "tokens", "text": "Congress , APC , Chief Timipre Sylvain in the January 9 rescheduled "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylvain"}, {"source": {"segment": "content_relaxed", "context": {"start": 89, "end": 91, "input": "tokens", "text": "Congress , APC , Chief Timipre Sylvain in the January 9 rescheduled "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylvain"}], "key": "timipre sylvain", "value": "Timipre Sylvain"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 112, "end": 114, "input": "tokens", "text": "s President , Dr . Bright Numofagha stated that Mrs . Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bright Numofagha"}, {"source": {"segment": "content_relaxed", "context": {"start": 132, "end": 134, "input": "tokens", "text": "s President , Dr . Bright Numofagha stated that Mrs . Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bright Numofagha"}], "key": "bright numofagha", "value": "Bright Numofagha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 116, "end": 117, "input": "tokens", "text": ". Bright Numofagha stated that Mrs . Patience Jonathan , who "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mrs"}, {"source": {"segment": "content_relaxed", "context": {"start": 136, "end": 137, "input": "tokens", "text": ". Bright Numofagha stated that Mrs . Patience Jonathan , who "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mrs"}], "key": "mrs", "value": "Mrs"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 188, "end": 190, "input": "tokens", "text": "that it was impossible for Mrs Jonathan to support any other candidate "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mrs Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 208, "end": 210, "input": "tokens", "text": "that it was impossible for Mrs Jonathan to support any other candidate "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mrs Jonathan"}], "key": "mrs jonathan", "value": "Mrs Jonathan"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 204, "end": 207, "input": "tokens", "text": "her husband , Dr . Goodluck Ebele Jonathan , in his home State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Ebele Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 224, "end": 227, "input": "tokens", "text": "her husband , Dr . Goodluck Ebele Jonathan , in his home State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Ebele Jonathan"}], "key": "goodluck ebele jonathan", "value": "Goodluck Ebele Jonathan"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 228, "end": 231, "input": "tokens", "text": "' s flagbearer , Governor Henry Seriake Dickson . \n The group , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Henry Seriake Dickson"}, {"source": {"segment": "content_relaxed", "context": {"start": 248, "end": 251, "input": "tokens", "text": "' s flagbearer , Governor Henry Seriake Dickson . \n The group , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Henry Seriake Dickson"}], "key": "henry seriake dickson", "value": "Henry Seriake Dickson"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 250, "end": 252, "input": "tokens", "text": "the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylva"}, {"source": {"segment": "content_relaxed", "context": {"start": 270, "end": 272, "input": "tokens", "text": "the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylva"}], "key": "timipre sylva", "value": "Timipre Sylva"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 336, "end": 338, "input": "tokens", "text": "5th 2015 election , where Governor Dickson currently maintains a clear lead "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Governor Dickson"}, {"source": {"segment": "content_relaxed", "context": {"start": 356, "end": 358, "input": "tokens", "text": "5th 2015 election , where Governor Dickson currently maintains a clear lead "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Governor Dickson"}], "key": "governor dickson", "value": "Governor Dickson"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 364, "end": 365, "input": "tokens", "text": "election . \n Dr . Numofagha also urged the people of "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Numofagha"}, {"source": {"segment": "content_relaxed", "context": {"start": 384, "end": 385, "input": "tokens", "text": "election . \n Dr . Numofagha also urged the people of "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Numofagha"}], "key": "numofagha", "value": "Numofagha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 13, "end": 14, "input": "tokens", "text": "Patience Jonathan Not Working for Sylva ' s Re - Election "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sylva"}, {"source": {"segment": "title", "context": {"start": 8, "end": 9, "input": "tokens", "text": "Patience Jonathan Not Working for Sylva ' s Re - Election "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sylva"}], "key": "sylva", "value": "Sylva"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "method": "rearrange_description"}], "key": "description", "value": " \n By Blessing Obineche \n The President, Rivers Patriotic Vanguard, has said it is a figment of imagination of those who alleged that wife of former President Goodluck Jonathan, Dr. Mrs Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom in Okrika, Rivers State to discuss modalities of supporting the candidate of the All Progressives Congress, APC, Chief Timipre Sylvain in the January 9 rescheduled governorship election in Bayelsa State, describing the purported meeting as untrue. \n Speaking at a media roundtable in Port Harcourt, Rivers State on Sunday, the group's President, Dr. Bright Numofagha stated that Mrs. Patience Jonathan, who is the Chair of the group's board of trustees at no time contemplated giving any kind of support to the Bayelsa APC governorship candidate, describing the rumoured support and meeting with Chief Ateke Tom led former militants group as \"ridiculous and unfounded\". \n He stated that those peddling the 'falsehood' should have known that it was impossible for Mrs Jonathan to support any other candidate against the choice of her husband, Dr. Goodluck Ebele Jonathan, in his home State of Bayelsa, other than the Peoples Democratic Party, PDP's flagbearer, Governor Henry Seriake Dickson. \n The group, therefore, urged the general public, to disregard the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan, as it described it as the desperate attempt by the APC in Bayelsa State and its candidate to ride on the goodwill of the Jonathans in Bayelsa State, to manipulate the outcome of the supplementary governorship election in the State, scheduled for the 9th of January, 2016. \n The group advised Chief Timipre Sylva to accept the decision of the people of Bayelsa State, as expressed during the December 5th 2015 election, where Governor Dickson currently maintains a clear lead in six of the seven local governments, where results have already been declared in the election. \n Dr. Numofagha also urged the people of Bayelsa, to remain peaceful and law abiding and never succumb to any form of violence and intimidation that the expected engagements of known Militants and political thugs, by the Bayelsa State APC, may have been intended to achieve. \n He further noted that former President Goodluck Jonathan and his family, including the wife, are currently on vacation in the United Kingdom, hence there was no way Mrs Patience could have attended any political meeting the last few days. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 40, "end": 43, "input": "tokens", "text": "Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Niger Delta Militants"}, {"source": {"segment": "content_relaxed", "context": {"start": 60, "end": 63, "input": "tokens", "text": "Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Niger Delta Militants"}], "key": "niger delta militants", "value": "Niger Delta Militants"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 592, "end": 593, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Dame Patience Jonathan Not Working for Sylva's Re-Election. - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 8, "end": 11, "input": "tokens", "text": "Obineche \n The President , Rivers Patriotic Vanguard , has said it is "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers Patriotic Vanguard"}, {"source": {"segment": "content_relaxed", "context": {"start": 28, "end": 31, "input": "tokens", "text": "Obineche \n The President , Rivers Patriotic Vanguard , has said it is "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers Patriotic Vanguard"}], "key": "rivers patriotic vanguard", "value": "Rivers Patriotic Vanguard"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 51, "end": 53, "input": "tokens", "text": "Ateke Tom in Okrika , Rivers State to discuss modalities of supporting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers State"}, {"source": {"segment": "content_strict", "context": {"start": 99, "end": 101, "input": "tokens", "text": "roundtable in Port Harcourt , Rivers State on Sunday , the group "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers State"}, {"source": {"segment": "content_relaxed", "context": {"start": 71, "end": 73, "input": "tokens", "text": "Ateke Tom in Okrika , Rivers State to discuss modalities of supporting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers State"}, {"source": {"segment": "content_relaxed", "context": {"start": 119, "end": 121, "input": "tokens", "text": "roundtable in Port Harcourt , Rivers State on Sunday , the group "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers State"}], "key": "rivers state", "value": "Rivers State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 62, "end": 65, "input": "tokens", "text": "supporting the candidate of the All Progressives Congress , APC , Chief Timipre "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}, {"source": {"segment": "content_relaxed", "context": {"start": 82, "end": 85, "input": "tokens", "text": "supporting the candidate of the All Progressives Congress , APC , Chief Timipre "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}], "key": "all progressives congress", "value": "All Progressives Congress"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 66, "end": 67, "input": "tokens", "text": "the All Progressives Congress , APC , Chief Timipre Sylvain in "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 267, "end": 268, "input": "tokens", "text": "the desperate attempt by the APC in Bayelsa State and its "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 86, "end": 87, "input": "tokens", "text": "the All Progressives Congress , APC , Chief Timipre Sylvain in "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 287, "end": 288, "input": "tokens", "text": "the desperate attempt by the APC in Bayelsa State and its "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}], "key": "apc", "value": "APC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 110, "end": 111, "input": "tokens", "text": "group ' s President , Dr . Bright Numofagha stated that "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_relaxed", "context": {"start": 130, "end": 131, "input": "tokens", "text": "group ' s President , Dr . Bright Numofagha stated that "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}], "key": "dr", "value": "Dr"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 123, "end": 126, "input": "tokens", "text": "Patience Jonathan , who is the Chair of the group ' s board "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Chair of"}, {"source": {"segment": "content_relaxed", "context": {"start": 143, "end": 146, "input": "tokens", "text": "Patience Jonathan , who is the Chair of the group ' s board "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Chair of"}], "key": "the chair of", "value": "the Chair of"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 211, "end": 214, "input": "tokens", "text": "Jonathan , in his home State of Bayelsa , other than the Peoples "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State of Bayelsa"}, {"source": {"segment": "content_relaxed", "context": {"start": 231, "end": 234, "input": "tokens", "text": "Jonathan , in his home State of Bayelsa , other than the Peoples "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State of Bayelsa"}], "key": "state of bayelsa", "value": "State of Bayelsa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 217, "end": 221, "input": "tokens", "text": "of Bayelsa , other than the Peoples Democratic Party , PDP ' s flagbearer "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}, {"source": {"segment": "content_relaxed", "context": {"start": 237, "end": 241, "input": "tokens", "text": "of Bayelsa , other than the Peoples Democratic Party , PDP ' s flagbearer "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}], "key": "the peoples democratic party", "value": "the Peoples Democratic Party"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 222, "end": 223, "input": "tokens", "text": "the Peoples Democratic Party , PDP ' s flagbearer , Governor "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 242, "end": 243, "input": "tokens", "text": "the Peoples Democratic Party , PDP ' s flagbearer , Governor "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}], "key": "pdp", "value": "PDP"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 297, "end": 298, "input": "tokens", "text": "supplementary governorship election in the State , scheduled for the 9th "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 317, "end": 318, "input": "tokens", "text": "supplementary governorship election in the State , scheduled for the 9th "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}], "key": "state", "value": "State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 394, "end": 395, "input": "tokens", "text": "the expected engagements of known Militants and political thugs , by "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Militants"}, {"source": {"segment": "content_relaxed", "context": {"start": 414, "end": 415, "input": "tokens", "text": "the expected engagements of known Militants and political thugs , by "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Militants"}], "key": "militants", "value": "Militants"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 400, "end": 404, "input": "tokens", "text": "and political thugs , by the Bayelsa State APC , may have been intended "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bayelsa State APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 420, "end": 424, "input": "tokens", "text": "and political thugs , by the Bayelsa State APC , may have been intended "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bayelsa State APC"}], "key": "the bayelsa state apc", "value": "the Bayelsa State APC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 486, "end": 487, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 488, "end": 491, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 49, "end": 50, "input": "tokens", "text": "by Chief Ateke Tom in Okrika , Rivers State to discuss "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okrika"}, {"source": {"segment": "content_relaxed", "context": {"start": 69, "end": 70, "input": "tokens", "text": "by Chief Ateke Tom in Okrika , Rivers State to discuss "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okrika"}], "key": "okrika", "value": "Okrika"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 79, "end": 81, "input": "tokens", "text": "9 rescheduled governorship election in Bayelsa State , describing the purported meeting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_strict", "context": {"start": 269, "end": 271, "input": "tokens", "text": "attempt by the APC in Bayelsa State and its candidate to ride "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_strict", "context": {"start": 283, "end": 285, "input": "tokens", "text": "goodwill of the Jonathans in Bayelsa State , to manipulate the outcome "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_strict", "context": {"start": 323, "end": 325, "input": "tokens", "text": "decision of the people of Bayelsa State , as expressed during the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 99, "end": 101, "input": "tokens", "text": "9 rescheduled governorship election in Bayelsa State , describing the purported meeting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 289, "end": 291, "input": "tokens", "text": "attempt by the APC in Bayelsa State and its candidate to ride "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 303, "end": 305, "input": "tokens", "text": "goodwill of the Jonathans in Bayelsa State , to manipulate the outcome "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 343, "end": 345, "input": "tokens", "text": "decision of the people of Bayelsa State , as expressed during the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}], "key": "bayelsa state", "value": "Bayelsa State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 96, "end": 98, "input": "tokens", "text": "at a media roundtable in Port Harcourt , Rivers State on Sunday "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Port Harcourt"}, {"source": {"segment": "content_relaxed", "context": {"start": 116, "end": 118, "input": "tokens", "text": "at a media roundtable in Port Harcourt , Rivers State on Sunday "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Port Harcourt"}], "key": "port harcourt", "value": "Port Harcourt"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 144, "end": 146, "input": "tokens", "text": "kind of support to the Bayelsa APC governorship candidate , describing the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 164, "end": 166, "input": "tokens", "text": "kind of support to the Bayelsa APC governorship candidate , describing the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa APC"}], "key": "bayelsa apc", "value": "Bayelsa APC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 370, "end": 371, "input": "tokens", "text": "also urged the people of Bayelsa , to remain peaceful and "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}, {"source": {"segment": "content_relaxed", "context": {"start": 390, "end": 391, "input": "tokens", "text": "also urged the people of Bayelsa , to remain peaceful and "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}], "key": "bayelsa", "value": "Bayelsa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 434, "end": 437, "input": "tokens", "text": "are currently on vacation in the United Kingdom , hence there was no "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Kingdom"}, {"source": {"segment": "content_relaxed", "context": {"start": 454, "end": 457, "input": "tokens", "text": "are currently on vacation in the United Kingdom , hence there was no "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Kingdom"}], "key": "the united kingdom", "value": "the United Kingdom"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 4 January 2016 \n Nigeria : Dame Patience Jonathan Not "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Dame Patience Jonathan Not "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 281, "end": 282, "input": "tokens", "text": "on the goodwill of the Jonathans in Bayelsa State , to "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathans"}, {"source": {"segment": "content_relaxed", "context": {"start": 301, "end": 302, "input": "tokens", "text": "on the goodwill of the Jonathans in Bayelsa State , to "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathans"}], "key": "jonathans", "value": "Jonathans"}]}, "content_extraction": {"content_relaxed": {"text": " \n 4 January 2016 \n Nigeria: Dame Patience Jonathan Not Working for Sylva's Re-Election. \n By Blessing Obineche \n The President, Rivers Patriotic Vanguard, has said it is a figment of imagination of those who alleged that wife of former President Goodluck Jonathan, Dr. Mrs Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom in Okrika, Rivers State to discuss modalities of supporting the candidate of the All Progressives Congress, APC, Chief Timipre Sylvain in the January 9 rescheduled governorship election in Bayelsa State, describing the purported meeting as untrue. \n Speaking at a media roundtable in Port Harcourt, Rivers State on Sunday, the group's President, Dr. Bright Numofagha stated that Mrs. Patience Jonathan, who is the Chair of the group's board of trustees at no time contemplated giving any kind of support to the Bayelsa APC governorship candidate, describing the rumoured support and meeting with Chief Ateke Tom led former militants group as \"ridiculous and unfounded\". \n He stated that those peddling the 'falsehood' should have known that it was impossible for Mrs Jonathan to support any other candidate against the choice of her husband, Dr. Goodluck Ebele Jonathan, in his home State of Bayelsa, other than the Peoples Democratic Party, PDP's flagbearer, Governor Henry Seriake Dickson. \n The group, therefore, urged the general public, to disregard the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan, as it described it as the desperate attempt by the APC in Bayelsa State and its candidate to ride on the goodwill of the Jonathans in Bayelsa State, to manipulate the outcome of the supplementary governorship election in the State, scheduled for the 9th of January, 2016. \n The group advised Chief Timipre Sylva to accept the decision of the people of Bayelsa State, as expressed during the December 5th 2015 election, where Governor Dickson currently maintains a clear lead in six of the seven local governments, where results have already been declared in the election. \n Dr. Numofagha also urged the people of Bayelsa, to remain peaceful and law abiding and never succumb to any form of violence and intimidation that the expected engagements of known Militants and political thugs, by the Bayelsa State APC, may have been intended to achieve. \n He further noted that former President Goodluck Jonathan and his family, including the wife, are currently on vacation in the United Kingdom, hence there was no way Mrs Patience could have attended any political meeting the last few days. \n Copyright \n 2016 Leadership. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "4", "january", "2016", "\n", "nigeria", ":", "dame", "patience", "jonathan", "not", "working", "for", "sylva", "'", "s", "re", "-", "election", ".", "\n", "by", "blessing", "obineche", "\n", "the", "president", ",", "rivers", "patriotic", "vanguard", ",", "has", "said", "it", "is", "a", "figment", "of", "imagination", "of", "those", "who", "alleged", "that", "wife", "of", "former", "president", "goodluck", "jonathan", ",", "dr", ".", "mrs", "patience", "jonathan", "recently", "met", "former", "niger", "delta", "militants", "headed", "by", "chief", "ateke", "tom", "in", "okrika", ",", "rivers", "state", "to", "discuss", "modalities", "of", "supporting", "the", "candidate", "of", "the", "all", "progressives", "congress", ",", "apc", ",", "chief", "timipre", "sylvain", "in", "the", "january", "9", "rescheduled", "governorship", "election", "in", "bayelsa", "state", ",", "describing", "the", "purported", "meeting", "as", "untrue", ".", "\n", "speaking", "at", "a", "media", "roundtable", "in", "port", "harcourt", ",", "rivers", "state", "on", "sunday", ",", "the", "group", "'", "s", "president", ",", "dr", ".", "bright", "numofagha", "stated", "that", "mrs", ".", "patience", "jonathan", ",", "who", "is", "the", "chair", "of", "the", "group", "'", "s", "board", "of", "trustees", "at", "no", "time", "contemplated", "giving", "any", "kind", "of", "support", "to", "the", "bayelsa", "apc", "governorship", "candidate", ",", "describing", "the", "rumoured", "support", "and", "meeting", "with", "chief", "ateke", "tom", "led", "former", "militants", "group", "as", "\"", "ridiculous", "and", "unfounded", "\"", ".", "\n", "he", "stated", "that", "those", "peddling", "the", "'", "falsehood", "'", "should", "have", "known", "that", "it", "was", "impossible", "for", "mrs", "jonathan", "to", "support", "any", "other", "candidate", "against", "the", "choice", "of", "her", "husband", ",", "dr", ".", "goodluck", "ebele", "jonathan", ",", "in", "his", "home", "state", "of", "bayelsa", ",", "other", "than", "the", "peoples", "democratic", "party", ",", "pdp", "'", "s", "flagbearer", ",", "governor", "henry", "seriake", "dickson", ".", "\n", "the", "group", ",", "therefore", ",", "urged", "the", "general", "public", ",", "to", "disregard", "the", "rumoured", "endorsement", "of", "chief", "timipre", "sylva", "by", "dame", "patience", "jonathan", ",", "as", "it", "described", "it", "as", "the", "desperate", "attempt", "by", "the", "apc", "in", "bayelsa", "state", "and", "its", "candidate", "to", "ride", "on", "the", "goodwill", "of", "the", "jonathans", "in", "bayelsa", "state", ",", "to", "manipulate", "the", "outcome", "of", "the", "supplementary", "governorship", "election", "in", "the", "state", ",", "scheduled", "for", "the", "9th", "of", "january", ",", "2016", ".", "\n", "the", "group", "advised", "chief", "timipre", "sylva", "to", "accept", "the", "decision", "of", "the", "people", "of", "bayelsa", "state", ",", "as", "expressed", "during", "the", "december", "5th", "2015", "election", ",", "where", "governor", "dickson", "currently", "maintains", "a", "clear", "lead", "in", "six", "of", "the", "seven", "local", "governments", ",", "where", "results", "have", "already", "been", "declared", "in", "the", "election", ".", "\n", "dr", ".", "numofagha", "also", "urged", "the", "people", "of", "bayelsa", ",", "to", "remain", "peaceful", "and", "law", "abiding", "and", "never", "succumb", "to", "any", "form", "of", "violence", "and", "intimidation", "that", "the", "expected", "engagements", "of", "known", "militants", "and", "political", "thugs", ",", "by", "the", "bayelsa", "state", "apc", ",", "may", "have", "been", "intended", "to", "achieve", ".", "\n", "he", "further", "noted", "that", "former", "president", "goodluck", "jonathan", "and", "his", "family", ",", "including", "the", "wife", ",", "are", "currently", "on", "vacation", "in", "the", "united", "kingdom", ",", "hence", "there", "was", "no", "way", "mrs", "patience", "could", "have", "attended", "any", "political", "meeting", "the", "last", "few", "days", ".", "\n", "copyright", "\n", "2016", "leadership", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "4", "January", "2016", "\n", "Nigeria", ":", "Dame", "Patience", "Jonathan", "Not", "Working", "for", "Sylva", "'", "s", "Re", "-", "Election", ".", "\n", "By", "Blessing", "Obineche", "\n", "The", "President", ",", "Rivers", "Patriotic", "Vanguard", ",", "has", "said", "it", "is", "a", "figment", "of", "imagination", "of", "those", "who", "alleged", "that", "wife", "of", "former", "President", "Goodluck", "Jonathan", ",", "Dr", ".", "Mrs", "Patience", "Jonathan", "recently", "met", "former", "Niger", "Delta", "Militants", "headed", "by", "Chief", "Ateke", "Tom", "in", "Okrika", ",", "Rivers", "State", "to", "discuss", "modalities", "of", "supporting", "the", "candidate", "of", "the", "All", "Progressives", "Congress", ",", "APC", ",", "Chief", "Timipre", "Sylvain", "in", "the", "January", "9", "rescheduled", "governorship", "election", "in", "Bayelsa", "State", ",", "describing", "the", "purported", "meeting", "as", "untrue", ".", "\n", "Speaking", "at", "a", "media", "roundtable", "in", "Port", "Harcourt", ",", "Rivers", "State", "on", "Sunday", ",", "the", "group", "'", "s", "President", ",", "Dr", ".", "Bright", "Numofagha", "stated", "that", "Mrs", ".", "Patience", "Jonathan", ",", "who", "is", "the", "Chair", "of", "the", "group", "'", "s", "board", "of", "trustees", "at", "no", "time", "contemplated", "giving", "any", "kind", "of", "support", "to", "the", "Bayelsa", "APC", "governorship", "candidate", ",", "describing", "the", "rumoured", "support", "and", "meeting", "with", "Chief", "Ateke", "Tom", "led", "former", "militants", "group", "as", "\"", "ridiculous", "and", "unfounded", "\"", ".", "\n", "He", "stated", "that", "those", "peddling", "the", "'", "falsehood", "'", "should", "have", "known", "that", "it", "was", "impossible", "for", "Mrs", "Jonathan", "to", "support", "any", "other", "candidate", "against", "the", "choice", "of", "her", "husband", ",", "Dr", ".", "Goodluck", "Ebele", "Jonathan", ",", "in", "his", "home", "State", "of", "Bayelsa", ",", "other", "than", "the", "Peoples", "Democratic", "Party", ",", "PDP", "'", "s", "flagbearer", ",", "Governor", "Henry", "Seriake", "Dickson", ".", "\n", "The", "group", ",", "therefore", ",", "urged", "the", "general", "public", ",", "to", "disregard", "the", "rumoured", "endorsement", "of", "Chief", "Timipre", "Sylva", "by", "Dame", "Patience", "Jonathan", ",", "as", "it", "described", "it", "as", "the", "desperate", "attempt", "by", "the", "APC", "in", "Bayelsa", "State", "and", "its", "candidate", "to", "ride", "on", "the", "goodwill", "of", "the", "Jonathans", "in", "Bayelsa", "State", ",", "to", "manipulate", "the", "outcome", "of", "the", "supplementary", "governorship", "election", "in", "the", "State", ",", "scheduled", "for", "the", "9th", "of", "January", ",", "2016", ".", "\n", "The", "group", "advised", "Chief", "Timipre", "Sylva", "to", "accept", "the", "decision", "of", "the", "people", "of", "Bayelsa", "State", ",", "as", "expressed", "during", "the", "December", "5th", "2015", "election", ",", "where", "Governor", "Dickson", "currently", "maintains", "a", "clear", "lead", "in", "six", "of", "the", "seven", "local", "governments", ",", "where", "results", "have", "already", "been", "declared", "in", "the", "election", ".", "\n", "Dr", ".", "Numofagha", "also", "urged", "the", "people", "of", "Bayelsa", ",", "to", "remain", "peaceful", "and", "law", "abiding", "and", "never", "succumb", "to", "any", "form", "of", "violence", "and", "intimidation", "that", "the", "expected", "engagements", "of", "known", "Militants", "and", "political", "thugs", ",", "by", "the", "Bayelsa", "State", "APC", ",", "may", "have", "been", "intended", "to", "achieve", ".", "\n", "He", "further", "noted", "that", "former", "President", "Goodluck", "Jonathan", "and", "his", "family", ",", "including", "the", "wife", ",", "are", "currently", "on", "vacation", "in", "the", "United", "Kingdom", ",", "hence", "there", "was", "no", "way", "Mrs", "Patience", "could", "have", "attended", "any", "political", "meeting", "the", "last", "few", "days", ".", "\n", "Copyright", "\n", "2016", "Leadership", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 622, "end": 623, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "AllAfrica", "context": {"start": 622, "end": 623, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 9, "end": 10, "input": "tokens", "text": "\n Nigeria : Dame Patience Jonathan Not Working for Sylva ' "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Jonathan", "context": {"start": 9, "end": 10, "input": "tokens", "text": "\n Nigeria : Dame Patience Jonathan Not Working for Sylva ' "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 13, "end": 14, "input": "tokens", "text": "Patience Jonathan Not Working for Sylva ' s Re - Election "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Sylva", "context": {"start": 13, "end": 14, "input": "tokens", "text": "Patience Jonathan Not Working for Sylva ' s Re - Election "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 22, "end": 24, "input": "tokens", "text": "- Election . \n By Blessing Obineche \n The President , Rivers "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Blessing Obineche", "context": {"start": 22, "end": 24, "input": "tokens", "text": "- Election . \n By Blessing Obineche \n The President , Rivers "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 49, "end": 51, "input": "tokens", "text": "that wife of former President Goodluck Jonathan , Dr . Mrs Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Goodluck Jonathan", "context": {"start": 49, "end": 51, "input": "tokens", "text": "that wife of former President Goodluck Jonathan , Dr . Mrs Patience "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 52, "end": 53, "input": "tokens", "text": "former President Goodluck Jonathan , Dr . Mrs Patience Jonathan recently "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Dr", "context": {"start": 52, "end": 53, "input": "tokens", "text": "former President Goodluck Jonathan , Dr . Mrs Patience Jonathan recently "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 56, "end": 57, "input": "tokens", "text": ", Dr . Mrs Patience Jonathan recently met former Niger Delta "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Jonathan", "context": {"start": 56, "end": 57, "input": "tokens", "text": ", Dr . Mrs Patience Jonathan recently met former Niger Delta "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 66, "end": 68, "input": "tokens", "text": "Delta Militants headed by Chief Ateke Tom in Okrika , Rivers State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Ateke Tom", "context": {"start": 66, "end": 68, "input": "tokens", "text": "Delta Militants headed by Chief Ateke Tom in Okrika , Rivers State "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 89, "end": 91, "input": "tokens", "text": "Congress , APC , Chief Timipre Sylvain in the January 9 rescheduled "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Timipre Sylvain", "context": {"start": 89, "end": 91, "input": "tokens", "text": "Congress , APC , Chief Timipre Sylvain in the January 9 rescheduled "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 132, "end": 134, "input": "tokens", "text": "s President , Dr . Bright Numofagha stated that Mrs . Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bright Numofagha", "context": {"start": 132, "end": 134, "input": "tokens", "text": "s President , Dr . Bright Numofagha stated that Mrs . Patience "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 136, "end": 137, "input": "tokens", "text": ". Bright Numofagha stated that Mrs . Patience Jonathan , who "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Mrs", "context": {"start": 136, "end": 137, "input": "tokens", "text": ". Bright Numofagha stated that Mrs . Patience Jonathan , who "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 139, "end": 140, "input": "tokens", "text": "stated that Mrs . Patience Jonathan , who is the Chair "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Jonathan", "context": {"start": 139, "end": 140, "input": "tokens", "text": "stated that Mrs . Patience Jonathan , who is the Chair "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 177, "end": 179, "input": "tokens", "text": "support and meeting with Chief Ateke Tom led former militants group as "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Ateke Tom", "context": {"start": 177, "end": 179, "input": "tokens", "text": "support and meeting with Chief Ateke Tom led former militants group as "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 208, "end": 210, "input": "tokens", "text": "that it was impossible for Mrs Jonathan to support any other candidate "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Mrs Jonathan", "context": {"start": 208, "end": 210, "input": "tokens", "text": "that it was impossible for Mrs Jonathan to support any other candidate "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 222, "end": 223, "input": "tokens", "text": "choice of her husband , Dr . Goodluck Ebele Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Dr", "context": {"start": 222, "end": 223, "input": "tokens", "text": "choice of her husband , Dr . Goodluck Ebele Jonathan , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 224, "end": 227, "input": "tokens", "text": "her husband , Dr . Goodluck Ebele Jonathan , in his home State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Goodluck Ebele Jonathan", "context": {"start": 224, "end": 227, "input": "tokens", "text": "her husband , Dr . Goodluck Ebele Jonathan , in his home State "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 248, "end": 251, "input": "tokens", "text": "' s flagbearer , Governor Henry Seriake Dickson . \n The group , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Henry Seriake Dickson", "context": {"start": 248, "end": 251, "input": "tokens", "text": "' s flagbearer , Governor Henry Seriake Dickson . \n The group , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 270, "end": 272, "input": "tokens", "text": "the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Timipre Sylva", "context": {"start": 270, "end": 272, "input": "tokens", "text": "the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 275, "end": 276, "input": "tokens", "text": "Timipre Sylva by Dame Patience Jonathan , as it described it "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Jonathan", "context": {"start": 275, "end": 276, "input": "tokens", "text": "Timipre Sylva by Dame Patience Jonathan , as it described it "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 356, "end": 358, "input": "tokens", "text": "5th 2015 election , where Governor Dickson currently maintains a clear lead "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Governor Dickson", "context": {"start": 356, "end": 358, "input": "tokens", "text": "5th 2015 election , where Governor Dickson currently maintains a clear lead "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 384, "end": 385, "input": "tokens", "text": "election . \n Dr . Numofagha also urged the people of "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Numofagha", "context": {"start": 384, "end": 385, "input": "tokens", "text": "election . \n Dr . Numofagha also urged the people of "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 439, "end": 441, "input": "tokens", "text": "further noted that former President Goodluck Jonathan and his family , including "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Goodluck Jonathan", "context": {"start": 439, "end": 441, "input": "tokens", "text": "further noted that former President Goodluck Jonathan and his family , including "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 60, "end": 63, "input": "tokens", "text": "Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Niger Delta Militants", "context": {"start": 60, "end": 63, "input": "tokens", "text": "Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 592, "end": 593, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "AllAfrica", "context": {"start": 592, "end": 593, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 28, "end": 31, "input": "tokens", "text": "Obineche \n The President , Rivers Patriotic Vanguard , has said it is "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Rivers Patriotic Vanguard", "context": {"start": 28, "end": 31, "input": "tokens", "text": "Obineche \n The President , Rivers Patriotic Vanguard , has said it is "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 71, "end": 73, "input": "tokens", "text": "Ateke Tom in Okrika , Rivers State to discuss modalities of supporting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Rivers State", "context": {"start": 71, "end": 73, "input": "tokens", "text": "Ateke Tom in Okrika , Rivers State to discuss modalities of supporting "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 82, "end": 85, "input": "tokens", "text": "supporting the candidate of the All Progressives Congress , APC , Chief Timipre "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "All Progressives Congress", "context": {"start": 82, "end": 85, "input": "tokens", "text": "supporting the candidate of the All Progressives Congress , APC , Chief Timipre "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 86, "end": 87, "input": "tokens", "text": "the All Progressives Congress , APC , Chief Timipre Sylvain in "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "APC", "context": {"start": 86, "end": 87, "input": "tokens", "text": "the All Progressives Congress , APC , Chief Timipre Sylvain in "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 119, "end": 121, "input": "tokens", "text": "roundtable in Port Harcourt , Rivers State on Sunday , the group "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Rivers State", "context": {"start": 119, "end": 121, "input": "tokens", "text": "roundtable in Port Harcourt , Rivers State on Sunday , the group "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 130, "end": 131, "input": "tokens", "text": "group ' s President , Dr . Bright Numofagha stated that "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Dr", "context": {"start": 130, "end": 131, "input": "tokens", "text": "group ' s President , Dr . Bright Numofagha stated that "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 143, "end": 146, "input": "tokens", "text": "Patience Jonathan , who is the Chair of the group ' s board "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "the Chair of", "context": {"start": 143, "end": 146, "input": "tokens", "text": "Patience Jonathan , who is the Chair of the group ' s board "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 231, "end": 234, "input": "tokens", "text": "Jonathan , in his home State of Bayelsa , other than the Peoples "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "State of Bayelsa", "context": {"start": 231, "end": 234, "input": "tokens", "text": "Jonathan , in his home State of Bayelsa , other than the Peoples "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 237, "end": 241, "input": "tokens", "text": "of Bayelsa , other than the Peoples Democratic Party , PDP ' s flagbearer "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "the Peoples Democratic Party", "context": {"start": 237, "end": 241, "input": "tokens", "text": "of Bayelsa , other than the Peoples Democratic Party , PDP ' s flagbearer "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 242, "end": 243, "input": "tokens", "text": "the Peoples Democratic Party , PDP ' s flagbearer , Governor "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "PDP", "context": {"start": 242, "end": 243, "input": "tokens", "text": "the Peoples Democratic Party , PDP ' s flagbearer , Governor "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 287, "end": 288, "input": "tokens", "text": "the desperate attempt by the APC in Bayelsa State and its "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "APC", "context": {"start": 287, "end": 288, "input": "tokens", "text": "the desperate attempt by the APC in Bayelsa State and its "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 317, "end": 318, "input": "tokens", "text": "supplementary governorship election in the State , scheduled for the 9th "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "State", "context": {"start": 317, "end": 318, "input": "tokens", "text": "supplementary governorship election in the State , scheduled for the 9th "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 414, "end": 415, "input": "tokens", "text": "the expected engagements of known Militants and political thugs , by "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Militants", "context": {"start": 414, "end": 415, "input": "tokens", "text": "the expected engagements of known Militants and political thugs , by "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 420, "end": 424, "input": "tokens", "text": "and political thugs , by the Bayelsa State APC , may have been intended "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "the Bayelsa State APC", "context": {"start": 420, "end": 424, "input": "tokens", "text": "and political thugs , by the Bayelsa State APC , may have been intended "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 486, "end": 487, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Distributed", "context": {"start": 486, "end": 487, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 488, "end": 491, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "AllAfrica Global Media", "context": {"start": 488, "end": 491, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 4 January 2016 \n Nigeria : Dame Patience Jonathan Not "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 4 January 2016 \n Nigeria : Dame Patience Jonathan Not "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 69, "end": 70, "input": "tokens", "text": "by Chief Ateke Tom in Okrika , Rivers State to discuss "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Okrika", "context": {"start": 69, "end": 70, "input": "tokens", "text": "by Chief Ateke Tom in Okrika , Rivers State to discuss "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 99, "end": 101, "input": "tokens", "text": "9 rescheduled governorship election in Bayelsa State , describing the purported meeting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa State", "context": {"start": 99, "end": 101, "input": "tokens", "text": "9 rescheduled governorship election in Bayelsa State , describing the purported meeting "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 116, "end": 118, "input": "tokens", "text": "at a media roundtable in Port Harcourt , Rivers State on Sunday "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Port Harcourt", "context": {"start": 116, "end": 118, "input": "tokens", "text": "at a media roundtable in Port Harcourt , Rivers State on Sunday "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 164, "end": 166, "input": "tokens", "text": "kind of support to the Bayelsa APC governorship candidate , describing the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa APC", "context": {"start": 164, "end": 166, "input": "tokens", "text": "kind of support to the Bayelsa APC governorship candidate , describing the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 289, "end": 291, "input": "tokens", "text": "attempt by the APC in Bayelsa State and its candidate to ride "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa State", "context": {"start": 289, "end": 291, "input": "tokens", "text": "attempt by the APC in Bayelsa State and its candidate to ride "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 303, "end": 305, "input": "tokens", "text": "goodwill of the Jonathans in Bayelsa State , to manipulate the outcome "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa State", "context": {"start": 303, "end": 305, "input": "tokens", "text": "goodwill of the Jonathans in Bayelsa State , to manipulate the outcome "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 343, "end": 345, "input": "tokens", "text": "decision of the people of Bayelsa State , as expressed during the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa State", "context": {"start": 343, "end": 345, "input": "tokens", "text": "decision of the people of Bayelsa State , as expressed during the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 390, "end": 391, "input": "tokens", "text": "also urged the people of Bayelsa , to remain peaceful and "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa", "context": {"start": 390, "end": 391, "input": "tokens", "text": "also urged the people of Bayelsa , to remain peaceful and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 454, "end": 457, "input": "tokens", "text": "are currently on vacation in the United Kingdom , hence there was no "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "the United Kingdom", "context": {"start": 454, "end": 457, "input": "tokens", "text": "are currently on vacation in the United Kingdom , hence there was no "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 301, "end": 302, "input": "tokens", "text": "on the goodwill of the Jonathans in Bayelsa State , to "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Jonathans", "context": {"start": 301, "end": 302, "input": "tokens", "text": "on the goodwill of the Jonathans in Bayelsa State , to "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/04/201601040034.html"}, "content_strict": {"text": " \n By Blessing Obineche \n The President, Rivers Patriotic Vanguard, has said it is a figment of imagination of those who alleged that wife of former President Goodluck Jonathan, Dr. Mrs Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom in Okrika, Rivers State to discuss modalities of supporting the candidate of the All Progressives Congress, APC, Chief Timipre Sylvain in the January 9 rescheduled governorship election in Bayelsa State, describing the purported meeting as untrue. \n Speaking at a media roundtable in Port Harcourt, Rivers State on Sunday, the group's President, Dr. Bright Numofagha stated that Mrs. Patience Jonathan, who is the Chair of the group's board of trustees at no time contemplated giving any kind of support to the Bayelsa APC governorship candidate, describing the rumoured support and meeting with Chief Ateke Tom led former militants group as \"ridiculous and unfounded\". \n He stated that those peddling the 'falsehood' should have known that it was impossible for Mrs Jonathan to support any other candidate against the choice of her husband, Dr. Goodluck Ebele Jonathan, in his home State of Bayelsa, other than the Peoples Democratic Party, PDP's flagbearer, Governor Henry Seriake Dickson. \n The group, therefore, urged the general public, to disregard the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan, as it described it as the desperate attempt by the APC in Bayelsa State and its candidate to ride on the goodwill of the Jonathans in Bayelsa State, to manipulate the outcome of the supplementary governorship election in the State, scheduled for the 9th of January, 2016. \n The group advised Chief Timipre Sylva to accept the decision of the people of Bayelsa State, as expressed during the December 5th 2015 election, where Governor Dickson currently maintains a clear lead in six of the seven local governments, where results have already been declared in the election. \n Dr. Numofagha also urged the people of Bayelsa, to remain peaceful and law abiding and never succumb to any form of violence and intimidation that the expected engagements of known Militants and political thugs, by the Bayelsa State APC, may have been intended to achieve. \n He further noted that former President Goodluck Jonathan and his family, including the wife, are currently on vacation in the United Kingdom, hence there was no way Mrs Patience could have attended any political meeting the last few days. \n ", "simple_tokens": ["\n", "by", "blessing", "obineche", "\n", "the", "president", ",", "rivers", "patriotic", "vanguard", ",", "has", "said", "it", "is", "a", "figment", "of", "imagination", "of", "those", "who", "alleged", "that", "wife", "of", "former", "president", "goodluck", "jonathan", ",", "dr", ".", "mrs", "patience", "jonathan", "recently", "met", "former", "niger", "delta", "militants", "headed", "by", "chief", "ateke", "tom", "in", "okrika", ",", "rivers", "state", "to", "discuss", "modalities", "of", "supporting", "the", "candidate", "of", "the", "all", "progressives", "congress", ",", "apc", ",", "chief", "timipre", "sylvain", "in", "the", "january", "9", "rescheduled", "governorship", "election", "in", "bayelsa", "state", ",", "describing", "the", "purported", "meeting", "as", "untrue", ".", "\n", "speaking", "at", "a", "media", "roundtable", "in", "port", "harcourt", ",", "rivers", "state", "on", "sunday", ",", "the", "group", "'", "s", "president", ",", "dr", ".", "bright", "numofagha", "stated", "that", "mrs", ".", "patience", "jonathan", ",", "who", "is", "the", "chair", "of", "the", "group", "'", "s", "board", "of", "trustees", "at", "no", "time", "contemplated", "giving", "any", "kind", "of", "support", "to", "the", "bayelsa", "apc", "governorship", "candidate", ",", "describing", "the", "rumoured", "support", "and", "meeting", "with", "chief", "ateke", "tom", "led", "former", "militants", "group", "as", "\"", "ridiculous", "and", "unfounded", "\"", ".", "\n", "he", "stated", "that", "those", "peddling", "the", "'", "falsehood", "'", "should", "have", "known", "that", "it", "was", "impossible", "for", "mrs", "jonathan", "to", "support", "any", "other", "candidate", "against", "the", "choice", "of", "her", "husband", ",", "dr", ".", "goodluck", "ebele", "jonathan", ",", "in", "his", "home", "state", "of", "bayelsa", ",", "other", "than", "the", "peoples", "democratic", "party", ",", "pdp", "'", "s", "flagbearer", ",", "governor", "henry", "seriake", "dickson", ".", "\n", "the", "group", ",", "therefore", ",", "urged", "the", "general", "public", ",", "to", "disregard", "the", "rumoured", "endorsement", "of", "chief", "timipre", "sylva", "by", "dame", "patience", "jonathan", ",", "as", "it", "described", "it", "as", "the", "desperate", "attempt", "by", "the", "apc", "in", "bayelsa", "state", "and", "its", "candidate", "to", "ride", "on", "the", "goodwill", "of", "the", "jonathans", "in", "bayelsa", "state", ",", "to", "manipulate", "the", "outcome", "of", "the", "supplementary", "governorship", "election", "in", "the", "state", ",", "scheduled", "for", "the", "9th", "of", "january", ",", "2016", ".", "\n", "the", "group", "advised", "chief", "timipre", "sylva", "to", "accept", "the", "decision", "of", "the", "people", "of", "bayelsa", "state", ",", "as", "expressed", "during", "the", "december", "5th", "2015", "election", ",", "where", "governor", "dickson", "currently", "maintains", "a", "clear", "lead", "in", "six", "of", "the", "seven", "local", "governments", ",", "where", "results", "have", "already", "been", "declared", "in", "the", "election", ".", "\n", "dr", ".", "numofagha", "also", "urged", "the", "people", "of", "bayelsa", ",", "to", "remain", "peaceful", "and", "law", "abiding", "and", "never", "succumb", "to", "any", "form", "of", "violence", "and", "intimidation", "that", "the", "expected", "engagements", "of", "known", "militants", "and", "political", "thugs", ",", "by", "the", "bayelsa", "state", "apc", ",", "may", "have", "been", "intended", "to", "achieve", ".", "\n", "he", "further", "noted", "that", "former", "president", "goodluck", "jonathan", "and", "his", "family", ",", "including", "the", "wife", ",", "are", "currently", "on", "vacation", "in", "the", "united", "kingdom", ",", "hence", "there", "was", "no", "way", "mrs", "patience", "could", "have", "attended", "any", "political", "meeting", "the", "last", "few", "days", ".", "\n"], "simple_tokens_original_case": ["\n", "By", "Blessing", "Obineche", "\n", "The", "President", ",", "Rivers", "Patriotic", "Vanguard", ",", "has", "said", "it", "is", "a", "figment", "of", "imagination", "of", "those", "who", "alleged", "that", "wife", "of", "former", "President", "Goodluck", "Jonathan", ",", "Dr", ".", "Mrs", "Patience", "Jonathan", "recently", "met", "former", "Niger", "Delta", "Militants", "headed", "by", "Chief", "Ateke", "Tom", "in", "Okrika", ",", "Rivers", "State", "to", "discuss", "modalities", "of", "supporting", "the", "candidate", "of", "the", "All", "Progressives", "Congress", ",", "APC", ",", "Chief", "Timipre", "Sylvain", "in", "the", "January", "9", "rescheduled", "governorship", "election", "in", "Bayelsa", "State", ",", "describing", "the", "purported", "meeting", "as", "untrue", ".", "\n", "Speaking", "at", "a", "media", "roundtable", "in", "Port", "Harcourt", ",", "Rivers", "State", "on", "Sunday", ",", "the", "group", "'", "s", "President", ",", "Dr", ".", "Bright", "Numofagha", "stated", "that", "Mrs", ".", "Patience", "Jonathan", ",", "who", "is", "the", "Chair", "of", "the", "group", "'", "s", "board", "of", "trustees", "at", "no", "time", "contemplated", "giving", "any", "kind", "of", "support", "to", "the", "Bayelsa", "APC", "governorship", "candidate", ",", "describing", "the", "rumoured", "support", "and", "meeting", "with", "Chief", "Ateke", "Tom", "led", "former", "militants", "group", "as", "\"", "ridiculous", "and", "unfounded", "\"", ".", "\n", "He", "stated", "that", "those", "peddling", "the", "'", "falsehood", "'", "should", "have", "known", "that", "it", "was", "impossible", "for", "Mrs", "Jonathan", "to", "support", "any", "other", "candidate", "against", "the", "choice", "of", "her", "husband", ",", "Dr", ".", "Goodluck", "Ebele", "Jonathan", ",", "in", "his", "home", "State", "of", "Bayelsa", ",", "other", "than", "the", "Peoples", "Democratic", "Party", ",", "PDP", "'", "s", "flagbearer", ",", "Governor", "Henry", "Seriake", "Dickson", ".", "\n", "The", "group", ",", "therefore", ",", "urged", "the", "general", "public", ",", "to", "disregard", "the", "rumoured", "endorsement", "of", "Chief", "Timipre", "Sylva", "by", "Dame", "Patience", "Jonathan", ",", "as", "it", "described", "it", "as", "the", "desperate", "attempt", "by", "the", "APC", "in", "Bayelsa", "State", "and", "its", "candidate", "to", "ride", "on", "the", "goodwill", "of", "the", "Jonathans", "in", "Bayelsa", "State", ",", "to", "manipulate", "the", "outcome", "of", "the", "supplementary", "governorship", "election", "in", "the", "State", ",", "scheduled", "for", "the", "9th", "of", "January", ",", "2016", ".", "\n", "The", "group", "advised", "Chief", "Timipre", "Sylva", "to", "accept", "the", "decision", "of", "the", "people", "of", "Bayelsa", "State", ",", "as", "expressed", "during", "the", "December", "5th", "2015", "election", ",", "where", "Governor", "Dickson", "currently", "maintains", "a", "clear", "lead", "in", "six", "of", "the", "seven", "local", "governments", ",", "where", "results", "have", "already", "been", "declared", "in", "the", "election", ".", "\n", "Dr", ".", "Numofagha", "also", "urged", "the", "people", "of", "Bayelsa", ",", "to", "remain", "peaceful", "and", "law", "abiding", "and", "never", "succumb", "to", "any", "form", "of", "violence", "and", "intimidation", "that", "the", "expected", "engagements", "of", "known", "Militants", "and", "political", "thugs", ",", "by", "the", "Bayelsa", "State", "APC", ",", "may", "have", "been", "intended", "to", "achieve", ".", "\n", "He", "further", "noted", "that", "former", "President", "Goodluck", "Jonathan", "and", "his", "family", ",", "including", "the", "wife", ",", "are", "currently", "on", "vacation", "in", "the", "United", "Kingdom", ",", "hence", "there", "was", "no", "way", "Mrs", "Patience", "could", "have", "attended", "any", "political", "meeting", "the", "last", "few", "days", ".", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 8, "end": 11, "input": "tokens", "text": "Obineche \n The President , Rivers Patriotic Vanguard , has said it is "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Rivers Patriotic Vanguard", "context": {"start": 8, "end": 11, "input": "tokens", "text": "Obineche \n The President , Rivers Patriotic Vanguard , has said it is "}}, {"origin": {"segment": "content_strict", "context": {"start": 51, "end": 53, "input": "tokens", "text": "Ateke Tom in Okrika , Rivers State to discuss modalities of supporting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Rivers State", "context": {"start": 51, "end": 53, "input": "tokens", "text": "Ateke Tom in Okrika , Rivers State to discuss modalities of supporting "}}, {"origin": {"segment": "content_strict", "context": {"start": 62, "end": 65, "input": "tokens", "text": "supporting the candidate of the All Progressives Congress , APC , Chief Timipre "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "All Progressives Congress", "context": {"start": 62, "end": 65, "input": "tokens", "text": "supporting the candidate of the All Progressives Congress , APC , Chief Timipre "}}, {"origin": {"segment": "content_strict", "context": {"start": 66, "end": 67, "input": "tokens", "text": "the All Progressives Congress , APC , Chief Timipre Sylvain in "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "APC", "context": {"start": 66, "end": 67, "input": "tokens", "text": "the All Progressives Congress , APC , Chief Timipre Sylvain in "}}, {"origin": {"segment": "content_strict", "context": {"start": 99, "end": 101, "input": "tokens", "text": "roundtable in Port Harcourt , Rivers State on Sunday , the group "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Rivers State", "context": {"start": 99, "end": 101, "input": "tokens", "text": "roundtable in Port Harcourt , Rivers State on Sunday , the group "}}, {"origin": {"segment": "content_strict", "context": {"start": 110, "end": 111, "input": "tokens", "text": "group ' s President , Dr . Bright Numofagha stated that "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Dr", "context": {"start": 110, "end": 111, "input": "tokens", "text": "group ' s President , Dr . Bright Numofagha stated that "}}, {"origin": {"segment": "content_strict", "context": {"start": 123, "end": 126, "input": "tokens", "text": "Patience Jonathan , who is the Chair of the group ' s board "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "the Chair of", "context": {"start": 123, "end": 126, "input": "tokens", "text": "Patience Jonathan , who is the Chair of the group ' s board "}}, {"origin": {"segment": "content_strict", "context": {"start": 211, "end": 214, "input": "tokens", "text": "Jonathan , in his home State of Bayelsa , other than the Peoples "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "State of Bayelsa", "context": {"start": 211, "end": 214, "input": "tokens", "text": "Jonathan , in his home State of Bayelsa , other than the Peoples "}}, {"origin": {"segment": "content_strict", "context": {"start": 217, "end": 221, "input": "tokens", "text": "of Bayelsa , other than the Peoples Democratic Party , PDP ' s flagbearer "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "the Peoples Democratic Party", "context": {"start": 217, "end": 221, "input": "tokens", "text": "of Bayelsa , other than the Peoples Democratic Party , PDP ' s flagbearer "}}, {"origin": {"segment": "content_strict", "context": {"start": 222, "end": 223, "input": "tokens", "text": "the Peoples Democratic Party , PDP ' s flagbearer , Governor "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "PDP", "context": {"start": 222, "end": 223, "input": "tokens", "text": "the Peoples Democratic Party , PDP ' s flagbearer , Governor "}}, {"origin": {"segment": "content_strict", "context": {"start": 267, "end": 268, "input": "tokens", "text": "the desperate attempt by the APC in Bayelsa State and its "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "APC", "context": {"start": 267, "end": 268, "input": "tokens", "text": "the desperate attempt by the APC in Bayelsa State and its "}}, {"origin": {"segment": "content_strict", "context": {"start": 297, "end": 298, "input": "tokens", "text": "supplementary governorship election in the State , scheduled for the 9th "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "State", "context": {"start": 297, "end": 298, "input": "tokens", "text": "supplementary governorship election in the State , scheduled for the 9th "}}, {"origin": {"segment": "content_strict", "context": {"start": 394, "end": 395, "input": "tokens", "text": "the expected engagements of known Militants and political thugs , by "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Militants", "context": {"start": 394, "end": 395, "input": "tokens", "text": "the expected engagements of known Militants and political thugs , by "}}, {"origin": {"segment": "content_strict", "context": {"start": 400, "end": 404, "input": "tokens", "text": "and political thugs , by the Bayelsa State APC , may have been intended "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "the Bayelsa State APC", "context": {"start": 400, "end": 404, "input": "tokens", "text": "and political thugs , by the Bayelsa State APC , may have been intended "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 49, "end": 50, "input": "tokens", "text": "by Chief Ateke Tom in Okrika , Rivers State to discuss "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Okrika", "context": {"start": 49, "end": 50, "input": "tokens", "text": "by Chief Ateke Tom in Okrika , Rivers State to discuss "}}, {"origin": {"segment": "content_strict", "context": {"start": 79, "end": 81, "input": "tokens", "text": "9 rescheduled governorship election in Bayelsa State , describing the purported meeting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa State", "context": {"start": 79, "end": 81, "input": "tokens", "text": "9 rescheduled governorship election in Bayelsa State , describing the purported meeting "}}, {"origin": {"segment": "content_strict", "context": {"start": 96, "end": 98, "input": "tokens", "text": "at a media roundtable in Port Harcourt , Rivers State on Sunday "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Port Harcourt", "context": {"start": 96, "end": 98, "input": "tokens", "text": "at a media roundtable in Port Harcourt , Rivers State on Sunday "}}, {"origin": {"segment": "content_strict", "context": {"start": 144, "end": 146, "input": "tokens", "text": "kind of support to the Bayelsa APC governorship candidate , describing the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa APC", "context": {"start": 144, "end": 146, "input": "tokens", "text": "kind of support to the Bayelsa APC governorship candidate , describing the "}}, {"origin": {"segment": "content_strict", "context": {"start": 269, "end": 271, "input": "tokens", "text": "attempt by the APC in Bayelsa State and its candidate to ride "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa State", "context": {"start": 269, "end": 271, "input": "tokens", "text": "attempt by the APC in Bayelsa State and its candidate to ride "}}, {"origin": {"segment": "content_strict", "context": {"start": 283, "end": 285, "input": "tokens", "text": "goodwill of the Jonathans in Bayelsa State , to manipulate the outcome "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa State", "context": {"start": 283, "end": 285, "input": "tokens", "text": "goodwill of the Jonathans in Bayelsa State , to manipulate the outcome "}}, {"origin": {"segment": "content_strict", "context": {"start": 323, "end": 325, "input": "tokens", "text": "decision of the people of Bayelsa State , as expressed during the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa State", "context": {"start": 323, "end": 325, "input": "tokens", "text": "decision of the people of Bayelsa State , as expressed during the "}}, {"origin": {"segment": "content_strict", "context": {"start": 370, "end": 371, "input": "tokens", "text": "also urged the people of Bayelsa , to remain peaceful and "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bayelsa", "context": {"start": 370, "end": 371, "input": "tokens", "text": "also urged the people of Bayelsa , to remain peaceful and "}}, {"origin": {"segment": "content_strict", "context": {"start": 434, "end": 437, "input": "tokens", "text": "are currently on vacation in the United Kingdom , hence there was no "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "the United Kingdom", "context": {"start": 434, "end": 437, "input": "tokens", "text": "are currently on vacation in the United Kingdom , hence there was no "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Blessing Obineche \n The President , Rivers "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Blessing Obineche", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Blessing Obineche \n The President , Rivers "}}, {"origin": {"segment": "content_strict", "context": {"start": 29, "end": 31, "input": "tokens", "text": "that wife of former President Goodluck Jonathan , Dr . Mrs Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Goodluck Jonathan", "context": {"start": 29, "end": 31, "input": "tokens", "text": "that wife of former President Goodluck Jonathan , Dr . Mrs Patience "}}, {"origin": {"segment": "content_strict", "context": {"start": 32, "end": 33, "input": "tokens", "text": "former President Goodluck Jonathan , Dr . Mrs Patience Jonathan recently "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Dr", "context": {"start": 32, "end": 33, "input": "tokens", "text": "former President Goodluck Jonathan , Dr . Mrs Patience Jonathan recently "}}, {"origin": {"segment": "content_strict", "context": {"start": 36, "end": 37, "input": "tokens", "text": ", Dr . Mrs Patience Jonathan recently met former Niger Delta "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Jonathan", "context": {"start": 36, "end": 37, "input": "tokens", "text": ", Dr . Mrs Patience Jonathan recently met former Niger Delta "}}, {"origin": {"segment": "content_strict", "context": {"start": 46, "end": 48, "input": "tokens", "text": "Delta Militants headed by Chief Ateke Tom in Okrika , Rivers State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Ateke Tom", "context": {"start": 46, "end": 48, "input": "tokens", "text": "Delta Militants headed by Chief Ateke Tom in Okrika , Rivers State "}}, {"origin": {"segment": "content_strict", "context": {"start": 69, "end": 71, "input": "tokens", "text": "Congress , APC , Chief Timipre Sylvain in the January 9 rescheduled "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Timipre Sylvain", "context": {"start": 69, "end": 71, "input": "tokens", "text": "Congress , APC , Chief Timipre Sylvain in the January 9 rescheduled "}}, {"origin": {"segment": "content_strict", "context": {"start": 112, "end": 114, "input": "tokens", "text": "s President , Dr . Bright Numofagha stated that Mrs . Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Bright Numofagha", "context": {"start": 112, "end": 114, "input": "tokens", "text": "s President , Dr . Bright Numofagha stated that Mrs . Patience "}}, {"origin": {"segment": "content_strict", "context": {"start": 116, "end": 117, "input": "tokens", "text": ". Bright Numofagha stated that Mrs . Patience Jonathan , who "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Mrs", "context": {"start": 116, "end": 117, "input": "tokens", "text": ". Bright Numofagha stated that Mrs . Patience Jonathan , who "}}, {"origin": {"segment": "content_strict", "context": {"start": 119, "end": 120, "input": "tokens", "text": "stated that Mrs . Patience Jonathan , who is the Chair "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Jonathan", "context": {"start": 119, "end": 120, "input": "tokens", "text": "stated that Mrs . Patience Jonathan , who is the Chair "}}, {"origin": {"segment": "content_strict", "context": {"start": 157, "end": 159, "input": "tokens", "text": "support and meeting with Chief Ateke Tom led former militants group as "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Ateke Tom", "context": {"start": 157, "end": 159, "input": "tokens", "text": "support and meeting with Chief Ateke Tom led former militants group as "}}, {"origin": {"segment": "content_strict", "context": {"start": 188, "end": 190, "input": "tokens", "text": "that it was impossible for Mrs Jonathan to support any other candidate "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Mrs Jonathan", "context": {"start": 188, "end": 190, "input": "tokens", "text": "that it was impossible for Mrs Jonathan to support any other candidate "}}, {"origin": {"segment": "content_strict", "context": {"start": 202, "end": 203, "input": "tokens", "text": "choice of her husband , Dr . Goodluck Ebele Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Dr", "context": {"start": 202, "end": 203, "input": "tokens", "text": "choice of her husband , Dr . Goodluck Ebele Jonathan , "}}, {"origin": {"segment": "content_strict", "context": {"start": 204, "end": 207, "input": "tokens", "text": "her husband , Dr . Goodluck Ebele Jonathan , in his home State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Goodluck Ebele Jonathan", "context": {"start": 204, "end": 207, "input": "tokens", "text": "her husband , Dr . Goodluck Ebele Jonathan , in his home State "}}, {"origin": {"segment": "content_strict", "context": {"start": 228, "end": 231, "input": "tokens", "text": "' s flagbearer , Governor Henry Seriake Dickson . \n The group , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Henry Seriake Dickson", "context": {"start": 228, "end": 231, "input": "tokens", "text": "' s flagbearer , Governor Henry Seriake Dickson . \n The group , "}}, {"origin": {"segment": "content_strict", "context": {"start": 250, "end": 252, "input": "tokens", "text": "the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Timipre Sylva", "context": {"start": 250, "end": 252, "input": "tokens", "text": "the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan , "}}, {"origin": {"segment": "content_strict", "context": {"start": 255, "end": 256, "input": "tokens", "text": "Timipre Sylva by Dame Patience Jonathan , as it described it "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Jonathan", "context": {"start": 255, "end": 256, "input": "tokens", "text": "Timipre Sylva by Dame Patience Jonathan , as it described it "}}, {"origin": {"segment": "content_strict", "context": {"start": 336, "end": 338, "input": "tokens", "text": "5th 2015 election , where Governor Dickson currently maintains a clear lead "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Governor Dickson", "context": {"start": 336, "end": 338, "input": "tokens", "text": "5th 2015 election , where Governor Dickson currently maintains a clear lead "}}, {"origin": {"segment": "content_strict", "context": {"start": 364, "end": 365, "input": "tokens", "text": "election . \n Dr . Numofagha also urged the people of "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Numofagha", "context": {"start": 364, "end": 365, "input": "tokens", "text": "election . \n Dr . Numofagha also urged the people of "}}, {"origin": {"segment": "content_strict", "context": {"start": 419, "end": 421, "input": "tokens", "text": "further noted that former President Goodluck Jonathan and his family , including "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Goodluck Jonathan", "context": {"start": 419, "end": 421, "input": "tokens", "text": "further noted that former President Goodluck Jonathan and his family , including "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 40, "end": 43, "input": "tokens", "text": "Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Niger Delta Militants", "context": {"start": 40, "end": 43, "input": "tokens", "text": "Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 281, "end": 282, "input": "tokens", "text": "on the goodwill of the Jonathans in Bayelsa State , to "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Jonathans", "context": {"start": 281, "end": 282, "input": "tokens", "text": "on the goodwill of the Jonathans in Bayelsa State , to "}}]}}}}, "title": {"text": " Nigeria: Dame Patience Jonathan Not Working for Sylva's Re-Election. - allAfrica.com ", "simple_tokens": ["nigeria", ":", "dame", "patience", "jonathan", "not", "working", "for", "sylva", "'", "s", "re", "-", "election", ".", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Dame", "Patience", "Jonathan", "Not", "Working", "for", "Sylva", "'", "s", "Re", "-", "Election", ".", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Dame Patience Jonathan Not "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Dame Patience Jonathan Not "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 4, "end": 5, "input": "tokens", "text": "Nigeria : Dame Patience Jonathan Not Working for Sylva ' "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Jonathan", "context": {"start": 4, "end": 5, "input": "tokens", "text": "Nigeria : Dame Patience Jonathan Not Working for Sylva ' "}}, {"origin": {"segment": "title", "context": {"start": 8, "end": 9, "input": "tokens", "text": "Patience Jonathan Not Working for Sylva ' s Re - Election "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "value": "Sylva", "context": {"start": 8, "end": 9, "input": "tokens", "text": "Patience Jonathan Not Working for Sylva ' s Re - Election "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:15.396668", "@etk_process_time": 0.4888448715209961, "@etk_start_time": "2017-11-15T01:34:14.907823"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Dame Patience Jonathan Not Working for Sylva's Re-Election. - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 4 January 2016\n
\n \n \n

\n Nigeria: Dame Patience Jonathan Not Working for Sylva's Re-Election.\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Blessing Obineche\n \n

\n The President, Rivers Patriotic Vanguard, has said it is a figment of imagination of those who alleged that wife of former President Goodluck Jonathan, Dr. Mrs Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom in Okrika, Rivers State to discuss modalities of supporting the candidate of the All Progressives Congress, APC, Chief Timipre Sylvain in the January 9 rescheduled governorship election in Bayelsa State, describing the purported meeting as untrue.\n

\n

\n Speaking at a media roundtable in Port Harcourt, Rivers State on Sunday, the group's President, Dr. Bright Numofagha stated that Mrs. Patience Jonathan, who is the Chair of the group's board of trustees at no time contemplated giving any kind of support to the Bayelsa APC governorship candidate, describing the rumoured support and meeting with Chief Ateke Tom led former militants group as \"ridiculous and unfounded\".\n

\n

\n He stated that those peddling the 'falsehood' should have known that it was impossible for Mrs Jonathan to support any other candidate against the choice of her husband, Dr. Goodluck Ebele Jonathan, in his home State of Bayelsa, other than the Peoples Democratic Party, PDP's flagbearer, Governor Henry Seriake Dickson.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n The group, therefore, urged the general public, to disregard the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan, as it described it as the desperate attempt by the APC in Bayelsa State and its candidate to ride on the goodwill of the Jonathans in Bayelsa State, to manipulate the outcome of the supplementary governorship election in the State, scheduled for the 9th of January, 2016.\n

\n
\n
\n
\n
\n

\n The group advised Chief Timipre Sylva to accept the decision of the people of Bayelsa State, as expressed during the December 5th 2015 election, where Governor Dickson currently maintains a clear lead in six of the seven local governments, where results have already been declared in the election.\n

\n

\n Dr. Numofagha also urged the people of Bayelsa, to remain peaceful and law abiding and never succumb to any form of violence and intimidation that the expected engagements of known Militants and political thugs, by the Bayelsa State APC, may have been intended to achieve.\n

\n

\n He further noted that former President Goodluck Jonathan and his family, including the wife, are currently on vacation in the United Kingdom, hence there was no way Mrs Patience could have attended any political meeting the last few days.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Leadership. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3", "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"} -{"url": "http://www.ce_news_article.org/2016/01/04/201601040035.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 747, "end": 748, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Emmanuel Ugwu \n With the expansion undergone "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Emmanuel Ugwu"}, {"source": {"segment": "content_relaxed", "context": {"start": 19, "end": 21, "input": "tokens", "text": ", Says MD \n By Emmanuel Ugwu \n With the expansion undergone "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Emmanuel Ugwu"}], "key": "emmanuel ugwu", "value": "Emmanuel Ugwu"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 46, "end": 49, "input": "tokens", "text": "director ( MD ) , Dr Chuku Abali had said . \n Speaking "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Chuku Abali"}, {"source": {"segment": "content_relaxed", "context": {"start": 63, "end": 66, "input": "tokens", "text": "director ( MD ) , Dr Chuku Abali had said . \n Speaking "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Chuku Abali"}], "key": "dr chuku abali", "value": "Dr Chuku Abali"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 231, "end": 233, "input": "tokens", "text": "completed next year . \n Dr Abali said that the advanced diagnostic "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Abali"}, {"source": {"segment": "content_strict", "context": {"start": 436, "end": 438, "input": "tokens", "text": "To further improve services , Dr Abali said that management has adopted "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Abali"}, {"source": {"segment": "content_relaxed", "context": {"start": 248, "end": 250, "input": "tokens", "text": "completed next year . \n Dr Abali said that the advanced diagnostic "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Abali"}, {"source": {"segment": "content_relaxed", "context": {"start": 453, "end": 455, "input": "tokens", "text": "To further improve services , Dr Abali said that management has adopted "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Abali"}], "key": "dr abali", "value": "Dr Abali"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 350, "end": 351, "input": "tokens", "text": "Lagos University Teaching Hospital ( LUTH ) was chosen from the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "LUTH"}, {"source": {"segment": "content_relaxed", "context": {"start": 367, "end": 368, "input": "tokens", "text": "Lagos University Teaching Hospital ( LUTH ) was chosen from the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "LUTH"}], "key": "luth", "value": "LUTH"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 359, "end": 361, "input": "tokens", "text": "from the South West and Aminu Kano hospital for the North . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aminu Kano"}, {"source": {"segment": "content_relaxed", "context": {"start": 376, "end": 378, "input": "tokens", "text": "from the South West and Aminu Kano hospital for the North . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aminu Kano"}], "key": "aminu kano", "value": "Aminu Kano"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "method": "rearrange_description"}], "key": "description", "value": " \n By Emmanuel Ugwu \n With the expansion undergone in terms of medical facilities and availability of highly skilled personnel, the Federal Medical Centre (FMC) Umuahia is ripe to be upgraded to a teaching hospital, the medical director (MD), Dr Chuku Abali had said. \n Speaking with journalists on the progress so far recorded and the future plans for the institution, the MD said the FMC which sits on a 77 hectare in the capital city can comfortably be converted into a teaching hospital. This, he hoped would be realized if Michael Okpara University of Agriculture Umudike (MOUAU) eventually gets the nod to run medical programmes, as planned. \n \"FMC is long overdue to become a teaching hospital,\" he asserted, adding that with the level of excellence it has attained, if more public hospitals could be upgraded to create pockets of excellence\" across the country it would curtail the craze for medical tourism by Nigerians,\" he explained. \n He stated that the FMC has continued to expand its services with building of new wards of 88 beds to increase the existing bed spaces from 287 to 375, while the provision of advanced diagnostic centre and other modern medical equipment would be completed next year. \n Dr Abali said that the advanced diagnostic centre was being funded by the Nigerian Sovereign Investment Authority (NSIA) and would involve installing of magnetic resonance imaging (MRI) machine to compliment the CT scanner already in use. \n \"We plan to deepen our services to make FMC Umuahia stand out as the best medical facilities in the South East and South South,\" he said, adding, \"We feel that improving our services will attract people from far and near\". \n According to him, the FMC Umuahia was selected for the South East zone in the intervention by the NSIA, while the Lagos University Teaching Hospital (LUTH) was chosen from the South West and Aminu Kano hospital for the North. \n \"This FMC has deepened services in internal medicine, while the dialysis centre is undergoing expansion with addition of two dialysis machine to make it six and eventually reach the target of 10, while it also boasts of purpose-built In-Vitro Fertilisation laboratory, which is ranked among the best in the country,\" he stated. \n To further improve services, Dr Abali said that management has adopted the use of social media (WhatsAPP) platform to transmit scan results to doctors, thereby giving the 76 full time consultants, including three neurosurgeons at the FMC Umuahia opportunity to give their best in treating patients. He said that he developed the passion to turn FMC Umuahia into a medical haven when he was undergoing five months medical care in the United Kingdom, following an assassination attempt in October 2011 when armed men shot him. \n \"I promised God that I will replicate the medical facilities I saw there (UK),\" he said, adding \"If we get all that we ask for, there is really no limit to what we can go in providing world class medical care at FMC Umuahia,\" the MD explained. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 292, "end": 295, "input": "tokens", "text": "the best medical facilities in the South East and South South , \" "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South East"}, {"source": {"segment": "content_strict", "context": {"start": 332, "end": 335, "input": "tokens", "text": "FMC Umuahia was selected for the South East zone in the intervention by "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South East"}, {"source": {"segment": "content_relaxed", "context": {"start": 309, "end": 312, "input": "tokens", "text": "the best medical facilities in the South East and South South , \" "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South East"}, {"source": {"segment": "content_relaxed", "context": {"start": 349, "end": 352, "input": "tokens", "text": "FMC Umuahia was selected for the South East zone in the intervention by "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South East"}], "key": "the south east", "value": "the South East"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 296, "end": 298, "input": "tokens", "text": "in the South East and South South , \" he said , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South South"}, {"source": {"segment": "content_relaxed", "context": {"start": 313, "end": 315, "input": "tokens", "text": "in the South East and South South , \" he said , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South South"}], "key": "south south", "value": "South South"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 355, "end": 358, "input": "tokens", "text": "LUTH ) was chosen from the South West and Aminu Kano hospital for "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South West"}, {"source": {"segment": "content_relaxed", "context": {"start": 372, "end": 375, "input": "tokens", "text": "LUTH ) was chosen from the South West and Aminu Kano hospital for "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South West"}], "key": "the south west", "value": "the South West"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 364, "end": 365, "input": "tokens", "text": "Aminu Kano hospital for the North . \n \" This FMC "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "North"}, {"source": {"segment": "content_relaxed", "context": {"start": 381, "end": 382, "input": "tokens", "text": "Aminu Kano hospital for the North . \n \" This FMC "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "North"}], "key": "north", "value": "North"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 717, "end": 718, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: FMC Umuahia Ripe to Become Teaching Hospital, Says MD - allAfrica.com "}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 21, "end": 25, "input": "tokens", "text": "of highly skilled personnel , the Federal Medical Centre ( FMC ) Umuahia is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Medical Centre"}, {"source": {"segment": "content_relaxed", "context": {"start": 38, "end": 42, "input": "tokens", "text": "of highly skilled personnel , the Federal Medical Centre ( FMC ) Umuahia is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Medical Centre"}], "key": "the federal medical centre", "value": "the Federal Medical Centre"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 71, "end": 72, "input": "tokens", "text": "for the institution , the MD said the FMC which sits "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}, {"source": {"segment": "content_relaxed", "context": {"start": 16, "end": 17, "input": "tokens", "text": "Become Teaching Hospital , Says MD \n By Emmanuel Ugwu \n "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}, {"source": {"segment": "content_relaxed", "context": {"start": 88, "end": 89, "input": "tokens", "text": "for the institution , the MD said the FMC which sits "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}], "key": "md", "value": "MD"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 74, "end": 75, "input": "tokens", "text": ", the MD said the FMC which sits on a 77 "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_strict", "context": {"start": 125, "end": 126, "input": "tokens", "text": "as planned . \n \" FMC is long overdue to become "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_strict", "context": {"start": 186, "end": 187, "input": "tokens", "text": "\n He stated that the FMC has continued to expand its "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_strict", "context": {"start": 282, "end": 283, "input": "tokens", "text": "deepen our services to make FMC Umuahia stand out as the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_strict", "context": {"start": 369, "end": 370, "input": "tokens", "text": "North . \n \" This FMC has deepened services in internal "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_strict", "context": {"start": 492, "end": 493, "input": "tokens", "text": "developed the passion to turn FMC Umuahia into a medical haven "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 91, "end": 92, "input": "tokens", "text": ", the MD said the FMC which sits on a 77 "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 142, "end": 143, "input": "tokens", "text": "as planned . \n \" FMC is long overdue to become "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 203, "end": 204, "input": "tokens", "text": "\n He stated that the FMC has continued to expand its "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 299, "end": 300, "input": "tokens", "text": "deepen our services to make FMC Umuahia stand out as the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 386, "end": 387, "input": "tokens", "text": "North . \n \" This FMC has deepened services in internal "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 509, "end": 510, "input": "tokens", "text": "developed the passion to turn FMC Umuahia into a medical haven "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}], "key": "fmc", "value": "FMC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 102, "end": 108, "input": "tokens", "text": "hoped would be realized if Michael Okpara University of Agriculture Umudike ( MOUAU ) eventually gets "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Michael Okpara University of Agriculture Umudike"}, {"source": {"segment": "content_relaxed", "context": {"start": 119, "end": 125, "input": "tokens", "text": "hoped would be realized if Michael Okpara University of Agriculture Umudike ( MOUAU ) eventually gets "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Michael Okpara University of Agriculture Umudike"}], "key": "michael okpara university of agriculture umudike", "value": "Michael Okpara University of Agriculture Umudike"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 243, "end": 248, "input": "tokens", "text": "centre was being funded by the Nigerian Sovereign Investment Authority ( NSIA ) and would "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Nigerian Sovereign Investment Authority"}, {"source": {"segment": "content_relaxed", "context": {"start": 260, "end": 265, "input": "tokens", "text": "centre was being funded by the Nigerian Sovereign Investment Authority ( NSIA ) and would "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Nigerian Sovereign Investment Authority"}], "key": "the nigerian sovereign investment authority", "value": "the Nigerian Sovereign Investment Authority"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 249, "end": 250, "input": "tokens", "text": "Nigerian Sovereign Investment Authority ( NSIA ) and would involve installing "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NSIA"}, {"source": {"segment": "content_strict", "context": {"start": 341, "end": 342, "input": "tokens", "text": "in the intervention by the NSIA , while the Lagos University "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NSIA"}, {"source": {"segment": "content_relaxed", "context": {"start": 266, "end": 267, "input": "tokens", "text": "Nigerian Sovereign Investment Authority ( NSIA ) and would involve installing "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NSIA"}, {"source": {"segment": "content_relaxed", "context": {"start": 358, "end": 359, "input": "tokens", "text": "in the intervention by the NSIA , while the Lagos University "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NSIA"}], "key": "nsia", "value": "NSIA"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 260, "end": 261, "input": "tokens", "text": "of magnetic resonance imaging ( MRI ) machine to compliment the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MRI"}, {"source": {"segment": "content_relaxed", "context": {"start": 277, "end": 278, "input": "tokens", "text": "of magnetic resonance imaging ( MRI ) machine to compliment the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MRI"}], "key": "mri", "value": "MRI"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 326, "end": 329, "input": "tokens", "text": "\n According to him , the FMC Umuahia was selected for the South "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the FMC Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 343, "end": 346, "input": "tokens", "text": "\n According to him , the FMC Umuahia was selected for the South "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the FMC Umuahia"}], "key": "the fmc umuahia", "value": "the FMC Umuahia"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 344, "end": 349, "input": "tokens", "text": "by the NSIA , while the Lagos University Teaching Hospital ( LUTH ) was chosen "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Lagos University Teaching Hospital"}, {"source": {"segment": "content_relaxed", "context": {"start": 361, "end": 366, "input": "tokens", "text": "by the NSIA , while the Lagos University Teaching Hospital ( LUTH ) was chosen "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Lagos University Teaching Hospital"}], "key": "the lagos university teaching hospital", "value": "the Lagos University Teaching Hospital"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 412, "end": 413, "input": "tokens", "text": "purpose - built In - Vitro Fertilisation laboratory , which is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vitro"}, {"source": {"segment": "content_relaxed", "context": {"start": 429, "end": 430, "input": "tokens", "text": "purpose - built In - Vitro Fertilisation laboratory , which is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vitro"}], "key": "vitro", "value": "Vitro"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 472, "end": 474, "input": "tokens", "text": "including three neurosurgeons at the FMC Umuahia opportunity to give their best "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia"}, {"source": {"segment": "content_strict", "context": {"start": 575, "end": 577, "input": "tokens", "text": "world class medical care at FMC Umuahia , \" the MD explained "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 489, "end": 491, "input": "tokens", "text": "including three neurosurgeons at the FMC Umuahia opportunity to give their best "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 592, "end": 594, "input": "tokens", "text": "world class medical care at FMC Umuahia , \" the MD explained "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia"}], "key": "fmc umuahia", "value": "FMC Umuahia"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 10, "input": "tokens", "text": "January 2016 \n Nigeria : FMC Umuahia Ripe to Become Teaching Hospital , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia Ripe"}, {"source": {"segment": "title", "context": {"start": 2, "end": 5, "input": "tokens", "text": "Nigeria : FMC Umuahia Ripe to Become Teaching Hospital , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia Ripe"}], "key": "fmc umuahia ripe", "value": "FMC Umuahia Ripe"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 611, "end": 612, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 613, "end": 616, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}, {"confidence": 1, "provenance": [{"source": {"segment": "title", "context": {"start": 11, "end": 14, "input": "tokens", "text": "Become Teaching Hospital , Says MD - allAfrica . com "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD - allAfrica"}], "key": "md - allafrica", "value": "MD - allAfrica"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 43, "end": 44, "input": "tokens", "text": ", the medical director ( MD ) , Dr Chuku Abali "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}, {"source": {"segment": "content_strict", "context": {"start": 580, "end": 581, "input": "tokens", "text": "FMC Umuahia , \" the MD explained . \n "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}, {"source": {"segment": "content_relaxed", "context": {"start": 60, "end": 61, "input": "tokens", "text": ", the medical director ( MD ) , Dr Chuku Abali "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}, {"source": {"segment": "content_relaxed", "context": {"start": 597, "end": 598, "input": "tokens", "text": "FMC Umuahia , \" the MD explained . \n Copyright \n "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}], "key": "md", "value": "MD"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 266, "end": 267, "input": "tokens", "text": ") machine to compliment the CT scanner already in use . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CT"}, {"source": {"segment": "content_relaxed", "context": {"start": 283, "end": 284, "input": "tokens", "text": ") machine to compliment the CT scanner already in use . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CT"}], "key": "ct", "value": "CT"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 507, "end": 510, "input": "tokens", "text": "five months medical care in the United Kingdom , following an assassination attempt "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Kingdom"}, {"source": {"segment": "content_relaxed", "context": {"start": 524, "end": 527, "input": "tokens", "text": "five months medical care in the United Kingdom , following an assassination attempt "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Kingdom"}], "key": "the united kingdom", "value": "the United Kingdom"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 540, "end": 541, "input": "tokens", "text": "facilities I saw there ( UK ) , \" he said "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "UK"}, {"source": {"segment": "content_relaxed", "context": {"start": 557, "end": 558, "input": "tokens", "text": "facilities I saw there ( UK ) , \" he said "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "UK"}], "key": "uk", "value": "UK"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 3 January 2016 \n Nigeria : FMC Umuahia Ripe to "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : FMC Umuahia Ripe to "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 175, "end": 176, "input": "tokens", "text": "craze for medical tourism by Nigerians , \" he explained . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigerians"}, {"source": {"segment": "content_relaxed", "context": {"start": 192, "end": 193, "input": "tokens", "text": "craze for medical tourism by Nigerians , \" he explained . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigerians"}], "key": "nigerians", "value": "Nigerians"}]}, "content_extraction": {"content_relaxed": {"text": " \n 3 January 2016 \n Nigeria: FMC Umuahia Ripe to Become Teaching Hospital, Says MD \n By Emmanuel Ugwu \n With the expansion undergone in terms of medical facilities and availability of highly skilled personnel, the Federal Medical Centre (FMC) Umuahia is ripe to be upgraded to a teaching hospital, the medical director (MD), Dr Chuku Abali had said. \n Speaking with journalists on the progress so far recorded and the future plans for the institution, the MD said the FMC which sits on a 77 hectare in the capital city can comfortably be converted into a teaching hospital. This, he hoped would be realized if Michael Okpara University of Agriculture Umudike (MOUAU) eventually gets the nod to run medical programmes, as planned. \n \"FMC is long overdue to become a teaching hospital,\" he asserted, adding that with the level of excellence it has attained, if more public hospitals could be upgraded to create pockets of excellence\" across the country it would curtail the craze for medical tourism by Nigerians,\" he explained. \n He stated that the FMC has continued to expand its services with building of new wards of 88 beds to increase the existing bed spaces from 287 to 375, while the provision of advanced diagnostic centre and other modern medical equipment would be completed next year. \n Dr Abali said that the advanced diagnostic centre was being funded by the Nigerian Sovereign Investment Authority (NSIA) and would involve installing of magnetic resonance imaging (MRI) machine to compliment the CT scanner already in use. \n \"We plan to deepen our services to make FMC Umuahia stand out as the best medical facilities in the South East and South South,\" he said, adding, \"We feel that improving our services will attract people from far and near\". \n According to him, the FMC Umuahia was selected for the South East zone in the intervention by the NSIA, while the Lagos University Teaching Hospital (LUTH) was chosen from the South West and Aminu Kano hospital for the North. \n \"This FMC has deepened services in internal medicine, while the dialysis centre is undergoing expansion with addition of two dialysis machine to make it six and eventually reach the target of 10, while it also boasts of purpose-built In-Vitro Fertilisation laboratory, which is ranked among the best in the country,\" he stated. \n To further improve services, Dr Abali said that management has adopted the use of social media (WhatsAPP) platform to transmit scan results to doctors, thereby giving the 76 full time consultants, including three neurosurgeons at the FMC Umuahia opportunity to give their best in treating patients. He said that he developed the passion to turn FMC Umuahia into a medical haven when he was undergoing five months medical care in the United Kingdom, following an assassination attempt in October 2011 when armed men shot him. \n \"I promised God that I will replicate the medical facilities I saw there (UK),\" he said, adding \"If we get all that we ask for, there is really no limit to what we can go in providing world class medical care at FMC Umuahia,\" the MD explained. \n Copyright \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "3", "january", "2016", "\n", "nigeria", ":", "fmc", "umuahia", "ripe", "to", "become", "teaching", "hospital", ",", "says", "md", "\n", "by", "emmanuel", "ugwu", "\n", "with", "the", "expansion", "undergone", "in", "terms", "of", "medical", "facilities", "and", "availability", "of", "highly", "skilled", "personnel", ",", "the", "federal", "medical", "centre", "(", "fmc", ")", "umuahia", "is", "ripe", "to", "be", "upgraded", "to", "a", "teaching", "hospital", ",", "the", "medical", "director", "(", "md", ")", ",", "dr", "chuku", "abali", "had", "said", ".", "\n", "speaking", "with", "journalists", "on", "the", "progress", "so", "far", "recorded", "and", "the", "future", "plans", "for", "the", "institution", ",", "the", "md", "said", "the", "fmc", "which", "sits", "on", "a", "77", "hectare", "in", "the", "capital", "city", "can", "comfortably", "be", "converted", "into", "a", "teaching", "hospital", ".", "this", ",", "he", "hoped", "would", "be", "realized", "if", "michael", "okpara", "university", "of", "agriculture", "umudike", "(", "mouau", ")", "eventually", "gets", "the", "nod", "to", "run", "medical", "programmes", ",", "as", "planned", ".", "\n", "\"", "fmc", "is", "long", "overdue", "to", "become", "a", "teaching", "hospital", ",", "\"", "he", "asserted", ",", "adding", "that", "with", "the", "level", "of", "excellence", "it", "has", "attained", ",", "if", "more", "public", "hospitals", "could", "be", "upgraded", "to", "create", "pockets", "of", "excellence", "\"", "across", "the", "country", "it", "would", "curtail", "the", "craze", "for", "medical", "tourism", "by", "nigerians", ",", "\"", "he", "explained", ".", "\n", "he", "stated", "that", "the", "fmc", "has", "continued", "to", "expand", "its", "services", "with", "building", "of", "new", "wards", "of", "88", "beds", "to", "increase", "the", "existing", "bed", "spaces", "from", "287", "to", "375", ",", "while", "the", "provision", "of", "advanced", "diagnostic", "centre", "and", "other", "modern", "medical", "equipment", "would", "be", "completed", "next", "year", ".", "\n", "dr", "abali", "said", "that", "the", "advanced", "diagnostic", "centre", "was", "being", "funded", "by", "the", "nigerian", "sovereign", "investment", "authority", "(", "nsia", ")", "and", "would", "involve", "installing", "of", "magnetic", "resonance", "imaging", "(", "mri", ")", "machine", "to", "compliment", "the", "ct", "scanner", "already", "in", "use", ".", "\n", "\"", "we", "plan", "to", "deepen", "our", "services", "to", "make", "fmc", "umuahia", "stand", "out", "as", "the", "best", "medical", "facilities", "in", "the", "south", "east", "and", "south", "south", ",", "\"", "he", "said", ",", "adding", ",", "\"", "we", "feel", "that", "improving", "our", "services", "will", "attract", "people", "from", "far", "and", "near", "\"", ".", "\n", "according", "to", "him", ",", "the", "fmc", "umuahia", "was", "selected", "for", "the", "south", "east", "zone", "in", "the", "intervention", "by", "the", "nsia", ",", "while", "the", "lagos", "university", "teaching", "hospital", "(", "luth", ")", "was", "chosen", "from", "the", "south", "west", "and", "aminu", "kano", "hospital", "for", "the", "north", ".", "\n", "\"", "this", "fmc", "has", "deepened", "services", "in", "internal", "medicine", ",", "while", "the", "dialysis", "centre", "is", "undergoing", "expansion", "with", "addition", "of", "two", "dialysis", "machine", "to", "make", "it", "six", "and", "eventually", "reach", "the", "target", "of", "10", ",", "while", "it", "also", "boasts", "of", "purpose", "-", "built", "in", "-", "vitro", "fertilisation", "laboratory", ",", "which", "is", "ranked", "among", "the", "best", "in", "the", "country", ",", "\"", "he", "stated", ".", "\n", "to", "further", "improve", "services", ",", "dr", "abali", "said", "that", "management", "has", "adopted", "the", "use", "of", "social", "media", "(", "whatsapp", ")", "platform", "to", "transmit", "scan", "results", "to", "doctors", ",", "thereby", "giving", "the", "76", "full", "time", "consultants", ",", "including", "three", "neurosurgeons", "at", "the", "fmc", "umuahia", "opportunity", "to", "give", "their", "best", "in", "treating", "patients", ".", "he", "said", "that", "he", "developed", "the", "passion", "to", "turn", "fmc", "umuahia", "into", "a", "medical", "haven", "when", "he", "was", "undergoing", "five", "months", "medical", "care", "in", "the", "united", "kingdom", ",", "following", "an", "assassination", "attempt", "in", "october", "2011", "when", "armed", "men", "shot", "him", ".", "\n", "\"", "i", "promised", "god", "that", "i", "will", "replicate", "the", "medical", "facilities", "i", "saw", "there", "(", "uk", ")", ",", "\"", "he", "said", ",", "adding", "\"", "if", "we", "get", "all", "that", "we", "ask", "for", ",", "there", "is", "really", "no", "limit", "to", "what", "we", "can", "go", "in", "providing", "world", "class", "medical", "care", "at", "fmc", "umuahia", ",", "\"", "the", "md", "explained", ".", "\n", "copyright", "\n", "2016", "this", "day", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "3", "January", "2016", "\n", "Nigeria", ":", "FMC", "Umuahia", "Ripe", "to", "Become", "Teaching", "Hospital", ",", "Says", "MD", "\n", "By", "Emmanuel", "Ugwu", "\n", "With", "the", "expansion", "undergone", "in", "terms", "of", "medical", "facilities", "and", "availability", "of", "highly", "skilled", "personnel", ",", "the", "Federal", "Medical", "Centre", "(", "FMC", ")", "Umuahia", "is", "ripe", "to", "be", "upgraded", "to", "a", "teaching", "hospital", ",", "the", "medical", "director", "(", "MD", ")", ",", "Dr", "Chuku", "Abali", "had", "said", ".", "\n", "Speaking", "with", "journalists", "on", "the", "progress", "so", "far", "recorded", "and", "the", "future", "plans", "for", "the", "institution", ",", "the", "MD", "said", "the", "FMC", "which", "sits", "on", "a", "77", "hectare", "in", "the", "capital", "city", "can", "comfortably", "be", "converted", "into", "a", "teaching", "hospital", ".", "This", ",", "he", "hoped", "would", "be", "realized", "if", "Michael", "Okpara", "University", "of", "Agriculture", "Umudike", "(", "MOUAU", ")", "eventually", "gets", "the", "nod", "to", "run", "medical", "programmes", ",", "as", "planned", ".", "\n", "\"", "FMC", "is", "long", "overdue", "to", "become", "a", "teaching", "hospital", ",", "\"", "he", "asserted", ",", "adding", "that", "with", "the", "level", "of", "excellence", "it", "has", "attained", ",", "if", "more", "public", "hospitals", "could", "be", "upgraded", "to", "create", "pockets", "of", "excellence", "\"", "across", "the", "country", "it", "would", "curtail", "the", "craze", "for", "medical", "tourism", "by", "Nigerians", ",", "\"", "he", "explained", ".", "\n", "He", "stated", "that", "the", "FMC", "has", "continued", "to", "expand", "its", "services", "with", "building", "of", "new", "wards", "of", "88", "beds", "to", "increase", "the", "existing", "bed", "spaces", "from", "287", "to", "375", ",", "while", "the", "provision", "of", "advanced", "diagnostic", "centre", "and", "other", "modern", "medical", "equipment", "would", "be", "completed", "next", "year", ".", "\n", "Dr", "Abali", "said", "that", "the", "advanced", "diagnostic", "centre", "was", "being", "funded", "by", "the", "Nigerian", "Sovereign", "Investment", "Authority", "(", "NSIA", ")", "and", "would", "involve", "installing", "of", "magnetic", "resonance", "imaging", "(", "MRI", ")", "machine", "to", "compliment", "the", "CT", "scanner", "already", "in", "use", ".", "\n", "\"", "We", "plan", "to", "deepen", "our", "services", "to", "make", "FMC", "Umuahia", "stand", "out", "as", "the", "best", "medical", "facilities", "in", "the", "South", "East", "and", "South", "South", ",", "\"", "he", "said", ",", "adding", ",", "\"", "We", "feel", "that", "improving", "our", "services", "will", "attract", "people", "from", "far", "and", "near", "\"", ".", "\n", "According", "to", "him", ",", "the", "FMC", "Umuahia", "was", "selected", "for", "the", "South", "East", "zone", "in", "the", "intervention", "by", "the", "NSIA", ",", "while", "the", "Lagos", "University", "Teaching", "Hospital", "(", "LUTH", ")", "was", "chosen", "from", "the", "South", "West", "and", "Aminu", "Kano", "hospital", "for", "the", "North", ".", "\n", "\"", "This", "FMC", "has", "deepened", "services", "in", "internal", "medicine", ",", "while", "the", "dialysis", "centre", "is", "undergoing", "expansion", "with", "addition", "of", "two", "dialysis", "machine", "to", "make", "it", "six", "and", "eventually", "reach", "the", "target", "of", "10", ",", "while", "it", "also", "boasts", "of", "purpose", "-", "built", "In", "-", "Vitro", "Fertilisation", "laboratory", ",", "which", "is", "ranked", "among", "the", "best", "in", "the", "country", ",", "\"", "he", "stated", ".", "\n", "To", "further", "improve", "services", ",", "Dr", "Abali", "said", "that", "management", "has", "adopted", "the", "use", "of", "social", "media", "(", "WhatsAPP", ")", "platform", "to", "transmit", "scan", "results", "to", "doctors", ",", "thereby", "giving", "the", "76", "full", "time", "consultants", ",", "including", "three", "neurosurgeons", "at", "the", "FMC", "Umuahia", "opportunity", "to", "give", "their", "best", "in", "treating", "patients", ".", "He", "said", "that", "he", "developed", "the", "passion", "to", "turn", "FMC", "Umuahia", "into", "a", "medical", "haven", "when", "he", "was", "undergoing", "five", "months", "medical", "care", "in", "the", "United", "Kingdom", ",", "following", "an", "assassination", "attempt", "in", "October", "2011", "when", "armed", "men", "shot", "him", ".", "\n", "\"", "I", "promised", "God", "that", "I", "will", "replicate", "the", "medical", "facilities", "I", "saw", "there", "(", "UK", ")", ",", "\"", "he", "said", ",", "adding", "\"", "If", "we", "get", "all", "that", "we", "ask", "for", ",", "there", "is", "really", "no", "limit", "to", "what", "we", "can", "go", "in", "providing", "world", "class", "medical", "care", "at", "FMC", "Umuahia", ",", "\"", "the", "MD", "explained", ".", "\n", "Copyright", "\n", "2016", "This", "Day", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 747, "end": 748, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "AllAfrica", "context": {"start": 747, "end": 748, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 19, "end": 21, "input": "tokens", "text": ", Says MD \n By Emmanuel Ugwu \n With the expansion undergone "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Emmanuel Ugwu", "context": {"start": 19, "end": 21, "input": "tokens", "text": ", Says MD \n By Emmanuel Ugwu \n With the expansion undergone "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 63, "end": 66, "input": "tokens", "text": "director ( MD ) , Dr Chuku Abali had said . \n Speaking "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Dr Chuku Abali", "context": {"start": 63, "end": 66, "input": "tokens", "text": "director ( MD ) , Dr Chuku Abali had said . \n Speaking "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 248, "end": 250, "input": "tokens", "text": "completed next year . \n Dr Abali said that the advanced diagnostic "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Dr Abali", "context": {"start": 248, "end": 250, "input": "tokens", "text": "completed next year . \n Dr Abali said that the advanced diagnostic "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 367, "end": 368, "input": "tokens", "text": "Lagos University Teaching Hospital ( LUTH ) was chosen from the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "LUTH", "context": {"start": 367, "end": 368, "input": "tokens", "text": "Lagos University Teaching Hospital ( LUTH ) was chosen from the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 376, "end": 378, "input": "tokens", "text": "from the South West and Aminu Kano hospital for the North . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Aminu Kano", "context": {"start": 376, "end": 378, "input": "tokens", "text": "from the South West and Aminu Kano hospital for the North . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 453, "end": 455, "input": "tokens", "text": "To further improve services , Dr Abali said that management has adopted "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Dr Abali", "context": {"start": 453, "end": 455, "input": "tokens", "text": "To further improve services , Dr Abali said that management has adopted "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 309, "end": 312, "input": "tokens", "text": "the best medical facilities in the South East and South South , \" "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the South East", "context": {"start": 309, "end": 312, "input": "tokens", "text": "the best medical facilities in the South East and South South , \" "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 313, "end": 315, "input": "tokens", "text": "in the South East and South South , \" he said , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "South South", "context": {"start": 313, "end": 315, "input": "tokens", "text": "in the South East and South South , \" he said , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 349, "end": 352, "input": "tokens", "text": "FMC Umuahia was selected for the South East zone in the intervention by "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the South East", "context": {"start": 349, "end": 352, "input": "tokens", "text": "FMC Umuahia was selected for the South East zone in the intervention by "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 372, "end": 375, "input": "tokens", "text": "LUTH ) was chosen from the South West and Aminu Kano hospital for "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the South West", "context": {"start": 372, "end": 375, "input": "tokens", "text": "LUTH ) was chosen from the South West and Aminu Kano hospital for "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 381, "end": 382, "input": "tokens", "text": "Aminu Kano hospital for the North . \n \" This FMC "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "North", "context": {"start": 381, "end": 382, "input": "tokens", "text": "Aminu Kano hospital for the North . \n \" This FMC "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 717, "end": 718, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "AllAfrica", "context": {"start": 717, "end": 718, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 7, "end": 10, "input": "tokens", "text": "January 2016 \n Nigeria : FMC Umuahia Ripe to Become Teaching Hospital , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC Umuahia Ripe", "context": {"start": 7, "end": 10, "input": "tokens", "text": "January 2016 \n Nigeria : FMC Umuahia Ripe to Become Teaching Hospital , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 16, "end": 17, "input": "tokens", "text": "Become Teaching Hospital , Says MD \n By Emmanuel Ugwu \n "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "MD", "context": {"start": 16, "end": 17, "input": "tokens", "text": "Become Teaching Hospital , Says MD \n By Emmanuel Ugwu \n "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 38, "end": 42, "input": "tokens", "text": "of highly skilled personnel , the Federal Medical Centre ( FMC ) Umuahia is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the Federal Medical Centre", "context": {"start": 38, "end": 42, "input": "tokens", "text": "of highly skilled personnel , the Federal Medical Centre ( FMC ) Umuahia is "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 88, "end": 89, "input": "tokens", "text": "for the institution , the MD said the FMC which sits "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "MD", "context": {"start": 88, "end": 89, "input": "tokens", "text": "for the institution , the MD said the FMC which sits "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 91, "end": 92, "input": "tokens", "text": ", the MD said the FMC which sits on a 77 "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 91, "end": 92, "input": "tokens", "text": ", the MD said the FMC which sits on a 77 "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 119, "end": 125, "input": "tokens", "text": "hoped would be realized if Michael Okpara University of Agriculture Umudike ( MOUAU ) eventually gets "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Michael Okpara University of Agriculture Umudike", "context": {"start": 119, "end": 125, "input": "tokens", "text": "hoped would be realized if Michael Okpara University of Agriculture Umudike ( MOUAU ) eventually gets "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 142, "end": 143, "input": "tokens", "text": "as planned . \n \" FMC is long overdue to become "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 142, "end": 143, "input": "tokens", "text": "as planned . \n \" FMC is long overdue to become "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 203, "end": 204, "input": "tokens", "text": "\n He stated that the FMC has continued to expand its "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 203, "end": 204, "input": "tokens", "text": "\n He stated that the FMC has continued to expand its "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 260, "end": 265, "input": "tokens", "text": "centre was being funded by the Nigerian Sovereign Investment Authority ( NSIA ) and would "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the Nigerian Sovereign Investment Authority", "context": {"start": 260, "end": 265, "input": "tokens", "text": "centre was being funded by the Nigerian Sovereign Investment Authority ( NSIA ) and would "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 266, "end": 267, "input": "tokens", "text": "Nigerian Sovereign Investment Authority ( NSIA ) and would involve installing "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "NSIA", "context": {"start": 266, "end": 267, "input": "tokens", "text": "Nigerian Sovereign Investment Authority ( NSIA ) and would involve installing "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 277, "end": 278, "input": "tokens", "text": "of magnetic resonance imaging ( MRI ) machine to compliment the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "MRI", "context": {"start": 277, "end": 278, "input": "tokens", "text": "of magnetic resonance imaging ( MRI ) machine to compliment the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 299, "end": 300, "input": "tokens", "text": "deepen our services to make FMC Umuahia stand out as the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 299, "end": 300, "input": "tokens", "text": "deepen our services to make FMC Umuahia stand out as the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 343, "end": 346, "input": "tokens", "text": "\n According to him , the FMC Umuahia was selected for the South "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the FMC Umuahia", "context": {"start": 343, "end": 346, "input": "tokens", "text": "\n According to him , the FMC Umuahia was selected for the South "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 358, "end": 359, "input": "tokens", "text": "in the intervention by the NSIA , while the Lagos University "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "NSIA", "context": {"start": 358, "end": 359, "input": "tokens", "text": "in the intervention by the NSIA , while the Lagos University "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 361, "end": 366, "input": "tokens", "text": "by the NSIA , while the Lagos University Teaching Hospital ( LUTH ) was chosen "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the Lagos University Teaching Hospital", "context": {"start": 361, "end": 366, "input": "tokens", "text": "by the NSIA , while the Lagos University Teaching Hospital ( LUTH ) was chosen "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 386, "end": 387, "input": "tokens", "text": "North . \n \" This FMC has deepened services in internal "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 386, "end": 387, "input": "tokens", "text": "North . \n \" This FMC has deepened services in internal "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 429, "end": 430, "input": "tokens", "text": "purpose - built In - Vitro Fertilisation laboratory , which is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Vitro", "context": {"start": 429, "end": 430, "input": "tokens", "text": "purpose - built In - Vitro Fertilisation laboratory , which is "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 489, "end": 491, "input": "tokens", "text": "including three neurosurgeons at the FMC Umuahia opportunity to give their best "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC Umuahia", "context": {"start": 489, "end": 491, "input": "tokens", "text": "including three neurosurgeons at the FMC Umuahia opportunity to give their best "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 509, "end": 510, "input": "tokens", "text": "developed the passion to turn FMC Umuahia into a medical haven "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 509, "end": 510, "input": "tokens", "text": "developed the passion to turn FMC Umuahia into a medical haven "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 592, "end": 594, "input": "tokens", "text": "world class medical care at FMC Umuahia , \" the MD explained "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC Umuahia", "context": {"start": 592, "end": 594, "input": "tokens", "text": "world class medical care at FMC Umuahia , \" the MD explained "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 611, "end": 612, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Distributed", "context": {"start": 611, "end": 612, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 613, "end": 616, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "AllAfrica Global Media", "context": {"start": 613, "end": 616, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 3 January 2016 \n Nigeria : FMC Umuahia Ripe to "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 3 January 2016 \n Nigeria : FMC Umuahia Ripe to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 60, "end": 61, "input": "tokens", "text": ", the medical director ( MD ) , Dr Chuku Abali "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "MD", "context": {"start": 60, "end": 61, "input": "tokens", "text": ", the medical director ( MD ) , Dr Chuku Abali "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 283, "end": 284, "input": "tokens", "text": ") machine to compliment the CT scanner already in use . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "CT", "context": {"start": 283, "end": 284, "input": "tokens", "text": ") machine to compliment the CT scanner already in use . "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 524, "end": 527, "input": "tokens", "text": "five months medical care in the United Kingdom , following an assassination attempt "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the United Kingdom", "context": {"start": 524, "end": 527, "input": "tokens", "text": "five months medical care in the United Kingdom , following an assassination attempt "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 557, "end": 558, "input": "tokens", "text": "facilities I saw there ( UK ) , \" he said "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "UK", "context": {"start": 557, "end": 558, "input": "tokens", "text": "facilities I saw there ( UK ) , \" he said "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 597, "end": 598, "input": "tokens", "text": "FMC Umuahia , \" the MD explained . \n Copyright \n "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "MD", "context": {"start": 597, "end": 598, "input": "tokens", "text": "FMC Umuahia , \" the MD explained . \n Copyright \n "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 192, "end": 193, "input": "tokens", "text": "craze for medical tourism by Nigerians , \" he explained . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Nigerians", "context": {"start": 192, "end": 193, "input": "tokens", "text": "craze for medical tourism by Nigerians , \" he explained . "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/04/201601040035.html"}, "content_strict": {"text": " \n By Emmanuel Ugwu \n With the expansion undergone in terms of medical facilities and availability of highly skilled personnel, the Federal Medical Centre (FMC) Umuahia is ripe to be upgraded to a teaching hospital, the medical director (MD), Dr Chuku Abali had said. \n Speaking with journalists on the progress so far recorded and the future plans for the institution, the MD said the FMC which sits on a 77 hectare in the capital city can comfortably be converted into a teaching hospital. This, he hoped would be realized if Michael Okpara University of Agriculture Umudike (MOUAU) eventually gets the nod to run medical programmes, as planned. \n \"FMC is long overdue to become a teaching hospital,\" he asserted, adding that with the level of excellence it has attained, if more public hospitals could be upgraded to create pockets of excellence\" across the country it would curtail the craze for medical tourism by Nigerians,\" he explained. \n He stated that the FMC has continued to expand its services with building of new wards of 88 beds to increase the existing bed spaces from 287 to 375, while the provision of advanced diagnostic centre and other modern medical equipment would be completed next year. \n Dr Abali said that the advanced diagnostic centre was being funded by the Nigerian Sovereign Investment Authority (NSIA) and would involve installing of magnetic resonance imaging (MRI) machine to compliment the CT scanner already in use. \n \"We plan to deepen our services to make FMC Umuahia stand out as the best medical facilities in the South East and South South,\" he said, adding, \"We feel that improving our services will attract people from far and near\". \n According to him, the FMC Umuahia was selected for the South East zone in the intervention by the NSIA, while the Lagos University Teaching Hospital (LUTH) was chosen from the South West and Aminu Kano hospital for the North. \n \"This FMC has deepened services in internal medicine, while the dialysis centre is undergoing expansion with addition of two dialysis machine to make it six and eventually reach the target of 10, while it also boasts of purpose-built In-Vitro Fertilisation laboratory, which is ranked among the best in the country,\" he stated. \n To further improve services, Dr Abali said that management has adopted the use of social media (WhatsAPP) platform to transmit scan results to doctors, thereby giving the 76 full time consultants, including three neurosurgeons at the FMC Umuahia opportunity to give their best in treating patients. He said that he developed the passion to turn FMC Umuahia into a medical haven when he was undergoing five months medical care in the United Kingdom, following an assassination attempt in October 2011 when armed men shot him. \n \"I promised God that I will replicate the medical facilities I saw there (UK),\" he said, adding \"If we get all that we ask for, there is really no limit to what we can go in providing world class medical care at FMC Umuahia,\" the MD explained. \n ", "simple_tokens": ["\n", "by", "emmanuel", "ugwu", "\n", "with", "the", "expansion", "undergone", "in", "terms", "of", "medical", "facilities", "and", "availability", "of", "highly", "skilled", "personnel", ",", "the", "federal", "medical", "centre", "(", "fmc", ")", "umuahia", "is", "ripe", "to", "be", "upgraded", "to", "a", "teaching", "hospital", ",", "the", "medical", "director", "(", "md", ")", ",", "dr", "chuku", "abali", "had", "said", ".", "\n", "speaking", "with", "journalists", "on", "the", "progress", "so", "far", "recorded", "and", "the", "future", "plans", "for", "the", "institution", ",", "the", "md", "said", "the", "fmc", "which", "sits", "on", "a", "77", "hectare", "in", "the", "capital", "city", "can", "comfortably", "be", "converted", "into", "a", "teaching", "hospital", ".", "this", ",", "he", "hoped", "would", "be", "realized", "if", "michael", "okpara", "university", "of", "agriculture", "umudike", "(", "mouau", ")", "eventually", "gets", "the", "nod", "to", "run", "medical", "programmes", ",", "as", "planned", ".", "\n", "\"", "fmc", "is", "long", "overdue", "to", "become", "a", "teaching", "hospital", ",", "\"", "he", "asserted", ",", "adding", "that", "with", "the", "level", "of", "excellence", "it", "has", "attained", ",", "if", "more", "public", "hospitals", "could", "be", "upgraded", "to", "create", "pockets", "of", "excellence", "\"", "across", "the", "country", "it", "would", "curtail", "the", "craze", "for", "medical", "tourism", "by", "nigerians", ",", "\"", "he", "explained", ".", "\n", "he", "stated", "that", "the", "fmc", "has", "continued", "to", "expand", "its", "services", "with", "building", "of", "new", "wards", "of", "88", "beds", "to", "increase", "the", "existing", "bed", "spaces", "from", "287", "to", "375", ",", "while", "the", "provision", "of", "advanced", "diagnostic", "centre", "and", "other", "modern", "medical", "equipment", "would", "be", "completed", "next", "year", ".", "\n", "dr", "abali", "said", "that", "the", "advanced", "diagnostic", "centre", "was", "being", "funded", "by", "the", "nigerian", "sovereign", "investment", "authority", "(", "nsia", ")", "and", "would", "involve", "installing", "of", "magnetic", "resonance", "imaging", "(", "mri", ")", "machine", "to", "compliment", "the", "ct", "scanner", "already", "in", "use", ".", "\n", "\"", "we", "plan", "to", "deepen", "our", "services", "to", "make", "fmc", "umuahia", "stand", "out", "as", "the", "best", "medical", "facilities", "in", "the", "south", "east", "and", "south", "south", ",", "\"", "he", "said", ",", "adding", ",", "\"", "we", "feel", "that", "improving", "our", "services", "will", "attract", "people", "from", "far", "and", "near", "\"", ".", "\n", "according", "to", "him", ",", "the", "fmc", "umuahia", "was", "selected", "for", "the", "south", "east", "zone", "in", "the", "intervention", "by", "the", "nsia", ",", "while", "the", "lagos", "university", "teaching", "hospital", "(", "luth", ")", "was", "chosen", "from", "the", "south", "west", "and", "aminu", "kano", "hospital", "for", "the", "north", ".", "\n", "\"", "this", "fmc", "has", "deepened", "services", "in", "internal", "medicine", ",", "while", "the", "dialysis", "centre", "is", "undergoing", "expansion", "with", "addition", "of", "two", "dialysis", "machine", "to", "make", "it", "six", "and", "eventually", "reach", "the", "target", "of", "10", ",", "while", "it", "also", "boasts", "of", "purpose", "-", "built", "in", "-", "vitro", "fertilisation", "laboratory", ",", "which", "is", "ranked", "among", "the", "best", "in", "the", "country", ",", "\"", "he", "stated", ".", "\n", "to", "further", "improve", "services", ",", "dr", "abali", "said", "that", "management", "has", "adopted", "the", "use", "of", "social", "media", "(", "whatsapp", ")", "platform", "to", "transmit", "scan", "results", "to", "doctors", ",", "thereby", "giving", "the", "76", "full", "time", "consultants", ",", "including", "three", "neurosurgeons", "at", "the", "fmc", "umuahia", "opportunity", "to", "give", "their", "best", "in", "treating", "patients", ".", "he", "said", "that", "he", "developed", "the", "passion", "to", "turn", "fmc", "umuahia", "into", "a", "medical", "haven", "when", "he", "was", "undergoing", "five", "months", "medical", "care", "in", "the", "united", "kingdom", ",", "following", "an", "assassination", "attempt", "in", "october", "2011", "when", "armed", "men", "shot", "him", ".", "\n", "\"", "i", "promised", "god", "that", "i", "will", "replicate", "the", "medical", "facilities", "i", "saw", "there", "(", "uk", ")", ",", "\"", "he", "said", ",", "adding", "\"", "if", "we", "get", "all", "that", "we", "ask", "for", ",", "there", "is", "really", "no", "limit", "to", "what", "we", "can", "go", "in", "providing", "world", "class", "medical", "care", "at", "fmc", "umuahia", ",", "\"", "the", "md", "explained", ".", "\n"], "simple_tokens_original_case": ["\n", "By", "Emmanuel", "Ugwu", "\n", "With", "the", "expansion", "undergone", "in", "terms", "of", "medical", "facilities", "and", "availability", "of", "highly", "skilled", "personnel", ",", "the", "Federal", "Medical", "Centre", "(", "FMC", ")", "Umuahia", "is", "ripe", "to", "be", "upgraded", "to", "a", "teaching", "hospital", ",", "the", "medical", "director", "(", "MD", ")", ",", "Dr", "Chuku", "Abali", "had", "said", ".", "\n", "Speaking", "with", "journalists", "on", "the", "progress", "so", "far", "recorded", "and", "the", "future", "plans", "for", "the", "institution", ",", "the", "MD", "said", "the", "FMC", "which", "sits", "on", "a", "77", "hectare", "in", "the", "capital", "city", "can", "comfortably", "be", "converted", "into", "a", "teaching", "hospital", ".", "This", ",", "he", "hoped", "would", "be", "realized", "if", "Michael", "Okpara", "University", "of", "Agriculture", "Umudike", "(", "MOUAU", ")", "eventually", "gets", "the", "nod", "to", "run", "medical", "programmes", ",", "as", "planned", ".", "\n", "\"", "FMC", "is", "long", "overdue", "to", "become", "a", "teaching", "hospital", ",", "\"", "he", "asserted", ",", "adding", "that", "with", "the", "level", "of", "excellence", "it", "has", "attained", ",", "if", "more", "public", "hospitals", "could", "be", "upgraded", "to", "create", "pockets", "of", "excellence", "\"", "across", "the", "country", "it", "would", "curtail", "the", "craze", "for", "medical", "tourism", "by", "Nigerians", ",", "\"", "he", "explained", ".", "\n", "He", "stated", "that", "the", "FMC", "has", "continued", "to", "expand", "its", "services", "with", "building", "of", "new", "wards", "of", "88", "beds", "to", "increase", "the", "existing", "bed", "spaces", "from", "287", "to", "375", ",", "while", "the", "provision", "of", "advanced", "diagnostic", "centre", "and", "other", "modern", "medical", "equipment", "would", "be", "completed", "next", "year", ".", "\n", "Dr", "Abali", "said", "that", "the", "advanced", "diagnostic", "centre", "was", "being", "funded", "by", "the", "Nigerian", "Sovereign", "Investment", "Authority", "(", "NSIA", ")", "and", "would", "involve", "installing", "of", "magnetic", "resonance", "imaging", "(", "MRI", ")", "machine", "to", "compliment", "the", "CT", "scanner", "already", "in", "use", ".", "\n", "\"", "We", "plan", "to", "deepen", "our", "services", "to", "make", "FMC", "Umuahia", "stand", "out", "as", "the", "best", "medical", "facilities", "in", "the", "South", "East", "and", "South", "South", ",", "\"", "he", "said", ",", "adding", ",", "\"", "We", "feel", "that", "improving", "our", "services", "will", "attract", "people", "from", "far", "and", "near", "\"", ".", "\n", "According", "to", "him", ",", "the", "FMC", "Umuahia", "was", "selected", "for", "the", "South", "East", "zone", "in", "the", "intervention", "by", "the", "NSIA", ",", "while", "the", "Lagos", "University", "Teaching", "Hospital", "(", "LUTH", ")", "was", "chosen", "from", "the", "South", "West", "and", "Aminu", "Kano", "hospital", "for", "the", "North", ".", "\n", "\"", "This", "FMC", "has", "deepened", "services", "in", "internal", "medicine", ",", "while", "the", "dialysis", "centre", "is", "undergoing", "expansion", "with", "addition", "of", "two", "dialysis", "machine", "to", "make", "it", "six", "and", "eventually", "reach", "the", "target", "of", "10", ",", "while", "it", "also", "boasts", "of", "purpose", "-", "built", "In", "-", "Vitro", "Fertilisation", "laboratory", ",", "which", "is", "ranked", "among", "the", "best", "in", "the", "country", ",", "\"", "he", "stated", ".", "\n", "To", "further", "improve", "services", ",", "Dr", "Abali", "said", "that", "management", "has", "adopted", "the", "use", "of", "social", "media", "(", "WhatsAPP", ")", "platform", "to", "transmit", "scan", "results", "to", "doctors", ",", "thereby", "giving", "the", "76", "full", "time", "consultants", ",", "including", "three", "neurosurgeons", "at", "the", "FMC", "Umuahia", "opportunity", "to", "give", "their", "best", "in", "treating", "patients", ".", "He", "said", "that", "he", "developed", "the", "passion", "to", "turn", "FMC", "Umuahia", "into", "a", "medical", "haven", "when", "he", "was", "undergoing", "five", "months", "medical", "care", "in", "the", "United", "Kingdom", ",", "following", "an", "assassination", "attempt", "in", "October", "2011", "when", "armed", "men", "shot", "him", ".", "\n", "\"", "I", "promised", "God", "that", "I", "will", "replicate", "the", "medical", "facilities", "I", "saw", "there", "(", "UK", ")", ",", "\"", "he", "said", ",", "adding", "\"", "If", "we", "get", "all", "that", "we", "ask", "for", ",", "there", "is", "really", "no", "limit", "to", "what", "we", "can", "go", "in", "providing", "world", "class", "medical", "care", "at", "FMC", "Umuahia", ",", "\"", "the", "MD", "explained", ".", "\n"], "data_extraction": {"organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 21, "end": 25, "input": "tokens", "text": "of highly skilled personnel , the Federal Medical Centre ( FMC ) Umuahia is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the Federal Medical Centre", "context": {"start": 21, "end": 25, "input": "tokens", "text": "of highly skilled personnel , the Federal Medical Centre ( FMC ) Umuahia is "}}, {"origin": {"segment": "content_strict", "context": {"start": 71, "end": 72, "input": "tokens", "text": "for the institution , the MD said the FMC which sits "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "MD", "context": {"start": 71, "end": 72, "input": "tokens", "text": "for the institution , the MD said the FMC which sits "}}, {"origin": {"segment": "content_strict", "context": {"start": 74, "end": 75, "input": "tokens", "text": ", the MD said the FMC which sits on a 77 "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 74, "end": 75, "input": "tokens", "text": ", the MD said the FMC which sits on a 77 "}}, {"origin": {"segment": "content_strict", "context": {"start": 102, "end": 108, "input": "tokens", "text": "hoped would be realized if Michael Okpara University of Agriculture Umudike ( MOUAU ) eventually gets "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Michael Okpara University of Agriculture Umudike", "context": {"start": 102, "end": 108, "input": "tokens", "text": "hoped would be realized if Michael Okpara University of Agriculture Umudike ( MOUAU ) eventually gets "}}, {"origin": {"segment": "content_strict", "context": {"start": 125, "end": 126, "input": "tokens", "text": "as planned . \n \" FMC is long overdue to become "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 125, "end": 126, "input": "tokens", "text": "as planned . \n \" FMC is long overdue to become "}}, {"origin": {"segment": "content_strict", "context": {"start": 186, "end": 187, "input": "tokens", "text": "\n He stated that the FMC has continued to expand its "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 186, "end": 187, "input": "tokens", "text": "\n He stated that the FMC has continued to expand its "}}, {"origin": {"segment": "content_strict", "context": {"start": 243, "end": 248, "input": "tokens", "text": "centre was being funded by the Nigerian Sovereign Investment Authority ( NSIA ) and would "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the Nigerian Sovereign Investment Authority", "context": {"start": 243, "end": 248, "input": "tokens", "text": "centre was being funded by the Nigerian Sovereign Investment Authority ( NSIA ) and would "}}, {"origin": {"segment": "content_strict", "context": {"start": 249, "end": 250, "input": "tokens", "text": "Nigerian Sovereign Investment Authority ( NSIA ) and would involve installing "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "NSIA", "context": {"start": 249, "end": 250, "input": "tokens", "text": "Nigerian Sovereign Investment Authority ( NSIA ) and would involve installing "}}, {"origin": {"segment": "content_strict", "context": {"start": 260, "end": 261, "input": "tokens", "text": "of magnetic resonance imaging ( MRI ) machine to compliment the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "MRI", "context": {"start": 260, "end": 261, "input": "tokens", "text": "of magnetic resonance imaging ( MRI ) machine to compliment the "}}, {"origin": {"segment": "content_strict", "context": {"start": 282, "end": 283, "input": "tokens", "text": "deepen our services to make FMC Umuahia stand out as the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 282, "end": 283, "input": "tokens", "text": "deepen our services to make FMC Umuahia stand out as the "}}, {"origin": {"segment": "content_strict", "context": {"start": 326, "end": 329, "input": "tokens", "text": "\n According to him , the FMC Umuahia was selected for the South "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the FMC Umuahia", "context": {"start": 326, "end": 329, "input": "tokens", "text": "\n According to him , the FMC Umuahia was selected for the South "}}, {"origin": {"segment": "content_strict", "context": {"start": 341, "end": 342, "input": "tokens", "text": "in the intervention by the NSIA , while the Lagos University "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "NSIA", "context": {"start": 341, "end": 342, "input": "tokens", "text": "in the intervention by the NSIA , while the Lagos University "}}, {"origin": {"segment": "content_strict", "context": {"start": 344, "end": 349, "input": "tokens", "text": "by the NSIA , while the Lagos University Teaching Hospital ( LUTH ) was chosen "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the Lagos University Teaching Hospital", "context": {"start": 344, "end": 349, "input": "tokens", "text": "by the NSIA , while the Lagos University Teaching Hospital ( LUTH ) was chosen "}}, {"origin": {"segment": "content_strict", "context": {"start": 369, "end": 370, "input": "tokens", "text": "North . \n \" This FMC has deepened services in internal "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 369, "end": 370, "input": "tokens", "text": "North . \n \" This FMC has deepened services in internal "}}, {"origin": {"segment": "content_strict", "context": {"start": 412, "end": 413, "input": "tokens", "text": "purpose - built In - Vitro Fertilisation laboratory , which is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Vitro", "context": {"start": 412, "end": 413, "input": "tokens", "text": "purpose - built In - Vitro Fertilisation laboratory , which is "}}, {"origin": {"segment": "content_strict", "context": {"start": 472, "end": 474, "input": "tokens", "text": "including three neurosurgeons at the FMC Umuahia opportunity to give their best "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC Umuahia", "context": {"start": 472, "end": 474, "input": "tokens", "text": "including three neurosurgeons at the FMC Umuahia opportunity to give their best "}}, {"origin": {"segment": "content_strict", "context": {"start": 492, "end": 493, "input": "tokens", "text": "developed the passion to turn FMC Umuahia into a medical haven "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC", "context": {"start": 492, "end": 493, "input": "tokens", "text": "developed the passion to turn FMC Umuahia into a medical haven "}}, {"origin": {"segment": "content_strict", "context": {"start": 575, "end": 577, "input": "tokens", "text": "world class medical care at FMC Umuahia , \" the MD explained "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC Umuahia", "context": {"start": 575, "end": 577, "input": "tokens", "text": "world class medical care at FMC Umuahia , \" the MD explained "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 43, "end": 44, "input": "tokens", "text": ", the medical director ( MD ) , Dr Chuku Abali "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "MD", "context": {"start": 43, "end": 44, "input": "tokens", "text": ", the medical director ( MD ) , Dr Chuku Abali "}}, {"origin": {"segment": "content_strict", "context": {"start": 266, "end": 267, "input": "tokens", "text": ") machine to compliment the CT scanner already in use . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "CT", "context": {"start": 266, "end": 267, "input": "tokens", "text": ") machine to compliment the CT scanner already in use . "}}, {"origin": {"segment": "content_strict", "context": {"start": 507, "end": 510, "input": "tokens", "text": "five months medical care in the United Kingdom , following an assassination attempt "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the United Kingdom", "context": {"start": 507, "end": 510, "input": "tokens", "text": "five months medical care in the United Kingdom , following an assassination attempt "}}, {"origin": {"segment": "content_strict", "context": {"start": 540, "end": 541, "input": "tokens", "text": "facilities I saw there ( UK ) , \" he said "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "UK", "context": {"start": 540, "end": 541, "input": "tokens", "text": "facilities I saw there ( UK ) , \" he said "}}, {"origin": {"segment": "content_strict", "context": {"start": 580, "end": 581, "input": "tokens", "text": "FMC Umuahia , \" the MD explained . \n "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "MD", "context": {"start": 580, "end": 581, "input": "tokens", "text": "FMC Umuahia , \" the MD explained . \n "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Emmanuel Ugwu \n With the expansion undergone "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Emmanuel Ugwu", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Emmanuel Ugwu \n With the expansion undergone "}}, {"origin": {"segment": "content_strict", "context": {"start": 46, "end": 49, "input": "tokens", "text": "director ( MD ) , Dr Chuku Abali had said . \n Speaking "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Dr Chuku Abali", "context": {"start": 46, "end": 49, "input": "tokens", "text": "director ( MD ) , Dr Chuku Abali had said . \n Speaking "}}, {"origin": {"segment": "content_strict", "context": {"start": 231, "end": 233, "input": "tokens", "text": "completed next year . \n Dr Abali said that the advanced diagnostic "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Dr Abali", "context": {"start": 231, "end": 233, "input": "tokens", "text": "completed next year . \n Dr Abali said that the advanced diagnostic "}}, {"origin": {"segment": "content_strict", "context": {"start": 350, "end": 351, "input": "tokens", "text": "Lagos University Teaching Hospital ( LUTH ) was chosen from the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "LUTH", "context": {"start": 350, "end": 351, "input": "tokens", "text": "Lagos University Teaching Hospital ( LUTH ) was chosen from the "}}, {"origin": {"segment": "content_strict", "context": {"start": 359, "end": 361, "input": "tokens", "text": "from the South West and Aminu Kano hospital for the North . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Aminu Kano", "context": {"start": 359, "end": 361, "input": "tokens", "text": "from the South West and Aminu Kano hospital for the North . "}}, {"origin": {"segment": "content_strict", "context": {"start": 436, "end": 438, "input": "tokens", "text": "To further improve services , Dr Abali said that management has adopted "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Dr Abali", "context": {"start": 436, "end": 438, "input": "tokens", "text": "To further improve services , Dr Abali said that management has adopted "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 292, "end": 295, "input": "tokens", "text": "the best medical facilities in the South East and South South , \" "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the South East", "context": {"start": 292, "end": 295, "input": "tokens", "text": "the best medical facilities in the South East and South South , \" "}}, {"origin": {"segment": "content_strict", "context": {"start": 296, "end": 298, "input": "tokens", "text": "in the South East and South South , \" he said , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "South South", "context": {"start": 296, "end": 298, "input": "tokens", "text": "in the South East and South South , \" he said , "}}, {"origin": {"segment": "content_strict", "context": {"start": 332, "end": 335, "input": "tokens", "text": "FMC Umuahia was selected for the South East zone in the intervention by "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the South East", "context": {"start": 332, "end": 335, "input": "tokens", "text": "FMC Umuahia was selected for the South East zone in the intervention by "}}, {"origin": {"segment": "content_strict", "context": {"start": 355, "end": 358, "input": "tokens", "text": "LUTH ) was chosen from the South West and Aminu Kano hospital for "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "the South West", "context": {"start": 355, "end": 358, "input": "tokens", "text": "LUTH ) was chosen from the South West and Aminu Kano hospital for "}}, {"origin": {"segment": "content_strict", "context": {"start": 364, "end": 365, "input": "tokens", "text": "Aminu Kano hospital for the North . \n \" This FMC "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "North", "context": {"start": 364, "end": 365, "input": "tokens", "text": "Aminu Kano hospital for the North . \n \" This FMC "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 175, "end": 176, "input": "tokens", "text": "craze for medical tourism by Nigerians , \" he explained . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Nigerians", "context": {"start": 175, "end": 176, "input": "tokens", "text": "craze for medical tourism by Nigerians , \" he explained . "}}]}}}}, "title": {"text": " Nigeria: FMC Umuahia Ripe to Become Teaching Hospital, Says MD - allAfrica.com ", "simple_tokens": ["nigeria", ":", "fmc", "umuahia", "ripe", "to", "become", "teaching", "hospital", ",", "says", "md", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "FMC", "Umuahia", "Ripe", "to", "Become", "Teaching", "Hospital", ",", "Says", "MD", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : FMC Umuahia Ripe to "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : FMC Umuahia Ripe to "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 2, "end": 5, "input": "tokens", "text": "Nigeria : FMC Umuahia Ripe to Become Teaching Hospital , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "FMC Umuahia Ripe", "context": {"start": 2, "end": 5, "input": "tokens", "text": "Nigeria : FMC Umuahia Ripe to Become Teaching Hospital , "}}, {"origin": {"segment": "title", "context": {"start": 11, "end": 14, "input": "tokens", "text": "Become Teaching Hospital , Says MD - allAfrica . com "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "value": "MD - allAfrica", "context": {"start": 11, "end": 14, "input": "tokens", "text": "Become Teaching Hospital , Says MD - allAfrica . com "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:15.910373", "@etk_process_time": 0.5113060474395752, "@etk_start_time": "2017-11-15T01:34:15.399067"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: FMC Umuahia Ripe to Become Teaching Hospital, Says MD - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 3 January 2016\n
\n \n \n

\n Nigeria: FMC Umuahia Ripe to Become Teaching Hospital, Says MD\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Emmanuel Ugwu\n \n

\n With the expansion undergone in terms of medical facilities and availability of highly skilled personnel, the Federal Medical Centre (FMC) Umuahia is ripe to be upgraded to a teaching hospital, the medical director (MD), Dr Chuku Abali had said.\n

\n

\n Speaking with journalists on the progress so far recorded and the future plans for the institution, the MD said the FMC which sits on a 77 hectare in the capital city can comfortably be converted into a teaching hospital. This, he hoped would be realized if Michael Okpara University of Agriculture Umudike (MOUAU) eventually gets the nod to run medical programmes, as planned.\n

\n

\n \"FMC is long overdue to become a teaching hospital,\" he asserted, adding that with the level of excellence it has attained, if more public hospitals could be upgraded to create pockets of excellence\" across the country it would curtail the craze for medical tourism by Nigerians,\" he explained.\n

\n

\n He stated that the FMC has continued to expand its services with building of new wards of 88 beds to increase the existing bed spaces from 287 to 375, while the provision of advanced diagnostic centre and other modern medical equipment would be completed next year.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n Dr Abali said that the advanced diagnostic centre was being funded by the Nigerian Sovereign Investment Authority (NSIA) and would involve installing of magnetic resonance imaging (MRI) machine to compliment the CT scanner already in use.\n

\n
\n
\n
\n
\n

\n \"We plan to deepen our services to make FMC Umuahia stand out as the best medical facilities in the South East and South South,\" he said, adding, \"We feel that improving our services will attract people from far and near\".\n

\n

\n According to him, the FMC Umuahia was selected for the South East zone in the intervention by the NSIA, while the Lagos University Teaching Hospital (LUTH) was chosen from the South West and Aminu Kano hospital for the North.\n

\n

\n \"This FMC has deepened services in internal medicine, while the dialysis centre is undergoing expansion with addition of two dialysis machine to make it six and eventually reach the target of 10, while it also boasts of purpose-built In-Vitro Fertilisation laboratory, which is ranked among the best in the country,\" he stated.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n To further improve services, Dr Abali said that management has adopted the use of social media (WhatsAPP) platform to transmit scan results to doctors, thereby giving the 76 full time consultants, including three neurosurgeons at the FMC Umuahia opportunity to give their best in treating patients. He said that he developed the passion to turn FMC Umuahia into a medical haven when he was undergoing five months medical care in the United Kingdom, following an assassination attempt in October 2011 when armed men shot him.\n

\n

\n \"I promised God that I will replicate the medical facilities I saw there (UK),\" he said, adding \"If we get all that we ask for, there is really no limit to what we can go in providing world class medical care at FMC Umuahia,\" the MD explained.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2", "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"} -{"url": "http://www.ce_news_article.org/2016/01/04/201601040036.html", "knowledge_graph": {"product": [{"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 627, "end": 628, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "group": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 419, "end": 420, "input": "tokens", "text": "group however called on all Bayelsans and supporters of Governor Seriake "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsans"}, {"source": {"segment": "content_relaxed", "context": {"start": 442, "end": 443, "input": "tokens", "text": "group however called on all Bayelsans and supporters of Governor Seriake "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsans"}], "key": "bayelsans", "value": "Bayelsans"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "method": "rearrange_description"}], "key": "description", "value": " \n By Blessing Obineche \n The Bayelsa State Justice Forum, has taken a swipe at the All Progressives Congress (APC), over the claim, that the Governor of Bayelsa and candidate of the Peoples Democratic Party (PDP), offered a bribe of two hundred million Naira, to the State's Resident Electoral Commissioner (REC), Mr. Baritor Kpagih to manipulate the outcome of the December 2015 governorship election in the State, in favor of the PDP. \n The Forum through its Coordinator, Pastor Markson Konugha in a release sent to journalists in Yenegoa, described as false, spurious and baseless, the alarmist cry by the APC, accusing the REC and Governor Seriake Dickson, in the alleged scandal. \n Reacting to the allegation, Pastor Konugha who laughed off the APC allegation being made through one of its front in INEC, Mr Francis Asmakia Tedobserved that while it was not necessary to join issues with the APC, a party which has already lost the governorship election in Bayelsa State, and is reputed to thrive on propaganda and blackmail, it was pertinent to set the records straight so that the unsuspecting public is not misled and misinformed by the APC. \n The Group's Coordinator said the bribe story only exists in the imagination of its authors. He challenged the APC to present evidence of how the alleged sum of N200m was handed to the INEC's REC by Governor Seriake Dickson, through whom, and by what channel it was transmitted. \n The group berated the APC for what he termed its provocative acts of mudslinging, in a desperate bid to manipulate the outcome of the rescheduled elections in the Southern Ijaw Local government area of the State, scheduled for January 9th, 2016, which it said, will not work. \n The group also disclosed that it was aware that investigation is ongoing into the claim by Mr. Baritor Kpagih that some influential politicians attempted to bribe him before the December 2015 Governorship election, as information has it already, that the APC governorship candidate, Chief Timipre Sylva did actually approached the REC, through his wife with a cash sum of One million US Dollars which was out rightly rejected by Mrs. Kpaghi. \n The group however called on all Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue to support the PDP administration in the state to deliver on its agenda of economic development, job and wealth creation, as well as industrialisation. \n "}], "location_non_gpe": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 308, "end": 313, "input": "tokens", "text": "of the rescheduled elections in the Southern Ijaw Local government area of the State , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Southern Ijaw Local government"}, {"source": {"segment": "content_relaxed", "context": {"start": 331, "end": 336, "input": "tokens", "text": "of the rescheduled elections in the Southern Ijaw Local government area of the State , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Southern Ijaw Local government"}], "key": "the southern ijaw local government", "value": "the Southern Ijaw Local government"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 597, "end": 598, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Bayelsa Election - Sylva Not Dickson, Attempted to Bribe Bayelsa REC, Group as Alleges - allAfrica.com "}], "money": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 48, "end": 51, "input": "tokens", "text": ", offered a bribe of two hundred million Naira , to the State "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "two hundred million"}, {"source": {"segment": "content_relaxed", "context": {"start": 71, "end": 74, "input": "tokens", "text": ", offered a bribe of two hundred million Naira , to the State "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "two hundred million"}], "key": "two hundred million", "value": "two hundred million"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 398, "end": 400, "input": "tokens", "text": "with a cash sum of One million US Dollars which was out "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "One million"}, {"source": {"segment": "content_relaxed", "context": {"start": 421, "end": 423, "input": "tokens", "text": "with a cash sum of One million US Dollars which was out "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "One million"}], "key": "one million", "value": "One million"}], "organization_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 5, "end": 10, "input": "tokens", "text": "\n By Blessing Obineche \n The Bayelsa State Justice Forum , has taken a swipe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bayelsa State Justice Forum"}, {"source": {"segment": "content_relaxed", "context": {"start": 28, "end": 33, "input": "tokens", "text": "\n By Blessing Obineche \n The Bayelsa State Justice Forum , has taken a swipe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bayelsa State Justice Forum"}], "key": "the bayelsa state justice forum", "value": "The Bayelsa State Justice Forum"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 17, "end": 20, "input": "tokens", "text": "taken a swipe at the All Progressives Congress ( APC ) , over "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}, {"source": {"segment": "content_relaxed", "context": {"start": 40, "end": 43, "input": "tokens", "text": "taken a swipe at the All Progressives Congress ( APC ) , over "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}], "key": "all progressives congress", "value": "All Progressives Congress"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 21, "end": 22, "input": "tokens", "text": "the All Progressives Congress ( APC ) , over the claim "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 121, "end": 122, "input": "tokens", "text": "the alarmist cry by the APC , accusing the REC and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 148, "end": 149, "input": "tokens", "text": "Konugha who laughed off the APC allegation being made through one "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 175, "end": 176, "input": "tokens", "text": "to join issues with the APC , a party which has "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 220, "end": 221, "input": "tokens", "text": "misled and misinformed by the APC . \n The Group ' "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 244, "end": 245, "input": "tokens", "text": "authors . He challenged the APC to present evidence of how "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 377, "end": 378, "input": "tokens", "text": "it already , that the APC governorship candidate , Chief Timipre "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 44, "end": 45, "input": "tokens", "text": "the All Progressives Congress ( APC ) , over the claim "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 144, "end": 145, "input": "tokens", "text": "the alarmist cry by the APC , accusing the REC and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 171, "end": 172, "input": "tokens", "text": "Konugha who laughed off the APC allegation being made through one "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 198, "end": 199, "input": "tokens", "text": "to join issues with the APC , a party which has "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 243, "end": 244, "input": "tokens", "text": "misled and misinformed by the APC . \n The Group ' "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 267, "end": 268, "input": "tokens", "text": "authors . He challenged the APC to present evidence of how "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 400, "end": 401, "input": "tokens", "text": "it already , that the APC governorship candidate , Chief Timipre "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}], "key": "apc", "value": "APC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 36, "end": 40, "input": "tokens", "text": "of Bayelsa and candidate of the Peoples Democratic Party ( PDP ) , offered "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}, {"source": {"segment": "content_relaxed", "context": {"start": 59, "end": 63, "input": "tokens", "text": "of Bayelsa and candidate of the Peoples Democratic Party ( PDP ) , offered "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}], "key": "the peoples democratic party", "value": "the Peoples Democratic Party"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 41, "end": 42, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) , offered a bribe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 87, "end": 88, "input": "tokens", "text": ", in favor of the PDP . \n The Forum through "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 434, "end": 435, "input": "tokens", "text": "and continue to support the PDP administration in the state to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 64, "end": 65, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) , offered a bribe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 110, "end": 111, "input": "tokens", "text": ", in favor of the PDP . \n The Forum through "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 457, "end": 458, "input": "tokens", "text": "and continue to support the PDP administration in the state to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}], "key": "pdp", "value": "PDP"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 55, "end": 56, "input": "tokens", "text": "million Naira , to the State ' s Resident Electoral Commissioner "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_strict", "context": {"start": 81, "end": 82, "input": "tokens", "text": "2015 governorship election in the State , in favor of the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_strict", "context": {"start": 316, "end": 317, "input": "tokens", "text": "Local government area of the State , scheduled for January 9th "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 78, "end": 79, "input": "tokens", "text": "million Naira , to the State ' s Resident Electoral Commissioner "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 104, "end": 105, "input": "tokens", "text": "2015 governorship election in the State , in favor of the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 339, "end": 340, "input": "tokens", "text": "Local government area of the State , scheduled for January 9th "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}], "key": "state", "value": "State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 125, "end": 126, "input": "tokens", "text": "the APC , accusing the REC and Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}, {"source": {"segment": "content_strict", "context": {"start": 262, "end": 263, "input": "tokens", "text": "to the INEC ' s REC by Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}, {"source": {"segment": "content_strict", "context": {"start": 388, "end": 389, "input": "tokens", "text": "Sylva did actually approached the REC , through his wife with "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}, {"source": {"segment": "content_relaxed", "context": {"start": 148, "end": 149, "input": "tokens", "text": "the APC , accusing the REC and Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}, {"source": {"segment": "content_relaxed", "context": {"start": 285, "end": 286, "input": "tokens", "text": "to the INEC ' s REC by Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}, {"source": {"segment": "content_relaxed", "context": {"start": 411, "end": 412, "input": "tokens", "text": "Sylva did actually approached the REC , through his wife with "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}], "key": "rec", "value": "REC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 158, "end": 159, "input": "tokens", "text": "one of its front in INEC , Mr Francis Asmakia Tedobserved "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_strict", "context": {"start": 259, "end": 260, "input": "tokens", "text": "N200m was handed to the INEC ' s REC by Governor "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 181, "end": 182, "input": "tokens", "text": "one of its front in INEC , Mr Francis Asmakia Tedobserved "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 282, "end": 283, "input": "tokens", "text": "N200m was handed to the INEC ' s REC by Governor "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}], "key": "inec", "value": "INEC"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 160, "end": 164, "input": "tokens", "text": "its front in INEC , Mr Francis Asmakia Tedobserved that while it was not "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mr Francis Asmakia Tedobserved"}, {"source": {"segment": "content_relaxed", "context": {"start": 183, "end": 187, "input": "tokens", "text": "its front in INEC , Mr Francis Asmakia Tedobserved that while it was not "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mr Francis Asmakia Tedobserved"}], "key": "mr francis asmakia tedobserved", "value": "Mr Francis Asmakia Tedobserved"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 223, "end": 225, "input": "tokens", "text": "by the APC . \n The Group ' s Coordinator said the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Group"}, {"source": {"segment": "content_relaxed", "context": {"start": 246, "end": 248, "input": "tokens", "text": "by the APC . \n The Group ' s Coordinator said the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Group"}], "key": "the group", "value": "The Group"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 283, "end": 286, "input": "tokens", "text": ". \n The group berated the APC for what he termed its provocative "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the APC for"}, {"source": {"segment": "content_relaxed", "context": {"start": 306, "end": 309, "input": "tokens", "text": ". \n The group berated the APC for what he termed its provocative "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the APC for"}], "key": "the apc for", "value": "the APC for"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Bayelsa Election - Sylva Not Dickson , Attempted to Bribe Bayelsa "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dickson"}, {"source": {"segment": "title", "context": {"start": 7, "end": 8, "input": "tokens", "text": "Bayelsa Election - Sylva Not Dickson , Attempted to Bribe Bayelsa "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dickson"}], "key": "dickson", "value": "Dickson"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 18, "end": 21, "input": "tokens", "text": ", Attempted to Bribe Bayelsa REC , Group as Alleges \n By Blessing "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC , Group"}, {"source": {"segment": "title", "context": {"start": 13, "end": 16, "input": "tokens", "text": ", Attempted to Bribe Bayelsa REC , Group as Alleges - allAfrica . "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC , Group"}], "key": "rec , group", "value": "REC , Group"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 491, "end": 492, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 493, "end": 496, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 32, "end": 33, "input": "tokens", "text": ", that the Governor of Bayelsa and candidate of the Peoples "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}, {"source": {"segment": "content_relaxed", "context": {"start": 55, "end": 56, "input": "tokens", "text": ", that the Governor of Bayelsa and candidate of the Peoples "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}], "key": "bayelsa", "value": "Bayelsa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 106, "end": 107, "input": "tokens", "text": "release sent to journalists in Yenegoa , described as false , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yenegoa"}, {"source": {"segment": "content_relaxed", "context": {"start": 129, "end": 130, "input": "tokens", "text": "release sent to journalists in Yenegoa , described as false , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yenegoa"}], "key": "yenegoa", "value": "Yenegoa"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 187, "end": 189, "input": "tokens", "text": "lost the governorship election in Bayelsa State , and is reputed to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 210, "end": 212, "input": "tokens", "text": "lost the governorship election in Bayelsa State , and is reputed to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}], "key": "bayelsa state", "value": "Bayelsa State"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 254, "end": 255, "input": "tokens", "text": "how the alleged sum of N200m was handed to the INEC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "N200m"}, {"source": {"segment": "content_relaxed", "context": {"start": 277, "end": 278, "input": "tokens", "text": "how the alleged sum of N200m was handed to the INEC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "N200m"}], "key": "n200m", "value": "N200m"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 400, "end": 401, "input": "tokens", "text": "cash sum of One million US Dollars which was out rightly "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_relaxed", "context": {"start": 423, "end": 424, "input": "tokens", "text": "cash sum of One million US Dollars which was out rightly "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}], "key": "us", "value": "US"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 4 January 2016 \n Nigeria : Bayelsa Election - Sylva "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bayelsa Election - Sylva "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "person_name": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Blessing Obineche \n The Bayelsa State Justice "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blessing Obineche"}, {"source": {"segment": "content_relaxed", "context": {"start": 25, "end": 27, "input": "tokens", "text": "Group as Alleges \n By Blessing Obineche \n The Bayelsa State Justice "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blessing Obineche"}], "key": "blessing obineche", "value": "Blessing Obineche"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 96, "end": 99, "input": "tokens", "text": "Forum through its Coordinator , Pastor Markson Konugha in a release sent to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pastor Markson Konugha"}, {"source": {"segment": "content_relaxed", "context": {"start": 119, "end": 122, "input": "tokens", "text": "Forum through its Coordinator , Pastor Markson Konugha in a release sent to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pastor Markson Konugha"}], "key": "pastor markson konugha", "value": "Pastor Markson Konugha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 128, "end": 130, "input": "tokens", "text": "accusing the REC and Governor Seriake Dickson , in the alleged scandal "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}, {"source": {"segment": "content_strict", "context": {"start": 265, "end": 267, "input": "tokens", "text": "' s REC by Governor Seriake Dickson , through whom , and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}, {"source": {"segment": "content_strict", "context": {"start": 424, "end": 426, "input": "tokens", "text": "Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}, {"source": {"segment": "content_relaxed", "context": {"start": 151, "end": 153, "input": "tokens", "text": "accusing the REC and Governor Seriake Dickson , in the alleged scandal "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}, {"source": {"segment": "content_relaxed", "context": {"start": 288, "end": 290, "input": "tokens", "text": "' s REC by Governor Seriake Dickson , through whom , and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}, {"source": {"segment": "content_relaxed", "context": {"start": 447, "end": 449, "input": "tokens", "text": "Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}], "key": "seriake dickson", "value": "Seriake Dickson"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 142, "end": 144, "input": "tokens", "text": "Reacting to the allegation , Pastor Konugha who laughed off the APC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pastor Konugha"}, {"source": {"segment": "content_relaxed", "context": {"start": 165, "end": 167, "input": "tokens", "text": "Reacting to the allegation , Pastor Konugha who laughed off the APC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pastor Konugha"}], "key": "pastor konugha", "value": "Pastor Konugha"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 352, "end": 354, "input": "tokens", "text": "the claim by Mr . Baritor Kpagih that some influential politicians attempted "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Baritor Kpagih"}, {"source": {"segment": "content_relaxed", "context": {"start": 375, "end": 377, "input": "tokens", "text": "the claim by Mr . Baritor Kpagih that some influential politicians attempted "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Baritor Kpagih"}], "key": "baritor kpagih", "value": "Baritor Kpagih"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 382, "end": 384, "input": "tokens", "text": "APC governorship candidate , Chief Timipre Sylva did actually approached the REC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylva"}, {"source": {"segment": "content_relaxed", "context": {"start": 405, "end": 407, "input": "tokens", "text": "APC governorship candidate , Chief Timipre Sylva did actually approached the REC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylva"}], "key": "timipre sylva", "value": "Timipre Sylva"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 410, "end": 411, "input": "tokens", "text": "rightly rejected by Mrs . Kpaghi . \n The group however "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kpaghi"}, {"source": {"segment": "content_relaxed", "context": {"start": 433, "end": 434, "input": "tokens", "text": "rightly rejected by Mrs . Kpaghi . \n The group however "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kpaghi"}], "key": "kpaghi", "value": "Kpaghi"}, {"confidence": 1, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 11, "input": "tokens", "text": "January 2016 \n Nigeria : Bayelsa Election - Sylva Not Dickson , Attempted to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa Election - Sylva"}, {"source": {"segment": "title", "context": {"start": 2, "end": 6, "input": "tokens", "text": "Nigeria : Bayelsa Election - Sylva Not Dickson , Attempted to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa Election - Sylva"}], "key": "bayelsa election - sylva", "value": "Bayelsa Election - Sylva"}]}, "content_extraction": {"content_relaxed": {"text": " \n 4 January 2016 \n Nigeria: Bayelsa Election - Sylva Not Dickson, Attempted to Bribe Bayelsa REC, Group as Alleges \n By Blessing Obineche \n The Bayelsa State Justice Forum, has taken a swipe at the All Progressives Congress (APC), over the claim, that the Governor of Bayelsa and candidate of the Peoples Democratic Party (PDP), offered a bribe of two hundred million Naira, to the State's Resident Electoral Commissioner (REC), Mr. Baritor Kpagih to manipulate the outcome of the December 2015 governorship election in the State, in favor of the PDP. \n The Forum through its Coordinator, Pastor Markson Konugha in a release sent to journalists in Yenegoa, described as false, spurious and baseless, the alarmist cry by the APC, accusing the REC and Governor Seriake Dickson, in the alleged scandal. \n Reacting to the allegation, Pastor Konugha who laughed off the APC allegation being made through one of its front in INEC, Mr Francis Asmakia Tedobserved that while it was not necessary to join issues with the APC, a party which has already lost the governorship election in Bayelsa State, and is reputed to thrive on propaganda and blackmail, it was pertinent to set the records straight so that the unsuspecting public is not misled and misinformed by the APC. \n The Group's Coordinator said the bribe story only exists in the imagination of its authors. He challenged the APC to present evidence of how the alleged sum of N200m was handed to the INEC's REC by Governor Seriake Dickson, through whom, and by what channel it was transmitted. \n The group berated the APC for what he termed its provocative acts of mudslinging, in a desperate bid to manipulate the outcome of the rescheduled elections in the Southern Ijaw Local government area of the State, scheduled for January 9th, 2016, which it said, will not work. \n The group also disclosed that it was aware that investigation is ongoing into the claim by Mr. Baritor Kpagih that some influential politicians attempted to bribe him before the December 2015 Governorship election, as information has it already, that the APC governorship candidate, Chief Timipre Sylva did actually approached the REC, through his wife with a cash sum of One million US Dollars which was out rightly rejected by Mrs. Kpaghi. \n The group however called on all Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue to support the PDP administration in the state to deliver on its agenda of economic development, job and wealth creation, as well as industrialisation. \n Copyright \n 2016 Leadership. All rights reserved. Distributed by AllAfrica Global Media ( \n allAfrica.com \n ). \n To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material, \n click here. \n AllAfrica publishes around 900 reports a day from more than \n 140 news organizations \n and over \n 500 other institutions and individuals \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct. \n Articles and commentaries that identify allAfrica.com as the publisher are \n produced or commissioned by AllAfrica \n . To address comments or complaints, please \n Contact us \n . \n Follow AllAfrica \n ", "simple_tokens": ["\n", "4", "january", "2016", "\n", "nigeria", ":", "bayelsa", "election", "-", "sylva", "not", "dickson", ",", "attempted", "to", "bribe", "bayelsa", "rec", ",", "group", "as", "alleges", "\n", "by", "blessing", "obineche", "\n", "the", "bayelsa", "state", "justice", "forum", ",", "has", "taken", "a", "swipe", "at", "the", "all", "progressives", "congress", "(", "apc", ")", ",", "over", "the", "claim", ",", "that", "the", "governor", "of", "bayelsa", "and", "candidate", "of", "the", "peoples", "democratic", "party", "(", "pdp", ")", ",", "offered", "a", "bribe", "of", "two", "hundred", "million", "naira", ",", "to", "the", "state", "'", "s", "resident", "electoral", "commissioner", "(", "rec", ")", ",", "mr", ".", "baritor", "kpagih", "to", "manipulate", "the", "outcome", "of", "the", "december", "2015", "governorship", "election", "in", "the", "state", ",", "in", "favor", "of", "the", "pdp", ".", "\n", "the", "forum", "through", "its", "coordinator", ",", "pastor", "markson", "konugha", "in", "a", "release", "sent", "to", "journalists", "in", "yenegoa", ",", "described", "as", "false", ",", "spurious", "and", "baseless", ",", "the", "alarmist", "cry", "by", "the", "apc", ",", "accusing", "the", "rec", "and", "governor", "seriake", "dickson", ",", "in", "the", "alleged", "scandal", ".", "\n", "reacting", "to", "the", "allegation", ",", "pastor", "konugha", "who", "laughed", "off", "the", "apc", "allegation", "being", "made", "through", "one", "of", "its", "front", "in", "inec", ",", "mr", "francis", "asmakia", "tedobserved", "that", "while", "it", "was", "not", "necessary", "to", "join", "issues", "with", "the", "apc", ",", "a", "party", "which", "has", "already", "lost", "the", "governorship", "election", "in", "bayelsa", "state", ",", "and", "is", "reputed", "to", "thrive", "on", "propaganda", "and", "blackmail", ",", "it", "was", "pertinent", "to", "set", "the", "records", "straight", "so", "that", "the", "unsuspecting", "public", "is", "not", "misled", "and", "misinformed", "by", "the", "apc", ".", "\n", "the", "group", "'", "s", "coordinator", "said", "the", "bribe", "story", "only", "exists", "in", "the", "imagination", "of", "its", "authors", ".", "he", "challenged", "the", "apc", "to", "present", "evidence", "of", "how", "the", "alleged", "sum", "of", "n200m", "was", "handed", "to", "the", "inec", "'", "s", "rec", "by", "governor", "seriake", "dickson", ",", "through", "whom", ",", "and", "by", "what", "channel", "it", "was", "transmitted", ".", "\n", "the", "group", "berated", "the", "apc", "for", "what", "he", "termed", "its", "provocative", "acts", "of", "mudslinging", ",", "in", "a", "desperate", "bid", "to", "manipulate", "the", "outcome", "of", "the", "rescheduled", "elections", "in", "the", "southern", "ijaw", "local", "government", "area", "of", "the", "state", ",", "scheduled", "for", "january", "9th", ",", "2016", ",", "which", "it", "said", ",", "will", "not", "work", ".", "\n", "the", "group", "also", "disclosed", "that", "it", "was", "aware", "that", "investigation", "is", "ongoing", "into", "the", "claim", "by", "mr", ".", "baritor", "kpagih", "that", "some", "influential", "politicians", "attempted", "to", "bribe", "him", "before", "the", "december", "2015", "governorship", "election", ",", "as", "information", "has", "it", "already", ",", "that", "the", "apc", "governorship", "candidate", ",", "chief", "timipre", "sylva", "did", "actually", "approached", "the", "rec", ",", "through", "his", "wife", "with", "a", "cash", "sum", "of", "one", "million", "us", "dollars", "which", "was", "out", "rightly", "rejected", "by", "mrs", ".", "kpaghi", ".", "\n", "the", "group", "however", "called", "on", "all", "bayelsans", "and", "supporters", "of", "governor", "seriake", "dickson", "to", "remain", "steadfast", "and", "continue", "to", "support", "the", "pdp", "administration", "in", "the", "state", "to", "deliver", "on", "its", "agenda", "of", "economic", "development", ",", "job", "and", "wealth", "creation", ",", "as", "well", "as", "industrialisation", ".", "\n", "copyright", "\n", "2016", "leadership", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "\n", "allafrica", ".", "com", "\n", ")", ".", "\n", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "allafrica", "\n", ".", "to", "address", "comments", "or", "complaints", ",", "please", "\n", "contact", "us", "\n", ".", "\n", "follow", "allafrica", "\n"], "simple_tokens_original_case": ["\n", "4", "January", "2016", "\n", "Nigeria", ":", "Bayelsa", "Election", "-", "Sylva", "Not", "Dickson", ",", "Attempted", "to", "Bribe", "Bayelsa", "REC", ",", "Group", "as", "Alleges", "\n", "By", "Blessing", "Obineche", "\n", "The", "Bayelsa", "State", "Justice", "Forum", ",", "has", "taken", "a", "swipe", "at", "the", "All", "Progressives", "Congress", "(", "APC", ")", ",", "over", "the", "claim", ",", "that", "the", "Governor", "of", "Bayelsa", "and", "candidate", "of", "the", "Peoples", "Democratic", "Party", "(", "PDP", ")", ",", "offered", "a", "bribe", "of", "two", "hundred", "million", "Naira", ",", "to", "the", "State", "'", "s", "Resident", "Electoral", "Commissioner", "(", "REC", ")", ",", "Mr", ".", "Baritor", "Kpagih", "to", "manipulate", "the", "outcome", "of", "the", "December", "2015", "governorship", "election", "in", "the", "State", ",", "in", "favor", "of", "the", "PDP", ".", "\n", "The", "Forum", "through", "its", "Coordinator", ",", "Pastor", "Markson", "Konugha", "in", "a", "release", "sent", "to", "journalists", "in", "Yenegoa", ",", "described", "as", "false", ",", "spurious", "and", "baseless", ",", "the", "alarmist", "cry", "by", "the", "APC", ",", "accusing", "the", "REC", "and", "Governor", "Seriake", "Dickson", ",", "in", "the", "alleged", "scandal", ".", "\n", "Reacting", "to", "the", "allegation", ",", "Pastor", "Konugha", "who", "laughed", "off", "the", "APC", "allegation", "being", "made", "through", "one", "of", "its", "front", "in", "INEC", ",", "Mr", "Francis", "Asmakia", "Tedobserved", "that", "while", "it", "was", "not", "necessary", "to", "join", "issues", "with", "the", "APC", ",", "a", "party", "which", "has", "already", "lost", "the", "governorship", "election", "in", "Bayelsa", "State", ",", "and", "is", "reputed", "to", "thrive", "on", "propaganda", "and", "blackmail", ",", "it", "was", "pertinent", "to", "set", "the", "records", "straight", "so", "that", "the", "unsuspecting", "public", "is", "not", "misled", "and", "misinformed", "by", "the", "APC", ".", "\n", "The", "Group", "'", "s", "Coordinator", "said", "the", "bribe", "story", "only", "exists", "in", "the", "imagination", "of", "its", "authors", ".", "He", "challenged", "the", "APC", "to", "present", "evidence", "of", "how", "the", "alleged", "sum", "of", "N200m", "was", "handed", "to", "the", "INEC", "'", "s", "REC", "by", "Governor", "Seriake", "Dickson", ",", "through", "whom", ",", "and", "by", "what", "channel", "it", "was", "transmitted", ".", "\n", "The", "group", "berated", "the", "APC", "for", "what", "he", "termed", "its", "provocative", "acts", "of", "mudslinging", ",", "in", "a", "desperate", "bid", "to", "manipulate", "the", "outcome", "of", "the", "rescheduled", "elections", "in", "the", "Southern", "Ijaw", "Local", "government", "area", "of", "the", "State", ",", "scheduled", "for", "January", "9th", ",", "2016", ",", "which", "it", "said", ",", "will", "not", "work", ".", "\n", "The", "group", "also", "disclosed", "that", "it", "was", "aware", "that", "investigation", "is", "ongoing", "into", "the", "claim", "by", "Mr", ".", "Baritor", "Kpagih", "that", "some", "influential", "politicians", "attempted", "to", "bribe", "him", "before", "the", "December", "2015", "Governorship", "election", ",", "as", "information", "has", "it", "already", ",", "that", "the", "APC", "governorship", "candidate", ",", "Chief", "Timipre", "Sylva", "did", "actually", "approached", "the", "REC", ",", "through", "his", "wife", "with", "a", "cash", "sum", "of", "One", "million", "US", "Dollars", "which", "was", "out", "rightly", "rejected", "by", "Mrs", ".", "Kpaghi", ".", "\n", "The", "group", "however", "called", "on", "all", "Bayelsans", "and", "supporters", "of", "Governor", "Seriake", "Dickson", "to", "remain", "steadfast", "and", "continue", "to", "support", "the", "PDP", "administration", "in", "the", "state", "to", "deliver", "on", "its", "agenda", "of", "economic", "development", ",", "job", "and", "wealth", "creation", ",", "as", "well", "as", "industrialisation", ".", "\n", "Copyright", "\n", "2016", "Leadership", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "\n", "allAfrica", ".", "com", "\n", ")", ".", "\n", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "\n", "click", "here", ".", "\n", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "\n", "140", "news", "organizations", "\n", "and", "over", "\n", "500", "other", "institutions", "and", "individuals", "\n", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "\n", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "\n", "produced", "or", "commissioned", "by", "AllAfrica", "\n", ".", "To", "address", "comments", "or", "complaints", ",", "please", "\n", "Contact", "us", "\n", ".", "\n", "Follow", "AllAfrica", "\n"], "data_extraction": {"product": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 627, "end": 628, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "AllAfrica", "context": {"start": 627, "end": 628, "input": "tokens", "text": "\n produced or commissioned by AllAfrica \n . To address comments "}}]}}, "group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 442, "end": 443, "input": "tokens", "text": "group however called on all Bayelsans and supporters of Governor Seriake "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Bayelsans", "context": {"start": 442, "end": 443, "input": "tokens", "text": "group however called on all Bayelsans and supporters of Governor Seriake "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 331, "end": 336, "input": "tokens", "text": "of the rescheduled elections in the Southern Ijaw Local government area of the State , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "the Southern Ijaw Local government", "context": {"start": 331, "end": 336, "input": "tokens", "text": "of the rescheduled elections in the Southern Ijaw Local government area of the State , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 597, "end": 598, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "AllAfrica", "context": {"start": 597, "end": 598, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}}]}}, "money": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 71, "end": 74, "input": "tokens", "text": ", offered a bribe of two hundred million Naira , to the State "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "two hundred million", "context": {"start": 71, "end": 74, "input": "tokens", "text": ", offered a bribe of two hundred million Naira , to the State "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 421, "end": 423, "input": "tokens", "text": "with a cash sum of One million US Dollars which was out "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "One million", "context": {"start": 421, "end": 423, "input": "tokens", "text": "with a cash sum of One million US Dollars which was out "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Bayelsa Election - Sylva Not Dickson , Attempted to Bribe Bayelsa "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Dickson", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Bayelsa Election - Sylva Not Dickson , Attempted to Bribe Bayelsa "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 18, "end": 21, "input": "tokens", "text": ", Attempted to Bribe Bayelsa REC , Group as Alleges \n By Blessing "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "REC , Group", "context": {"start": 18, "end": 21, "input": "tokens", "text": ", Attempted to Bribe Bayelsa REC , Group as Alleges \n By Blessing "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 28, "end": 33, "input": "tokens", "text": "\n By Blessing Obineche \n The Bayelsa State Justice Forum , has taken a swipe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "The Bayelsa State Justice Forum", "context": {"start": 28, "end": 33, "input": "tokens", "text": "\n By Blessing Obineche \n The Bayelsa State Justice Forum , has taken a swipe "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 40, "end": 43, "input": "tokens", "text": "taken a swipe at the All Progressives Congress ( APC ) , over "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "All Progressives Congress", "context": {"start": 40, "end": 43, "input": "tokens", "text": "taken a swipe at the All Progressives Congress ( APC ) , over "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 44, "end": 45, "input": "tokens", "text": "the All Progressives Congress ( APC ) , over the claim "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 44, "end": 45, "input": "tokens", "text": "the All Progressives Congress ( APC ) , over the claim "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 59, "end": 63, "input": "tokens", "text": "of Bayelsa and candidate of the Peoples Democratic Party ( PDP ) , offered "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "the Peoples Democratic Party", "context": {"start": 59, "end": 63, "input": "tokens", "text": "of Bayelsa and candidate of the Peoples Democratic Party ( PDP ) , offered "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 64, "end": 65, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) , offered a bribe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "PDP", "context": {"start": 64, "end": 65, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) , offered a bribe "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 78, "end": 79, "input": "tokens", "text": "million Naira , to the State ' s Resident Electoral Commissioner "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "State", "context": {"start": 78, "end": 79, "input": "tokens", "text": "million Naira , to the State ' s Resident Electoral Commissioner "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 104, "end": 105, "input": "tokens", "text": "2015 governorship election in the State , in favor of the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "State", "context": {"start": 104, "end": 105, "input": "tokens", "text": "2015 governorship election in the State , in favor of the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 110, "end": 111, "input": "tokens", "text": ", in favor of the PDP . \n The Forum through "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "PDP", "context": {"start": 110, "end": 111, "input": "tokens", "text": ", in favor of the PDP . \n The Forum through "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 144, "end": 145, "input": "tokens", "text": "the alarmist cry by the APC , accusing the REC and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 144, "end": 145, "input": "tokens", "text": "the alarmist cry by the APC , accusing the REC and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 148, "end": 149, "input": "tokens", "text": "the APC , accusing the REC and Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "REC", "context": {"start": 148, "end": 149, "input": "tokens", "text": "the APC , accusing the REC and Governor Seriake Dickson , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 171, "end": 172, "input": "tokens", "text": "Konugha who laughed off the APC allegation being made through one "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 171, "end": 172, "input": "tokens", "text": "Konugha who laughed off the APC allegation being made through one "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 181, "end": 182, "input": "tokens", "text": "one of its front in INEC , Mr Francis Asmakia Tedobserved "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "INEC", "context": {"start": 181, "end": 182, "input": "tokens", "text": "one of its front in INEC , Mr Francis Asmakia Tedobserved "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 183, "end": 187, "input": "tokens", "text": "its front in INEC , Mr Francis Asmakia Tedobserved that while it was not "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Mr Francis Asmakia Tedobserved", "context": {"start": 183, "end": 187, "input": "tokens", "text": "its front in INEC , Mr Francis Asmakia Tedobserved that while it was not "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 198, "end": 199, "input": "tokens", "text": "to join issues with the APC , a party which has "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 198, "end": 199, "input": "tokens", "text": "to join issues with the APC , a party which has "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 243, "end": 244, "input": "tokens", "text": "misled and misinformed by the APC . \n The Group ' "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 243, "end": 244, "input": "tokens", "text": "misled and misinformed by the APC . \n The Group ' "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 246, "end": 248, "input": "tokens", "text": "by the APC . \n The Group ' s Coordinator said the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "The Group", "context": {"start": 246, "end": 248, "input": "tokens", "text": "by the APC . \n The Group ' s Coordinator said the "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 267, "end": 268, "input": "tokens", "text": "authors . He challenged the APC to present evidence of how "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 267, "end": 268, "input": "tokens", "text": "authors . He challenged the APC to present evidence of how "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 282, "end": 283, "input": "tokens", "text": "N200m was handed to the INEC ' s REC by Governor "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "INEC", "context": {"start": 282, "end": 283, "input": "tokens", "text": "N200m was handed to the INEC ' s REC by Governor "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 285, "end": 286, "input": "tokens", "text": "to the INEC ' s REC by Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "REC", "context": {"start": 285, "end": 286, "input": "tokens", "text": "to the INEC ' s REC by Governor Seriake Dickson , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 306, "end": 309, "input": "tokens", "text": ". \n The group berated the APC for what he termed its provocative "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "the APC for", "context": {"start": 306, "end": 309, "input": "tokens", "text": ". \n The group berated the APC for what he termed its provocative "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 339, "end": 340, "input": "tokens", "text": "Local government area of the State , scheduled for January 9th "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "State", "context": {"start": 339, "end": 340, "input": "tokens", "text": "Local government area of the State , scheduled for January 9th "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 400, "end": 401, "input": "tokens", "text": "it already , that the APC governorship candidate , Chief Timipre "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 400, "end": 401, "input": "tokens", "text": "it already , that the APC governorship candidate , Chief Timipre "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 411, "end": 412, "input": "tokens", "text": "Sylva did actually approached the REC , through his wife with "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "REC", "context": {"start": 411, "end": 412, "input": "tokens", "text": "Sylva did actually approached the REC , through his wife with "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 457, "end": 458, "input": "tokens", "text": "and continue to support the PDP administration in the state to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "PDP", "context": {"start": 457, "end": 458, "input": "tokens", "text": "and continue to support the PDP administration in the state to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 491, "end": 492, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Distributed", "context": {"start": 491, "end": 492, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 493, "end": 496, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "AllAfrica Global Media", "context": {"start": 493, "end": 496, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( \n allAfrica . com "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 4 January 2016 \n Nigeria : Bayelsa Election - Sylva "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Nigeria", "context": {"start": 5, "end": 6, "input": "tokens", "text": "\n 4 January 2016 \n Nigeria : Bayelsa Election - Sylva "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 55, "end": 56, "input": "tokens", "text": ", that the Governor of Bayelsa and candidate of the Peoples "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Bayelsa", "context": {"start": 55, "end": 56, "input": "tokens", "text": ", that the Governor of Bayelsa and candidate of the Peoples "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 129, "end": 130, "input": "tokens", "text": "release sent to journalists in Yenegoa , described as false , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Yenegoa", "context": {"start": 129, "end": 130, "input": "tokens", "text": "release sent to journalists in Yenegoa , described as false , "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 210, "end": 212, "input": "tokens", "text": "lost the governorship election in Bayelsa State , and is reputed to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Bayelsa State", "context": {"start": 210, "end": 212, "input": "tokens", "text": "lost the governorship election in Bayelsa State , and is reputed to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 277, "end": 278, "input": "tokens", "text": "how the alleged sum of N200m was handed to the INEC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "N200m", "context": {"start": 277, "end": 278, "input": "tokens", "text": "how the alleged sum of N200m was handed to the INEC "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 423, "end": 424, "input": "tokens", "text": "cash sum of One million US Dollars which was out rightly "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "US", "context": {"start": 423, "end": 424, "input": "tokens", "text": "cash sum of One million US Dollars which was out rightly "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_relaxed", "context": {"start": 7, "end": 11, "input": "tokens", "text": "January 2016 \n Nigeria : Bayelsa Election - Sylva Not Dickson , Attempted to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Bayelsa Election - Sylva", "context": {"start": 7, "end": 11, "input": "tokens", "text": "January 2016 \n Nigeria : Bayelsa Election - Sylva Not Dickson , Attempted to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 25, "end": 27, "input": "tokens", "text": "Group as Alleges \n By Blessing Obineche \n The Bayelsa State Justice "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Blessing Obineche", "context": {"start": 25, "end": 27, "input": "tokens", "text": "Group as Alleges \n By Blessing Obineche \n The Bayelsa State Justice "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 119, "end": 122, "input": "tokens", "text": "Forum through its Coordinator , Pastor Markson Konugha in a release sent to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Pastor Markson Konugha", "context": {"start": 119, "end": 122, "input": "tokens", "text": "Forum through its Coordinator , Pastor Markson Konugha in a release sent to "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 151, "end": 153, "input": "tokens", "text": "accusing the REC and Governor Seriake Dickson , in the alleged scandal "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Seriake Dickson", "context": {"start": 151, "end": 153, "input": "tokens", "text": "accusing the REC and Governor Seriake Dickson , in the alleged scandal "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 165, "end": 167, "input": "tokens", "text": "Reacting to the allegation , Pastor Konugha who laughed off the APC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Pastor Konugha", "context": {"start": 165, "end": 167, "input": "tokens", "text": "Reacting to the allegation , Pastor Konugha who laughed off the APC "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 288, "end": 290, "input": "tokens", "text": "' s REC by Governor Seriake Dickson , through whom , and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Seriake Dickson", "context": {"start": 288, "end": 290, "input": "tokens", "text": "' s REC by Governor Seriake Dickson , through whom , and "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 375, "end": 377, "input": "tokens", "text": "the claim by Mr . Baritor Kpagih that some influential politicians attempted "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Baritor Kpagih", "context": {"start": 375, "end": 377, "input": "tokens", "text": "the claim by Mr . Baritor Kpagih that some influential politicians attempted "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 405, "end": 407, "input": "tokens", "text": "APC governorship candidate , Chief Timipre Sylva did actually approached the REC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Timipre Sylva", "context": {"start": 405, "end": 407, "input": "tokens", "text": "APC governorship candidate , Chief Timipre Sylva did actually approached the REC "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 433, "end": 434, "input": "tokens", "text": "rightly rejected by Mrs . Kpaghi . \n The group however "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Kpaghi", "context": {"start": 433, "end": 434, "input": "tokens", "text": "rightly rejected by Mrs . Kpaghi . \n The group however "}}, {"origin": {"segment": "content_relaxed", "context": {"start": 447, "end": 449, "input": "tokens", "text": "Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Seriake Dickson", "context": {"start": 447, "end": 449, "input": "tokens", "text": "Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue "}}]}}}}, "url": {"text": "http://www.ce_news_article.org/2016/01/04/201601040036.html"}, "content_strict": {"text": " \n By Blessing Obineche \n The Bayelsa State Justice Forum, has taken a swipe at the All Progressives Congress (APC), over the claim, that the Governor of Bayelsa and candidate of the Peoples Democratic Party (PDP), offered a bribe of two hundred million Naira, to the State's Resident Electoral Commissioner (REC), Mr. Baritor Kpagih to manipulate the outcome of the December 2015 governorship election in the State, in favor of the PDP. \n The Forum through its Coordinator, Pastor Markson Konugha in a release sent to journalists in Yenegoa, described as false, spurious and baseless, the alarmist cry by the APC, accusing the REC and Governor Seriake Dickson, in the alleged scandal. \n Reacting to the allegation, Pastor Konugha who laughed off the APC allegation being made through one of its front in INEC, Mr Francis Asmakia Tedobserved that while it was not necessary to join issues with the APC, a party which has already lost the governorship election in Bayelsa State, and is reputed to thrive on propaganda and blackmail, it was pertinent to set the records straight so that the unsuspecting public is not misled and misinformed by the APC. \n The Group's Coordinator said the bribe story only exists in the imagination of its authors. He challenged the APC to present evidence of how the alleged sum of N200m was handed to the INEC's REC by Governor Seriake Dickson, through whom, and by what channel it was transmitted. \n The group berated the APC for what he termed its provocative acts of mudslinging, in a desperate bid to manipulate the outcome of the rescheduled elections in the Southern Ijaw Local government area of the State, scheduled for January 9th, 2016, which it said, will not work. \n The group also disclosed that it was aware that investigation is ongoing into the claim by Mr. Baritor Kpagih that some influential politicians attempted to bribe him before the December 2015 Governorship election, as information has it already, that the APC governorship candidate, Chief Timipre Sylva did actually approached the REC, through his wife with a cash sum of One million US Dollars which was out rightly rejected by Mrs. Kpaghi. \n The group however called on all Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue to support the PDP administration in the state to deliver on its agenda of economic development, job and wealth creation, as well as industrialisation. \n ", "simple_tokens": ["\n", "by", "blessing", "obineche", "\n", "the", "bayelsa", "state", "justice", "forum", ",", "has", "taken", "a", "swipe", "at", "the", "all", "progressives", "congress", "(", "apc", ")", ",", "over", "the", "claim", ",", "that", "the", "governor", "of", "bayelsa", "and", "candidate", "of", "the", "peoples", "democratic", "party", "(", "pdp", ")", ",", "offered", "a", "bribe", "of", "two", "hundred", "million", "naira", ",", "to", "the", "state", "'", "s", "resident", "electoral", "commissioner", "(", "rec", ")", ",", "mr", ".", "baritor", "kpagih", "to", "manipulate", "the", "outcome", "of", "the", "december", "2015", "governorship", "election", "in", "the", "state", ",", "in", "favor", "of", "the", "pdp", ".", "\n", "the", "forum", "through", "its", "coordinator", ",", "pastor", "markson", "konugha", "in", "a", "release", "sent", "to", "journalists", "in", "yenegoa", ",", "described", "as", "false", ",", "spurious", "and", "baseless", ",", "the", "alarmist", "cry", "by", "the", "apc", ",", "accusing", "the", "rec", "and", "governor", "seriake", "dickson", ",", "in", "the", "alleged", "scandal", ".", "\n", "reacting", "to", "the", "allegation", ",", "pastor", "konugha", "who", "laughed", "off", "the", "apc", "allegation", "being", "made", "through", "one", "of", "its", "front", "in", "inec", ",", "mr", "francis", "asmakia", "tedobserved", "that", "while", "it", "was", "not", "necessary", "to", "join", "issues", "with", "the", "apc", ",", "a", "party", "which", "has", "already", "lost", "the", "governorship", "election", "in", "bayelsa", "state", ",", "and", "is", "reputed", "to", "thrive", "on", "propaganda", "and", "blackmail", ",", "it", "was", "pertinent", "to", "set", "the", "records", "straight", "so", "that", "the", "unsuspecting", "public", "is", "not", "misled", "and", "misinformed", "by", "the", "apc", ".", "\n", "the", "group", "'", "s", "coordinator", "said", "the", "bribe", "story", "only", "exists", "in", "the", "imagination", "of", "its", "authors", ".", "he", "challenged", "the", "apc", "to", "present", "evidence", "of", "how", "the", "alleged", "sum", "of", "n200m", "was", "handed", "to", "the", "inec", "'", "s", "rec", "by", "governor", "seriake", "dickson", ",", "through", "whom", ",", "and", "by", "what", "channel", "it", "was", "transmitted", ".", "\n", "the", "group", "berated", "the", "apc", "for", "what", "he", "termed", "its", "provocative", "acts", "of", "mudslinging", ",", "in", "a", "desperate", "bid", "to", "manipulate", "the", "outcome", "of", "the", "rescheduled", "elections", "in", "the", "southern", "ijaw", "local", "government", "area", "of", "the", "state", ",", "scheduled", "for", "january", "9th", ",", "2016", ",", "which", "it", "said", ",", "will", "not", "work", ".", "\n", "the", "group", "also", "disclosed", "that", "it", "was", "aware", "that", "investigation", "is", "ongoing", "into", "the", "claim", "by", "mr", ".", "baritor", "kpagih", "that", "some", "influential", "politicians", "attempted", "to", "bribe", "him", "before", "the", "december", "2015", "governorship", "election", ",", "as", "information", "has", "it", "already", ",", "that", "the", "apc", "governorship", "candidate", ",", "chief", "timipre", "sylva", "did", "actually", "approached", "the", "rec", ",", "through", "his", "wife", "with", "a", "cash", "sum", "of", "one", "million", "us", "dollars", "which", "was", "out", "rightly", "rejected", "by", "mrs", ".", "kpaghi", ".", "\n", "the", "group", "however", "called", "on", "all", "bayelsans", "and", "supporters", "of", "governor", "seriake", "dickson", "to", "remain", "steadfast", "and", "continue", "to", "support", "the", "pdp", "administration", "in", "the", "state", "to", "deliver", "on", "its", "agenda", "of", "economic", "development", ",", "job", "and", "wealth", "creation", ",", "as", "well", "as", "industrialisation", ".", "\n"], "simple_tokens_original_case": ["\n", "By", "Blessing", "Obineche", "\n", "The", "Bayelsa", "State", "Justice", "Forum", ",", "has", "taken", "a", "swipe", "at", "the", "All", "Progressives", "Congress", "(", "APC", ")", ",", "over", "the", "claim", ",", "that", "the", "Governor", "of", "Bayelsa", "and", "candidate", "of", "the", "Peoples", "Democratic", "Party", "(", "PDP", ")", ",", "offered", "a", "bribe", "of", "two", "hundred", "million", "Naira", ",", "to", "the", "State", "'", "s", "Resident", "Electoral", "Commissioner", "(", "REC", ")", ",", "Mr", ".", "Baritor", "Kpagih", "to", "manipulate", "the", "outcome", "of", "the", "December", "2015", "governorship", "election", "in", "the", "State", ",", "in", "favor", "of", "the", "PDP", ".", "\n", "The", "Forum", "through", "its", "Coordinator", ",", "Pastor", "Markson", "Konugha", "in", "a", "release", "sent", "to", "journalists", "in", "Yenegoa", ",", "described", "as", "false", ",", "spurious", "and", "baseless", ",", "the", "alarmist", "cry", "by", "the", "APC", ",", "accusing", "the", "REC", "and", "Governor", "Seriake", "Dickson", ",", "in", "the", "alleged", "scandal", ".", "\n", "Reacting", "to", "the", "allegation", ",", "Pastor", "Konugha", "who", "laughed", "off", "the", "APC", "allegation", "being", "made", "through", "one", "of", "its", "front", "in", "INEC", ",", "Mr", "Francis", "Asmakia", "Tedobserved", "that", "while", "it", "was", "not", "necessary", "to", "join", "issues", "with", "the", "APC", ",", "a", "party", "which", "has", "already", "lost", "the", "governorship", "election", "in", "Bayelsa", "State", ",", "and", "is", "reputed", "to", "thrive", "on", "propaganda", "and", "blackmail", ",", "it", "was", "pertinent", "to", "set", "the", "records", "straight", "so", "that", "the", "unsuspecting", "public", "is", "not", "misled", "and", "misinformed", "by", "the", "APC", ".", "\n", "The", "Group", "'", "s", "Coordinator", "said", "the", "bribe", "story", "only", "exists", "in", "the", "imagination", "of", "its", "authors", ".", "He", "challenged", "the", "APC", "to", "present", "evidence", "of", "how", "the", "alleged", "sum", "of", "N200m", "was", "handed", "to", "the", "INEC", "'", "s", "REC", "by", "Governor", "Seriake", "Dickson", ",", "through", "whom", ",", "and", "by", "what", "channel", "it", "was", "transmitted", ".", "\n", "The", "group", "berated", "the", "APC", "for", "what", "he", "termed", "its", "provocative", "acts", "of", "mudslinging", ",", "in", "a", "desperate", "bid", "to", "manipulate", "the", "outcome", "of", "the", "rescheduled", "elections", "in", "the", "Southern", "Ijaw", "Local", "government", "area", "of", "the", "State", ",", "scheduled", "for", "January", "9th", ",", "2016", ",", "which", "it", "said", ",", "will", "not", "work", ".", "\n", "The", "group", "also", "disclosed", "that", "it", "was", "aware", "that", "investigation", "is", "ongoing", "into", "the", "claim", "by", "Mr", ".", "Baritor", "Kpagih", "that", "some", "influential", "politicians", "attempted", "to", "bribe", "him", "before", "the", "December", "2015", "Governorship", "election", ",", "as", "information", "has", "it", "already", ",", "that", "the", "APC", "governorship", "candidate", ",", "Chief", "Timipre", "Sylva", "did", "actually", "approached", "the", "REC", ",", "through", "his", "wife", "with", "a", "cash", "sum", "of", "One", "million", "US", "Dollars", "which", "was", "out", "rightly", "rejected", "by", "Mrs", ".", "Kpaghi", ".", "\n", "The", "group", "however", "called", "on", "all", "Bayelsans", "and", "supporters", "of", "Governor", "Seriake", "Dickson", "to", "remain", "steadfast", "and", "continue", "to", "support", "the", "PDP", "administration", "in", "the", "state", "to", "deliver", "on", "its", "agenda", "of", "economic", "development", ",", "job", "and", "wealth", "creation", ",", "as", "well", "as", "industrialisation", ".", "\n"], "data_extraction": {"group": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 419, "end": 420, "input": "tokens", "text": "group however called on all Bayelsans and supporters of Governor Seriake "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Bayelsans", "context": {"start": 419, "end": 420, "input": "tokens", "text": "group however called on all Bayelsans and supporters of Governor Seriake "}}]}}, "location_non_gpe": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 308, "end": 313, "input": "tokens", "text": "of the rescheduled elections in the Southern Ijaw Local government area of the State , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "the Southern Ijaw Local government", "context": {"start": 308, "end": 313, "input": "tokens", "text": "of the rescheduled elections in the Southern Ijaw Local government area of the State , "}}]}}, "money": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 48, "end": 51, "input": "tokens", "text": ", offered a bribe of two hundred million Naira , to the State "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "two hundred million", "context": {"start": 48, "end": 51, "input": "tokens", "text": ", offered a bribe of two hundred million Naira , to the State "}}, {"origin": {"segment": "content_strict", "context": {"start": 398, "end": 400, "input": "tokens", "text": "with a cash sum of One million US Dollars which was out "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "One million", "context": {"start": 398, "end": 400, "input": "tokens", "text": "with a cash sum of One million US Dollars which was out "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 5, "end": 10, "input": "tokens", "text": "\n By Blessing Obineche \n The Bayelsa State Justice Forum , has taken a swipe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "The Bayelsa State Justice Forum", "context": {"start": 5, "end": 10, "input": "tokens", "text": "\n By Blessing Obineche \n The Bayelsa State Justice Forum , has taken a swipe "}}, {"origin": {"segment": "content_strict", "context": {"start": 17, "end": 20, "input": "tokens", "text": "taken a swipe at the All Progressives Congress ( APC ) , over "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "All Progressives Congress", "context": {"start": 17, "end": 20, "input": "tokens", "text": "taken a swipe at the All Progressives Congress ( APC ) , over "}}, {"origin": {"segment": "content_strict", "context": {"start": 21, "end": 22, "input": "tokens", "text": "the All Progressives Congress ( APC ) , over the claim "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 21, "end": 22, "input": "tokens", "text": "the All Progressives Congress ( APC ) , over the claim "}}, {"origin": {"segment": "content_strict", "context": {"start": 36, "end": 40, "input": "tokens", "text": "of Bayelsa and candidate of the Peoples Democratic Party ( PDP ) , offered "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "the Peoples Democratic Party", "context": {"start": 36, "end": 40, "input": "tokens", "text": "of Bayelsa and candidate of the Peoples Democratic Party ( PDP ) , offered "}}, {"origin": {"segment": "content_strict", "context": {"start": 41, "end": 42, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) , offered a bribe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "PDP", "context": {"start": 41, "end": 42, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) , offered a bribe "}}, {"origin": {"segment": "content_strict", "context": {"start": 55, "end": 56, "input": "tokens", "text": "million Naira , to the State ' s Resident Electoral Commissioner "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "State", "context": {"start": 55, "end": 56, "input": "tokens", "text": "million Naira , to the State ' s Resident Electoral Commissioner "}}, {"origin": {"segment": "content_strict", "context": {"start": 81, "end": 82, "input": "tokens", "text": "2015 governorship election in the State , in favor of the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "State", "context": {"start": 81, "end": 82, "input": "tokens", "text": "2015 governorship election in the State , in favor of the "}}, {"origin": {"segment": "content_strict", "context": {"start": 87, "end": 88, "input": "tokens", "text": ", in favor of the PDP . \n The Forum through "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "PDP", "context": {"start": 87, "end": 88, "input": "tokens", "text": ", in favor of the PDP . \n The Forum through "}}, {"origin": {"segment": "content_strict", "context": {"start": 121, "end": 122, "input": "tokens", "text": "the alarmist cry by the APC , accusing the REC and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 121, "end": 122, "input": "tokens", "text": "the alarmist cry by the APC , accusing the REC and "}}, {"origin": {"segment": "content_strict", "context": {"start": 125, "end": 126, "input": "tokens", "text": "the APC , accusing the REC and Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "REC", "context": {"start": 125, "end": 126, "input": "tokens", "text": "the APC , accusing the REC and Governor Seriake Dickson , "}}, {"origin": {"segment": "content_strict", "context": {"start": 148, "end": 149, "input": "tokens", "text": "Konugha who laughed off the APC allegation being made through one "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 148, "end": 149, "input": "tokens", "text": "Konugha who laughed off the APC allegation being made through one "}}, {"origin": {"segment": "content_strict", "context": {"start": 158, "end": 159, "input": "tokens", "text": "one of its front in INEC , Mr Francis Asmakia Tedobserved "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "INEC", "context": {"start": 158, "end": 159, "input": "tokens", "text": "one of its front in INEC , Mr Francis Asmakia Tedobserved "}}, {"origin": {"segment": "content_strict", "context": {"start": 160, "end": 164, "input": "tokens", "text": "its front in INEC , Mr Francis Asmakia Tedobserved that while it was not "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Mr Francis Asmakia Tedobserved", "context": {"start": 160, "end": 164, "input": "tokens", "text": "its front in INEC , Mr Francis Asmakia Tedobserved that while it was not "}}, {"origin": {"segment": "content_strict", "context": {"start": 175, "end": 176, "input": "tokens", "text": "to join issues with the APC , a party which has "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 175, "end": 176, "input": "tokens", "text": "to join issues with the APC , a party which has "}}, {"origin": {"segment": "content_strict", "context": {"start": 220, "end": 221, "input": "tokens", "text": "misled and misinformed by the APC . \n The Group ' "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 220, "end": 221, "input": "tokens", "text": "misled and misinformed by the APC . \n The Group ' "}}, {"origin": {"segment": "content_strict", "context": {"start": 223, "end": 225, "input": "tokens", "text": "by the APC . \n The Group ' s Coordinator said the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "The Group", "context": {"start": 223, "end": 225, "input": "tokens", "text": "by the APC . \n The Group ' s Coordinator said the "}}, {"origin": {"segment": "content_strict", "context": {"start": 244, "end": 245, "input": "tokens", "text": "authors . He challenged the APC to present evidence of how "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 244, "end": 245, "input": "tokens", "text": "authors . He challenged the APC to present evidence of how "}}, {"origin": {"segment": "content_strict", "context": {"start": 259, "end": 260, "input": "tokens", "text": "N200m was handed to the INEC ' s REC by Governor "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "INEC", "context": {"start": 259, "end": 260, "input": "tokens", "text": "N200m was handed to the INEC ' s REC by Governor "}}, {"origin": {"segment": "content_strict", "context": {"start": 262, "end": 263, "input": "tokens", "text": "to the INEC ' s REC by Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "REC", "context": {"start": 262, "end": 263, "input": "tokens", "text": "to the INEC ' s REC by Governor Seriake Dickson , "}}, {"origin": {"segment": "content_strict", "context": {"start": 283, "end": 286, "input": "tokens", "text": ". \n The group berated the APC for what he termed its provocative "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "the APC for", "context": {"start": 283, "end": 286, "input": "tokens", "text": ". \n The group berated the APC for what he termed its provocative "}}, {"origin": {"segment": "content_strict", "context": {"start": 316, "end": 317, "input": "tokens", "text": "Local government area of the State , scheduled for January 9th "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "State", "context": {"start": 316, "end": 317, "input": "tokens", "text": "Local government area of the State , scheduled for January 9th "}}, {"origin": {"segment": "content_strict", "context": {"start": 377, "end": 378, "input": "tokens", "text": "it already , that the APC governorship candidate , Chief Timipre "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "APC", "context": {"start": 377, "end": 378, "input": "tokens", "text": "it already , that the APC governorship candidate , Chief Timipre "}}, {"origin": {"segment": "content_strict", "context": {"start": 388, "end": 389, "input": "tokens", "text": "Sylva did actually approached the REC , through his wife with "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "REC", "context": {"start": 388, "end": 389, "input": "tokens", "text": "Sylva did actually approached the REC , through his wife with "}}, {"origin": {"segment": "content_strict", "context": {"start": 434, "end": 435, "input": "tokens", "text": "and continue to support the PDP administration in the state to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "PDP", "context": {"start": 434, "end": 435, "input": "tokens", "text": "and continue to support the PDP administration in the state to "}}]}}, "city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 32, "end": 33, "input": "tokens", "text": ", that the Governor of Bayelsa and candidate of the Peoples "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Bayelsa", "context": {"start": 32, "end": 33, "input": "tokens", "text": ", that the Governor of Bayelsa and candidate of the Peoples "}}, {"origin": {"segment": "content_strict", "context": {"start": 106, "end": 107, "input": "tokens", "text": "release sent to journalists in Yenegoa , described as false , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Yenegoa", "context": {"start": 106, "end": 107, "input": "tokens", "text": "release sent to journalists in Yenegoa , described as false , "}}, {"origin": {"segment": "content_strict", "context": {"start": 187, "end": 189, "input": "tokens", "text": "lost the governorship election in Bayelsa State , and is reputed to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Bayelsa State", "context": {"start": 187, "end": 189, "input": "tokens", "text": "lost the governorship election in Bayelsa State , and is reputed to "}}, {"origin": {"segment": "content_strict", "context": {"start": 254, "end": 255, "input": "tokens", "text": "how the alleged sum of N200m was handed to the INEC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "N200m", "context": {"start": 254, "end": 255, "input": "tokens", "text": "how the alleged sum of N200m was handed to the INEC "}}, {"origin": {"segment": "content_strict", "context": {"start": 400, "end": 401, "input": "tokens", "text": "cash sum of One million US Dollars which was out rightly "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "US", "context": {"start": 400, "end": 401, "input": "tokens", "text": "cash sum of One million US Dollars which was out rightly "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Blessing Obineche \n The Bayelsa State Justice "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Blessing Obineche", "context": {"start": 2, "end": 4, "input": "tokens", "text": "\n By Blessing Obineche \n The Bayelsa State Justice "}}, {"origin": {"segment": "content_strict", "context": {"start": 96, "end": 99, "input": "tokens", "text": "Forum through its Coordinator , Pastor Markson Konugha in a release sent to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Pastor Markson Konugha", "context": {"start": 96, "end": 99, "input": "tokens", "text": "Forum through its Coordinator , Pastor Markson Konugha in a release sent to "}}, {"origin": {"segment": "content_strict", "context": {"start": 128, "end": 130, "input": "tokens", "text": "accusing the REC and Governor Seriake Dickson , in the alleged scandal "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Seriake Dickson", "context": {"start": 128, "end": 130, "input": "tokens", "text": "accusing the REC and Governor Seriake Dickson , in the alleged scandal "}}, {"origin": {"segment": "content_strict", "context": {"start": 142, "end": 144, "input": "tokens", "text": "Reacting to the allegation , Pastor Konugha who laughed off the APC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Pastor Konugha", "context": {"start": 142, "end": 144, "input": "tokens", "text": "Reacting to the allegation , Pastor Konugha who laughed off the APC "}}, {"origin": {"segment": "content_strict", "context": {"start": 265, "end": 267, "input": "tokens", "text": "' s REC by Governor Seriake Dickson , through whom , and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Seriake Dickson", "context": {"start": 265, "end": 267, "input": "tokens", "text": "' s REC by Governor Seriake Dickson , through whom , and "}}, {"origin": {"segment": "content_strict", "context": {"start": 352, "end": 354, "input": "tokens", "text": "the claim by Mr . Baritor Kpagih that some influential politicians attempted "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Baritor Kpagih", "context": {"start": 352, "end": 354, "input": "tokens", "text": "the claim by Mr . Baritor Kpagih that some influential politicians attempted "}}, {"origin": {"segment": "content_strict", "context": {"start": 382, "end": 384, "input": "tokens", "text": "APC governorship candidate , Chief Timipre Sylva did actually approached the REC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Timipre Sylva", "context": {"start": 382, "end": 384, "input": "tokens", "text": "APC governorship candidate , Chief Timipre Sylva did actually approached the REC "}}, {"origin": {"segment": "content_strict", "context": {"start": 410, "end": 411, "input": "tokens", "text": "rightly rejected by Mrs . Kpaghi . \n The group however "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Kpaghi", "context": {"start": 410, "end": 411, "input": "tokens", "text": "rightly rejected by Mrs . Kpaghi . \n The group however "}}, {"origin": {"segment": "content_strict", "context": {"start": 424, "end": 426, "input": "tokens", "text": "Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Seriake Dickson", "context": {"start": 424, "end": 426, "input": "tokens", "text": "Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue "}}]}}}}, "title": {"text": " Nigeria: Bayelsa Election - Sylva Not Dickson, Attempted to Bribe Bayelsa REC, Group as Alleges - allAfrica.com ", "simple_tokens": ["nigeria", ":", "bayelsa", "election", "-", "sylva", "not", "dickson", ",", "attempted", "to", "bribe", "bayelsa", "rec", ",", "group", "as", "alleges", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Bayelsa", "Election", "-", "Sylva", "Not", "Dickson", ",", "Attempted", "to", "Bribe", "Bayelsa", "REC", ",", "Group", "as", "Alleges", "-", "allAfrica", ".", "com"], "data_extraction": {"city_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bayelsa Election - Sylva "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Nigeria", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bayelsa Election - Sylva "}}]}}, "organization_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 7, "end": 8, "input": "tokens", "text": "Bayelsa Election - Sylva Not Dickson , Attempted to Bribe Bayelsa "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Dickson", "context": {"start": 7, "end": 8, "input": "tokens", "text": "Bayelsa Election - Sylva Not Dickson , Attempted to Bribe Bayelsa "}}, {"origin": {"segment": "title", "context": {"start": 13, "end": 16, "input": "tokens", "text": ", Attempted to Bribe Bayelsa REC , Group as Alleges - allAfrica . "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "REC , Group", "context": {"start": 13, "end": 16, "input": "tokens", "text": ", Attempted to Bribe Bayelsa REC , Group as Alleges - allAfrica . "}}]}}, "person_name": {"extract_using_default_spacy": {"results": [{"origin": {"segment": "title", "context": {"start": 2, "end": 6, "input": "tokens", "text": "Nigeria : Bayelsa Election - Sylva Not Dickson , Attempted to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "value": "Bayelsa Election - Sylva", "context": {"start": 2, "end": 6, "input": "tokens", "text": "Nigeria : Bayelsa Election - Sylva Not Dickson , Attempted to "}}]}}}}}, "@execution_profile": {"@etk_end_time": "2017-11-15T01:34:16.364867", "@etk_process_time": 0.45214200019836426, "@etk_start_time": "2017-11-15T01:34:15.912725"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Bayelsa Election - Sylva Not Dickson, Attempted to Bribe Bayelsa REC, Group as Alleges - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 4 January 2016\n
\n \n \n

\n Nigeria: Bayelsa Election - Sylva Not Dickson, Attempted to Bribe Bayelsa REC, Group as Alleges\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Blessing Obineche\n \n

\n The Bayelsa State Justice Forum, has taken a swipe at the All Progressives Congress (APC), over the claim, that the Governor of Bayelsa and candidate of the Peoples Democratic Party (PDP), offered a bribe of two hundred million Naira, to the State's Resident Electoral Commissioner (REC), Mr. Baritor Kpagih to manipulate the outcome of the December 2015 governorship election in the State, in favor of the PDP.\n

\n

\n The Forum through its Coordinator, Pastor Markson Konugha in a release sent to journalists in Yenegoa, described as false, spurious and baseless, the alarmist cry by the APC, accusing the REC and Governor Seriake Dickson, in the alleged scandal.\n

\n

\n Reacting to the allegation, Pastor Konugha who laughed off the APC allegation being made through one of its front in INEC, Mr Francis Asmakia Tedobserved that while it was not necessary to join issues with the APC, a party which has already lost the governorship election in Bayelsa State, and is reputed to thrive on propaganda and blackmail, it was pertinent to set the records straight so that the unsuspecting public is not misled and misinformed by the APC.\n

\n

\n The Group's Coordinator said the bribe story only exists in the imagination of its authors. He challenged the APC to present evidence of how the alleged sum of N200m was handed to the INEC's REC by Governor Seriake Dickson, through whom, and by what channel it was transmitted.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
\n
\n

\n The group berated the APC for what he termed its provocative acts of mudslinging, in a desperate bid to manipulate the outcome of the rescheduled elections in the Southern Ijaw Local government area of the State, scheduled for January 9th, 2016, which it said, will not work.\n

\n

\n The group also disclosed that it was aware that investigation is ongoing into the claim by Mr. Baritor Kpagih that some influential politicians attempted to bribe him before the December 2015 Governorship election, as information has it already, that the APC governorship candidate, Chief Timipre Sylva did actually approached the REC, through his wife with a cash sum of One million US Dollars which was out rightly rejected by Mrs. Kpaghi.\n

\n

\n The group however called on all Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue to support the PDP administration in the state to deliver on its agenda of economic development, job and wealth creation, as well as industrialisation.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Leadership. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E", "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"} +{"url": "http://www.ce_news_article.org/2016/01/01/201601010124.html", "knowledge_graph": {"group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 14, "end": 15, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing symbol "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 197, "end": 198, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 25, "end": 26, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing symbol "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 208, "end": 209, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 70, "end": 71, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 81, "end": 82, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "method": "rearrange_description"}], "key": "description", "value": "

The Presidency has denied speculations that the Buhari administration has banned Hijab, the Muslim women's dressing symbol of modesty.

Giving a clarification on the pronouncement of the President on Media Chat on Wednesday, the Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said the speculations were unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone.

Mr. Shehu, while admitting thatHijab is being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, said the President would not take any decision on the issue without due consultation with all the stakeholders.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said.

According to him, the increasing abuse of the Hijabby terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 325, "end": 326, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 353, "end": 354, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Presidency Denies Plan to Ban Hijab - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 22, "end": 23, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 38, "end": 42, "input": "tokens", "text": "Media Chat on Wednesday , the Senior Special Assistant to the President on Media "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}, {"source": {"segment": "content_relaxed", "context": {"start": 49, "end": 53, "input": "tokens", "text": "Media Chat on Wednesday , the Senior Special Assistant to the President on Media "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}], "key": "the senior special assistant", "value": "the Senior Special Assistant"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 110, "end": 111, "input": "tokens", "text": "which violates the teachings of Islam , said the President would "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}, {"source": {"segment": "content_relaxed", "context": {"start": 121, "end": 122, "input": "tokens", "text": "which violates the teachings of Islam , said the President would "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}], "key": "islam", "value": "Islam"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 220, "end": 223, "input": "tokens", "text": "a workable solution . Copyright 2016 Premium Times . All rights reserved . "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "2016 Premium Times"}], "key": "2016 premium times", "value": "2016 Premium Times"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 228, "end": 229, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 230, "end": 233, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Presidency Denies Plan to "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 6, "end": 10, "input": "tokens", "text": ": Presidency Denies Plan to Ban Hijab - allAfrica . com "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ban Hijab - allAfrica"}], "key": "ban hijab - allafrica", "value": "Ban Hijab - allAfrica"}], "person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 7, "end": 8, "input": "tokens", "text": "has denied speculations that the Buhari administration has banned Hijab , "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 62, "end": 63, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 18, "end": 19, "input": "tokens", "text": "has denied speculations that the Buhari administration has banned Hijab , "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 73, "end": 74, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 50, "end": 52, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 61, "end": 63, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}], "key": "garba shehu", "value": "Garba Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 86, "end": 87, "input": "tokens", "text": "affects everyone . Mr . Shehu , while admitting thatHijab is "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 97, "end": 98, "input": "tokens", "text": "affects everyone . Mr . Shehu , while admitting thatHijab is "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 171, "end": 172, "input": "tokens", "text": "the increasing abuse of the Hijabby terrorists to perpetrate criminal mass "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijabby"}, {"source": {"segment": "content_relaxed", "context": {"start": 182, "end": 183, "input": "tokens", "text": "the increasing abuse of the Hijabby terrorists to perpetrate criminal mass "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijabby"}], "key": "hijabby", "value": "Hijabby"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 265, "end": 266, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}]}, "content_extraction": {"content_relaxed": {"text": "

1 January 2016

Nigeria: Presidency Denies Plan to Ban Hijab

The Presidency has denied speculations that the Buhari administration has banned Hijab, the Muslim women's dressing symbol of modesty.

Giving a clarification on the pronouncement of the President on Media Chat on Wednesday, the Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said the speculations were unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone.

Mr. Shehu, while admitting thatHijab is being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, said the President would not take any decision on the issue without due consultation with all the stakeholders.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said.

According to him, the increasing abuse of the Hijabby terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

Copyright

2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["1", "january", "2016", "nigeria", ":", "presidency", "denies", "plan", "to", "ban", "hijab", "the", "presidency", "has", "denied", "speculations", "that", "the", "buhari", "administration", "has", "banned", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "on", "media", "chat", "on", "wednesday", ",", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "the", "speculations", "were", "unfounded", ",", "and", "that", "the", "buhari", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "mr", ".", "shehu", ",", "while", "admitting", "thathijab", "is", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "islam", ",", "said", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "according", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "hijabby", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "copyright", "2016", "premium", "times", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["1", "January", "2016", "Nigeria", ":", "Presidency", "Denies", "Plan", "to", "Ban", "Hijab", "The", "Presidency", "has", "denied", "speculations", "that", "the", "Buhari", "administration", "has", "banned", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "on", "Media", "Chat", "on", "Wednesday", ",", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "the", "speculations", "were", "unfounded", ",", "and", "that", "the", "Buhari", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "Mr", ".", "Shehu", ",", "while", "admitting", "thatHijab", "is", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "Islam", ",", "said", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "According", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "Hijabby", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "Copyright", "2016", "Premium", "Times", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/01/201601010124.html"}, "content_strict": {"text": "

The Presidency has denied speculations that the Buhari administration has banned Hijab, the Muslim women's dressing symbol of modesty.

Giving a clarification on the pronouncement of the President on Media Chat on Wednesday, the Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said the speculations were unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone.

Mr. Shehu, while admitting thatHijab is being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, said the President would not take any decision on the issue without due consultation with all the stakeholders.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said.

According to him, the increasing abuse of the Hijabby terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

", "simple_tokens": ["the", "presidency", "has", "denied", "speculations", "that", "the", "buhari", "administration", "has", "banned", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "on", "media", "chat", "on", "wednesday", ",", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "the", "speculations", "were", "unfounded", ",", "and", "that", "the", "buhari", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "mr", ".", "shehu", ",", "while", "admitting", "thathijab", "is", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "islam", ",", "said", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "according", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "hijabby", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "."], "simple_tokens_original_case": ["The", "Presidency", "has", "denied", "speculations", "that", "the", "Buhari", "administration", "has", "banned", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "on", "Media", "Chat", "on", "Wednesday", ",", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "the", "speculations", "were", "unfounded", ",", "and", "that", "the", "Buhari", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "Mr", ".", "Shehu", ",", "while", "admitting", "thatHijab", "is", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "Islam", ",", "said", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "According", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "Hijabby", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "."]}, "title": {"text": " Nigeria: Presidency Denies Plan to Ban Hijab - allAfrica.com ", "simple_tokens": ["nigeria", ":", "presidency", "denies", "plan", "to", "ban", "hijab", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Presidency", "Denies", "Plan", "to", "Ban", "Hijab", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:02.618655", "@etk_process_time": 0.4067080020904541, "@etk_start_time": "2018-06-07T17:34:02.211947"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Presidency Denies Plan to Ban Hijab - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: Presidency Denies Plan to Ban Hijab\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n

\n The Presidency has denied speculations that the Buhari administration has banned Hijab, the Muslim women's dressing symbol of modesty.\n

\n

\n Giving a clarification on the pronouncement of the President on Media Chat on Wednesday, the Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said the speculations were unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone.\n

\n

\n Mr. Shehu, while admitting thatHijab is being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, said the President would not take any decision on the issue without due consultation with all the stakeholders.\n

\n
\n
\n

\n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said.\n

\n

\n According to him, the increasing abuse of the Hijabby terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4", "document_id": "4371C3A9FDB4BA949C7B895D091957E74E4903EA251AD430F39076024F647AF4"} +{"url": "http://www.ce_news_article.org/2016/01/01/201601010132.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 3, "input": "tokens", "text": "By Senator Iroegbu in Abuja , Wole Ayodele "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Iroegbu"}, {"source": {"segment": "content_relaxed", "context": {"start": 20, "end": 21, "input": "tokens", "text": "Abia , Taraba By Senator Iroegbu in Abuja , Wole Ayodele "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Iroegbu"}], "key": "iroegbu", "value": "Iroegbu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 6, "end": 8, "input": "tokens", "text": "Senator Iroegbu in Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Wole Ayodele"}, {"source": {"segment": "content_relaxed", "context": {"start": 24, "end": 26, "input": "tokens", "text": "Senator Iroegbu in Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Wole Ayodele"}], "key": "wole ayodele", "value": "Wole Ayodele"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 11, "end": 13, "input": "tokens", "text": "Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia The Appeal Court "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Emmanuel Ugwu"}, {"source": {"segment": "content_relaxed", "context": {"start": 29, "end": 31, "input": "tokens", "text": "Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia The Appeal Court "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Emmanuel Ugwu"}], "key": "emmanuel ugwu", "value": "Emmanuel Ugwu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 28, "end": 30, "input": "tokens", "text": "on Thursday affirmed Mr . Darius Ishaku of the Peoples Democratic Party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Darius Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 46, "end": 48, "input": "tokens", "text": "on Thursday affirmed Mr . Darius Ishaku of the Peoples Democratic Party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Darius Ishaku"}], "key": "darius ishaku", "value": "Darius Ishaku"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 41, "end": 43, "input": "tokens", "text": "PDP ) and Mr . Alex Otti of the All Progressives Grand "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alex Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 59, "end": 61, "input": "tokens", "text": "PDP ) and Mr . Alex Otti of the All Progressives Grand "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alex Otti"}], "key": "alex otti", "value": "Alex Otti"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 156, "end": 157, "input": "tokens", "text": "of the tribunal . Justice Aboki , who read the unanimous "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aboki"}, {"source": {"segment": "content_relaxed", "context": {"start": 174, "end": 175, "input": "tokens", "text": "of the tribunal . Justice Aboki , who read the unanimous "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aboki"}], "key": "aboki", "value": "Aboki"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 199, "end": 201, "input": "tokens", "text": ", also known as \" Mama Taraba \" , winner of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mama Taraba"}, {"source": {"segment": "content_relaxed", "context": {"start": 217, "end": 219, "input": "tokens", "text": ", also known as \" Mama Taraba \" , winner of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mama Taraba"}], "key": "mama taraba", "value": "Mama Taraba"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 580, "end": 581, "input": "tokens", "text": "vacate his office . Justice Abubakar had in a judgment ordered "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abubakar"}, {"source": {"segment": "content_relaxed", "context": {"start": 598, "end": 599, "input": "tokens", "text": "vacate his office . Justice Abubakar had in a judgment ordered "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abubakar"}], "key": "abubakar", "value": "Abubakar"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 651, "end": 652, "input": "tokens", "text": "Dissatisfied with the judgment , Ishaku filed an appeal , asking "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_strict", "context": {"start": 814, "end": 815, "input": "tokens", "text": "state who overwhelmingly voted for Ishaku as their governor . According "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_strict", "context": {"start": 852, "end": 853, "input": "tokens", "text": "of Taraba who overwhelmingly voted Ishaku as their governor have been "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 669, "end": 670, "input": "tokens", "text": "Dissatisfied with the judgment , Ishaku filed an appeal , asking "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 832, "end": 833, "input": "tokens", "text": "state who overwhelmingly voted for Ishaku as their governor . According "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 870, "end": 871, "input": "tokens", "text": "of Taraba who overwhelmingly voted Ishaku as their governor have been "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}], "key": "ishaku", "value": "Ishaku"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 679, "end": 680, "input": "tokens", "text": "' s ruling yesterday , Jalingo , the Taraba State capital "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jalingo"}, {"source": {"segment": "content_relaxed", "context": {"start": 697, "end": 698, "input": "tokens", "text": "' s ruling yesterday , Jalingo , the Taraba State capital "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jalingo"}], "key": "jalingo", "value": "Jalingo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 717, "end": 719, "input": "tokens", "text": "the streets , particularly around Hammaruwa Way , ATC , Mile 6 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hammaruwa Way"}, {"source": {"segment": "content_relaxed", "context": {"start": 735, "end": 737, "input": "tokens", "text": "the streets , particularly around Hammaruwa Way , ATC , Mile 6 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hammaruwa Way"}], "key": "hammaruwa way", "value": "Hammaruwa Way"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 773, "end": 775, "input": "tokens", "text": "along the major roads . Enyetere Ambituni , one of the jubilant "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Enyetere Ambituni"}, {"source": {"segment": "content_relaxed", "context": {"start": 791, "end": 793, "input": "tokens", "text": "along the major roads . Enyetere Ambituni , one of the jubilant "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Enyetere Ambituni"}], "key": "enyetere ambituni", "value": "Enyetere Ambituni"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 879, "end": 881, "input": "tokens", "text": "State Governor , Dr . Okezie Ikpeazu , and declared the governorship "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okezie Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 897, "end": 899, "input": "tokens", "text": "State Governor , Dr . Okezie Ikpeazu , and declared the governorship "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okezie Ikpeazu"}], "key": "okezie ikpeazu", "value": "Okezie Ikpeazu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 903, "end": 904, "input": "tokens", "text": "election conducted in April . Otti had gone to the appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_strict", "context": {"start": 1175, "end": 1176, "input": "tokens", "text": "flags , singing and praising Otti for his tenacity . However "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 921, "end": 922, "input": "tokens", "text": "election conducted in April . Otti had gone to the appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 1193, "end": 1194, "input": "tokens", "text": "flags , singing and praising Otti for his tenacity . However "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}], "key": "otti", "value": "Otti"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 947, "end": 949, "input": "tokens", "text": "from Obingwa , Osisioma and Isiala Ngwa North Local Government Areas that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Isiala Ngwa"}, {"source": {"segment": "content_relaxed", "context": {"start": 965, "end": 967, "input": "tokens", "text": "from Obingwa , Osisioma and Isiala Ngwa North Local Government Areas that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Isiala Ngwa"}], "key": "isiala ngwa", "value": "Isiala Ngwa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1036, "end": 1037, "input": "tokens", "text": "In the governorship poll , Ikpeazu had emerged winner with 264 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_strict", "context": {"start": 1353, "end": 1354, "input": "tokens", "text": "Election Petitions Tribunal \" . Ikpeazu said though he was yet "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1054, "end": 1055, "input": "tokens", "text": "In the governorship poll , Ikpeazu had emerged winner with 264 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1371, "end": 1372, "input": "tokens", "text": "Election Petitions Tribunal \" . Ikpeazu said though he was yet "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}], "key": "ikpeazu", "value": "Ikpeazu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1568, "end": 1569, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "method": "rearrange_description"}], "key": "description", "value": "

By Senator Iroegbu in Abuja, Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia

The Appeal Court sitting in Abuja and Owerri on Thursday affirmed Mr. Darius Ishaku of the Peoples Democratic Party (PDP) and Mr. Alex Otti of the All Progressives Grand Alliance (APGA) as winners of the April 11 governorship elections in Taraba and Abia States, respectively.

The Abuja appellate court, in its judgment, set aside the decision of the state Election Petitions Tribunal, which sacked the Taraba governor from office based on pre-election matters.

Delivering judgment on the three appeals and cross-appeal that emanated from the judgment of the tribunal, which sat in Abuja because of security concerns in the North-east, a five-member panel of justices headed by Justice Abdul Aboki set aside the ruling of the tribunal.

Justice Aboki, who read the unanimous judgment, held that it was a gross misdirection for the tribunal to have declared the governorship candidate of the All Progressives Congress (APC), Mrs. Aisha Jumai Alhassan, also known as \"Mama Taraba\", winner of the gubernatorial poll on the basis that she scored the second highest number of votes in the election.

The court also held that from the evidence of witnesses to the petitioners before the tribunal, Ishaku was validly elected and sponsored by his party, the PDP, to vie for the governorship seat of the state in accordance with the constitution, the Electoral Act and in accordance with the election guidelines as laid down by the Independent National Electoral Commission (INEC). \"Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null, void and set aside in its entirety.

\"The appellant's appeal is meritorious and is hereby allowed,\" Justice Aboki held. The judge went further to affirm \"Darius Dickson Ishaku as the dully elected governor of Taraba State\". According to the court, APC and its governorship candidate, who were the first and second respondents in the appeal, had no locus standi under the law to challenge the primary election of the PDP, which produced Ishaku as its candidate for the election as none of them is a member of the PDP.

It also held that INEC superintends the activities of political parties and if there was any breach or failure of the PDP to give the electoral body 21 days notice of its primary as alleged, it should not have been the headache of the APC and its governorship candidate, adding that the only person that could have complained of the conduct of a party's primary election was the person who participated in the said primary election and INEC.

According to the court, the Electoral Act specifies the procedures for the election and sponsorship of a candidate by a political party and that the right to complain is limited to participants in the primary election.

The Justice Musa Danladi Abubakar-led tribunal, had in a petition filed by APC and Alhassan, held that the purported nomination of the governorship candidate by PDP breached Section 85 of the Electoral Act and ordered Ishaku to vacate his office.

Justice Abubakar had in a judgment ordered that Alhassan be sworn in as governor because the PDP did not conduct a valid primary that threw Ishaku up as its standard-bearer.

The tribunal however held that the APC governorship candidate could not adequately prove her allegation of \"over-voting, irregularities, and non-compliance with the Electoral Act 2010\".

Dissatisfied with the judgment, Ishaku filed an appeal, asking the appellate court to set aside the judgment of the tribunal. Reacting to the appellate court's ruling yesterday, Jalingo, the Taraba State capital, was thrown into jubilation, as residents marched through major streets of the town in celebration of the judgment.

Residents in their thousands took to the streets, particularly around Hammaruwa Way, ATC, Mile 6 and Magami in motorcades and moved round the town singing and dancing.

Traffic was obstructed and halted for several hours in the town as the convoy, which included women and children, and was carrying large loudspeakers obstructed the flow of traffic along the major roads.

Enyetere Ambituni, one of the jubilant residents, told THISDAY that the judiciary proved once again to be the last hope of the common man and had vindicated the majority of the people of the state who overwhelmingly voted for Ishaku as their governor.

According to him, \"We are celebrating today because the judiciary has once again shown that it is the last hope of the oppressed. The people of Taraba who overwhelmingly voted Ishaku as their governor have been vindicated.\"

In Owerri, the Appeal Court also nullified the election of the Abia State Governor, Dr. Okezie Ikpeazu, and declared the governorship candidate of APGA, Otti, as the winner of the governorship election conducted in April. Otti had gone to the appeal court to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of Ikpeazu.

Just like he did at the tribunal, the APGA candidate contested the controversial results from Obingwa, Osisioma and Isiala Ngwa North Local Government Areas that the returning officer cancelled and later reversed. However, the results from the three local governments turned out to be the determinant in the Appeal Court's judgment delivered by Justice Oyebisi Omoleye.

The five-member panel unanimously agreed that the controversial results should not have been included in the final results and therefore cancelled them and after doing the mathematics, held that Otti scored the highest number of valid votes. In the governorship poll, Ikpeazu had emerged winner with 264,713 as against 180,882 votes credited to Otti by INEC which was affirmed by the tribunal.

But after subtracting the scores of the candidates in the three council areas, the appeal panel held that Otti scored a total of 164,332 votes as against 114,444 obtained by Ikpeazu.

Accordingly, Justice Omoleye held that the APGA candidate was duly elected and should be sworn in as governor of Abia State. Expectedly, when the news of Otti's victory at the appeal court filtered into Umuahia, the capital, there were wild jubilations by supporters of APGA. Scores of jubilant party supporters mounted tricycles and drove along major streets of the capital city waving party flags, singing and praising Otti for his tenacity.

However, the ruling by the appellate court did not go down well with Ikpeazu, whose aide said that the governor would \"definitely challenge the ruling at the Supreme Court\".

Also addressing the press yesterday in Umuahia, Ikpeazu faulted the Appeal Court's judgment, saying that it was untenable and would be challenged at the Supreme Court.

The Abia governor said that he had directed his lawyers to take immediate steps to challenge the judgment at the Supreme Court. \"I wish to state at this point that preliminary reports available to me indicate that the premise upon which the decision of the Court of Appeal was arrived at was at best tenuous,\" he said.

The governor said that in going to the Supreme Court he has \"utmost confidence in the ability of the justices to correct the anomaly at the Court of Appeal and uphold my victory as had been done earlier by the Election Petitions Tribunal\".

Ikpeazu said though he was yet to get a full briefing on the reason the Appeal Court nullified his election, his lawyers were still at Owerri doing everything possible to obtain a copy of the judgment.

\"The next four days are public holidays and the timing of the judgment means that we are losing valuable days to study the judgment and file our appeal,\" he said.

Ikpeazu assured residents of Abia that his status as governor had not changed, adding that all was well. \"I remain the governor of Abia State until the Supreme Court reaffirms my mandate freely given to me by Abians during the election,\" he said.

To avoid a breakdown of law and order, Ikpeazu called on security agencies to maintain the peace and ensure that people go about their legitimate businesses without disruption.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 131, "end": 134, "input": "tokens", "text": "of security concerns in the North - east , a five - member "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "North - east"}, {"source": {"segment": "content_relaxed", "context": {"start": 149, "end": 152, "input": "tokens", "text": "of security concerns in the North - east , a five - member "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "North - east"}], "key": "north - east", "value": "North - east"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1628, "end": 1629, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 1656, "end": 1657, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Appeal Court Affirms Otti, Ishaku Duly Elected Governors of Abia, Taraba - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 31, "end": 35, "input": "tokens", "text": "Mr . Darius Ishaku of the Peoples Democratic Party ( PDP ) and Mr "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}, {"source": {"segment": "content_relaxed", "context": {"start": 49, "end": 53, "input": "tokens", "text": "Mr . Darius Ishaku of the Peoples Democratic Party ( PDP ) and Mr "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}], "key": "the peoples democratic party", "value": "the Peoples Democratic Party"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 36, "end": 37, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) and Mr . Alex "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 252, "end": 253, "input": "tokens", "text": "by his party , the PDP , to vie for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 391, "end": 392, "input": "tokens", "text": "the primary election of the PDP , which produced Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 411, "end": 412, "input": "tokens", "text": "is a member of the PDP . It also held that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 434, "end": 435, "input": "tokens", "text": "breach or failure of the PDP to give the electoral body "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 563, "end": 564, "input": "tokens", "text": "of the governorship candidate by PDP breached Section 85 of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 595, "end": 596, "input": "tokens", "text": "in as governor because the PDP did not conduct a valid "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 54, "end": 55, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) and Mr . Alex "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 270, "end": 271, "input": "tokens", "text": "by his party , the PDP , to vie for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 409, "end": 410, "input": "tokens", "text": "the primary election of the PDP , which produced Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 429, "end": 430, "input": "tokens", "text": "is a member of the PDP . It also held that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 452, "end": 453, "input": "tokens", "text": "breach or failure of the PDP to give the electoral body "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 581, "end": 582, "input": "tokens", "text": "of the governorship candidate by PDP breached Section 85 of the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 613, "end": 614, "input": "tokens", "text": "in as governor because the PDP did not conduct a valid "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}], "key": "pdp", "value": "PDP"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 47, "end": 49, "input": "tokens", "text": "Otti of the All Progressives Grand Alliance ( APGA ) as winners "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Grand Alliance"}, {"source": {"segment": "content_relaxed", "context": {"start": 65, "end": 67, "input": "tokens", "text": "Otti of the All Progressives Grand Alliance ( APGA ) as winners "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Grand Alliance"}], "key": "grand alliance", "value": "Grand Alliance"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 144, "end": 147, "input": "tokens", "text": "panel of justices headed by Justice Abdul Aboki set aside the ruling of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Justice Abdul Aboki"}, {"source": {"segment": "content_relaxed", "context": {"start": 162, "end": 165, "input": "tokens", "text": "panel of justices headed by Justice Abdul Aboki set aside the ruling of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Justice Abdul Aboki"}], "key": "justice abdul aboki", "value": "Justice Abdul Aboki"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 182, "end": 185, "input": "tokens", "text": "the governorship candidate of the All Progressives Congress ( APC ) , Mrs "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}, {"source": {"segment": "content_relaxed", "context": {"start": 200, "end": 203, "input": "tokens", "text": "the governorship candidate of the All Progressives Congress ( APC ) , Mrs "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}], "key": "all progressives congress", "value": "All Progressives Congress"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 191, "end": 194, "input": "tokens", "text": "APC ) , Mrs . Aisha Jumai Alhassan , also known as \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aisha Jumai Alhassan"}, {"source": {"segment": "content_relaxed", "context": {"start": 209, "end": 212, "input": "tokens", "text": "APC ) , Mrs . Aisha Jumai Alhassan , also known as \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aisha Jumai Alhassan"}], "key": "aisha jumai alhassan", "value": "Aisha Jumai Alhassan"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 241, "end": 242, "input": "tokens", "text": "petitioners before the tribunal , Ishaku was validly elected and sponsored "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 259, "end": 260, "input": "tokens", "text": "petitioners before the tribunal , Ishaku was validly elected and sponsored "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}], "key": "ishaku", "value": "Ishaku"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 269, "end": 272, "input": "tokens", "text": "accordance with the constitution , the Electoral Act and in accordance with the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electoral Act"}, {"source": {"segment": "content_strict", "context": {"start": 501, "end": 504, "input": "tokens", "text": "According to the court , the Electoral Act specifies the procedures for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electoral Act"}, {"source": {"segment": "content_relaxed", "context": {"start": 287, "end": 290, "input": "tokens", "text": "accordance with the constitution , the Electoral Act and in accordance with the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electoral Act"}, {"source": {"segment": "content_relaxed", "context": {"start": 519, "end": 522, "input": "tokens", "text": "According to the court , the Electoral Act specifies the procedures for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electoral Act"}], "key": "the electoral act", "value": "the Electoral Act"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 283, "end": 288, "input": "tokens", "text": "guidelines as laid down by the Independent National Electoral Commission ( INEC ) . \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Independent National Electoral Commission"}, {"source": {"segment": "content_relaxed", "context": {"start": 301, "end": 306, "input": "tokens", "text": "guidelines as laid down by the Independent National Electoral Commission ( INEC ) . \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Independent National Electoral Commission"}], "key": "the independent national electoral commission", "value": "the Independent National Electoral Commission"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 289, "end": 290, "input": "tokens", "text": "Independent National Electoral Commission ( INEC ) . \" Therefore the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_strict", "context": {"start": 417, "end": 418, "input": "tokens", "text": ". It also held that INEC superintends the activities of political "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_strict", "context": {"start": 494, "end": 495, "input": "tokens", "text": "the said primary election and INEC . According to the court "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_strict", "context": {"start": 1054, "end": 1055, "input": "tokens", "text": "votes credited to Otti by INEC which was affirmed by the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 307, "end": 308, "input": "tokens", "text": "Independent National Electoral Commission ( INEC ) . \" Therefore the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 435, "end": 436, "input": "tokens", "text": ". It also held that INEC superintends the activities of political "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 512, "end": 513, "input": "tokens", "text": "the said primary election and INEC . According to the court "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 1072, "end": 1073, "input": "tokens", "text": "votes credited to Otti by INEC which was affirmed by the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}], "key": "inec", "value": "INEC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 297, "end": 304, "input": "tokens", "text": "\" Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Taraba State Governorship Election Petitions Tribunal"}, {"source": {"segment": "content_relaxed", "context": {"start": 315, "end": 322, "input": "tokens", "text": "\" Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Taraba State Governorship Election Petitions Tribunal"}], "key": "the taraba state governorship election petitions tribunal", "value": "the Taraba State Governorship Election Petitions Tribunal"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 351, "end": 353, "input": "tokens", "text": "the dully elected governor of Taraba State \" . According to the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba State"}, {"source": {"segment": "content_relaxed", "context": {"start": 369, "end": 371, "input": "tokens", "text": "the dully elected governor of Taraba State \" . According to the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba State"}], "key": "taraba state", "value": "Taraba State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 360, "end": 361, "input": "tokens", "text": "According to the court , APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 458, "end": 459, "input": "tokens", "text": "been the headache of the APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 549, "end": 550, "input": "tokens", "text": "in a petition filed by APC and Alhassan , held that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 618, "end": 619, "input": "tokens", "text": "tribunal however held that the APC governorship candidate could not adequately "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 378, "end": 379, "input": "tokens", "text": "According to the court , APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 476, "end": 477, "input": "tokens", "text": "been the headache of the APC and its governorship candidate , "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 567, "end": 568, "input": "tokens", "text": "in a petition filed by APC and Alhassan , held that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 636, "end": 637, "input": "tokens", "text": "tribunal however held that the APC governorship candidate could not adequately "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}], "key": "apc", "value": "APC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 534, "end": 539, "input": "tokens", "text": "in the primary election . The Justice Musa Danladi Abubakar - led tribunal , had "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Justice Musa Danladi Abubakar"}, {"source": {"segment": "content_relaxed", "context": {"start": 552, "end": 557, "input": "tokens", "text": "in the primary election . The Justice Musa Danladi Abubakar - led tribunal , had "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Justice Musa Danladi Abubakar"}], "key": "the justice musa danladi abubakar", "value": "The Justice Musa Danladi Abubakar"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 551, "end": 552, "input": "tokens", "text": "petition filed by APC and Alhassan , held that the purported "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alhassan"}, {"source": {"segment": "content_strict", "context": {"start": 587, "end": 588, "input": "tokens", "text": "in a judgment ordered that Alhassan be sworn in as governor "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alhassan"}, {"source": {"segment": "content_relaxed", "context": {"start": 569, "end": 570, "input": "tokens", "text": "petition filed by APC and Alhassan , held that the purported "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alhassan"}, {"source": {"segment": "content_relaxed", "context": {"start": 605, "end": 606, "input": "tokens", "text": "in a judgment ordered that Alhassan be sworn in as governor "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Alhassan"}], "key": "alhassan", "value": "Alhassan"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 681, "end": 684, "input": "tokens", "text": "ruling yesterday , Jalingo , the Taraba State capital , was thrown into "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Taraba State"}, {"source": {"segment": "content_relaxed", "context": {"start": 699, "end": 702, "input": "tokens", "text": "ruling yesterday , Jalingo , the Taraba State capital , was thrown into "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Taraba State"}], "key": "the taraba state", "value": "the Taraba State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 720, "end": 721, "input": "tokens", "text": "particularly around Hammaruwa Way , ATC , Mile 6 and Magami "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "ATC"}, {"source": {"segment": "content_relaxed", "context": {"start": 738, "end": 739, "input": "tokens", "text": "particularly around Hammaruwa Way , ATC , Mile 6 and Magami "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "ATC"}], "key": "atc", "value": "ATC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 783, "end": 784, "input": "tokens", "text": "the jubilant residents , told THISDAY that the judiciary proved once "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "THISDAY"}, {"source": {"segment": "content_relaxed", "context": {"start": 801, "end": 802, "input": "tokens", "text": "the jubilant residents , told THISDAY that the judiciary proved once "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "THISDAY"}], "key": "thisday", "value": "THISDAY"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 864, "end": 867, "input": "tokens", "text": ". \" In Owerri , the Appeal Court also nullified the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_strict", "context": {"start": 978, "end": 981, "input": "tokens", "text": "to be the determinant in the Appeal Court ' s judgment delivered by "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_strict", "context": {"start": 1224, "end": 1227, "input": "tokens", "text": "in Umuahia , Ikpeazu faulted the Appeal Court ' s judgment , saying "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_strict", "context": {"start": 1367, "end": 1370, "input": "tokens", "text": "full briefing on the reason the Appeal Court nullified his election , his "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 882, "end": 885, "input": "tokens", "text": ". \" In Owerri , the Appeal Court also nullified the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 996, "end": 999, "input": "tokens", "text": "to be the determinant in the Appeal Court ' s judgment delivered by "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1242, "end": 1245, "input": "tokens", "text": "in Umuahia , Ikpeazu faulted the Appeal Court ' s judgment , saying "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1385, "end": 1388, "input": "tokens", "text": "full briefing on the reason the Appeal Court nullified his election , his "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Appeal Court"}], "key": "the appeal court", "value": "the Appeal Court"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 872, "end": 875, "input": "tokens", "text": "also nullified the election of the Abia State Governor , Dr . Okezie "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Abia State"}, {"source": {"segment": "content_relaxed", "context": {"start": 890, "end": 893, "input": "tokens", "text": "also nullified the election of the Abia State Governor , Dr . Okezie "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Abia State"}], "key": "the abia state", "value": "the Abia State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 888, "end": 889, "input": "tokens", "text": "declared the governorship candidate of APGA , Otti , as the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_strict", "context": {"start": 936, "end": 937, "input": "tokens", "text": "at the tribunal , the APGA candidate contested the controversial results "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_strict", "context": {"start": 1106, "end": 1107, "input": "tokens", "text": "Justice Omoleye held that the APGA candidate was duly elected and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_strict", "context": {"start": 1150, "end": 1151, "input": "tokens", "text": "wild jubilations by supporters of APGA . Scores of jubilant party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_relaxed", "context": {"start": 906, "end": 907, "input": "tokens", "text": "declared the governorship candidate of APGA , Otti , as the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_relaxed", "context": {"start": 954, "end": 955, "input": "tokens", "text": "at the tribunal , the APGA candidate contested the controversial results "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_relaxed", "context": {"start": 1124, "end": 1125, "input": "tokens", "text": "Justice Omoleye held that the APGA candidate was duly elected and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}, {"source": {"segment": "content_relaxed", "context": {"start": 1168, "end": 1169, "input": "tokens", "text": "wild jubilations by supporters of APGA . Scores of jubilant party "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APGA"}], "key": "apga", "value": "APGA"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 915, "end": 920, "input": "tokens", "text": "to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Governorship Election Petitions Tribunal"}, {"source": {"segment": "content_relaxed", "context": {"start": 933, "end": 938, "input": "tokens", "text": "to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Governorship Election Petitions Tribunal"}], "key": "the governorship election petitions tribunal", "value": "the Governorship Election Petitions Tribunal"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 986, "end": 989, "input": "tokens", "text": "' s judgment delivered by Justice Oyebisi Omoleye . The five - member "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Justice Oyebisi Omoleye"}, {"source": {"segment": "content_relaxed", "context": {"start": 1004, "end": 1007, "input": "tokens", "text": "' s judgment delivered by Justice Oyebisi Omoleye . The five - member "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Justice Oyebisi Omoleye"}], "key": "justice oyebisi omoleye", "value": "Justice Oyebisi Omoleye"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1022, "end": 1023, "input": "tokens", "text": "the mathematics , held that Otti scored the highest number of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_strict", "context": {"start": 1052, "end": 1053, "input": "tokens", "text": ", 882 votes credited to Otti by INEC which was affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_strict", "context": {"start": 1081, "end": 1082, "input": "tokens", "text": "the appeal panel held that Otti scored a total of 164 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_strict", "context": {"start": 1128, "end": 1129, "input": "tokens", "text": ", when the news of Otti ' s victory at the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 1040, "end": 1041, "input": "tokens", "text": "the mathematics , held that Otti scored the highest number of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 1070, "end": 1071, "input": "tokens", "text": ", 882 votes credited to Otti by INEC which was affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 1099, "end": 1100, "input": "tokens", "text": "the appeal panel held that Otti scored a total of 164 "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 1146, "end": 1147, "input": "tokens", "text": ", when the news of Otti ' s victory at the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}], "key": "otti", "value": "Otti"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1097, "end": 1098, "input": "tokens", "text": "114 , 444 obtained by Ikpeazu . Accordingly , Justice Omoleye "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_strict", "context": {"start": 1194, "end": 1195, "input": "tokens", "text": "not go down well with Ikpeazu , whose aide said that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_strict", "context": {"start": 1425, "end": 1426, "input": "tokens", "text": ", \" he said . Ikpeazu assured residents of Abia that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1115, "end": 1116, "input": "tokens", "text": "114 , 444 obtained by Ikpeazu . Accordingly , Justice Omoleye "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1212, "end": 1213, "input": "tokens", "text": "not go down well with Ikpeazu , whose aide said that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1443, "end": 1444, "input": "tokens", "text": ", \" he said . Ikpeazu assured residents of Abia that "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}], "key": "ikpeazu", "value": "Ikpeazu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1209, "end": 1212, "input": "tokens", "text": "definitely challenge the ruling at the Supreme Court \" . Also addressing the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_strict", "context": {"start": 1241, "end": 1244, "input": "tokens", "text": "and would be challenged at the Supreme Court . The Abia governor said "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_strict", "context": {"start": 1264, "end": 1267, "input": "tokens", "text": "to challenge the judgment at the Supreme Court . \" I wish to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_strict", "context": {"start": 1314, "end": 1317, "input": "tokens", "text": "said that in going to the Supreme Court he has \" utmost confidence "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_strict", "context": {"start": 1454, "end": 1457, "input": "tokens", "text": "governor of Abia State until the Supreme Court reaffirms my mandate freely given "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1227, "end": 1230, "input": "tokens", "text": "definitely challenge the ruling at the Supreme Court \" . Also addressing the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1259, "end": 1262, "input": "tokens", "text": "and would be challenged at the Supreme Court . The Abia governor said "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1282, "end": 1285, "input": "tokens", "text": "to challenge the judgment at the Supreme Court . \" I wish to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1332, "end": 1335, "input": "tokens", "text": "said that in going to the Supreme Court he has \" utmost confidence "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}, {"source": {"segment": "content_relaxed", "context": {"start": 1472, "end": 1475, "input": "tokens", "text": "governor of Abia State until the Supreme Court reaffirms my mandate freely given "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Supreme Court"}], "key": "the supreme court", "value": "the Supreme Court"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1291, "end": 1295, "input": "tokens", "text": "upon which the decision of the Court of Appeal was arrived at was at "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Court of Appeal"}, {"source": {"segment": "content_strict", "context": {"start": 1333, "end": 1337, "input": "tokens", "text": "to correct the anomaly at the Court of Appeal and uphold my victory as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Court of Appeal"}, {"source": {"segment": "content_relaxed", "context": {"start": 1309, "end": 1313, "input": "tokens", "text": "upon which the decision of the Court of Appeal was arrived at was at "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Court of Appeal"}, {"source": {"segment": "content_relaxed", "context": {"start": 1351, "end": 1355, "input": "tokens", "text": "to correct the anomaly at the Court of Appeal and uphold my victory as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Court of Appeal"}], "key": "the court of appeal", "value": "the Court of Appeal"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1347, "end": 1351, "input": "tokens", "text": "had been done earlier by the Election Petitions Tribunal \" . Ikpeazu said though "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Election Petitions Tribunal"}, {"source": {"segment": "content_relaxed", "context": {"start": 1365, "end": 1369, "input": "tokens", "text": "had been done earlier by the Election Petitions Tribunal \" . Ikpeazu said though "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Election Petitions Tribunal"}], "key": "the election petitions tribunal", "value": "the Election Petitions Tribunal"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 7, "input": "tokens", "text": "1 January 2016 Nigeria : Appeal Court Affirms Otti , Ishaku Duly "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Appeal Court"}, {"source": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Appeal Court Affirms Otti , Ishaku Duly "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Appeal Court"}], "key": "appeal court", "value": "Appeal Court"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 10, "end": 14, "input": "tokens", "text": "Appeal Court Affirms Otti , Ishaku Duly Elected Governors of Abia , Taraba By "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku Duly Elected Governors"}, {"source": {"segment": "title", "context": {"start": 7, "end": 11, "input": "tokens", "text": "Appeal Court Affirms Otti , Ishaku Duly Elected Governors of Abia , Taraba - "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku Duly Elected Governors"}], "key": "ishaku duly elected governors", "value": "Ishaku Duly Elected Governors"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1531, "end": 1532, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1533, "end": 1536, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 5, "input": "tokens", "text": "By Senator Iroegbu in Abuja , Wole Ayodele in Jalingo "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_strict", "context": {"start": 20, "end": 21, "input": "tokens", "text": "The Appeal Court sitting in Abuja and Owerri on Thursday affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_strict", "context": {"start": 124, "end": 125, "input": "tokens", "text": "tribunal , which sat in Abuja because of security concerns in "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 22, "end": 23, "input": "tokens", "text": "Taraba By Senator Iroegbu in Abuja , Wole Ayodele in Jalingo "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 38, "end": 39, "input": "tokens", "text": "The Appeal Court sitting in Abuja and Owerri on Thursday affirmed "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 142, "end": 143, "input": "tokens", "text": "tribunal , which sat in Abuja because of security concerns in "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 9, "end": 10, "input": "tokens", "text": "Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jalingo"}, {"source": {"segment": "content_relaxed", "context": {"start": 27, "end": 28, "input": "tokens", "text": "Abuja , Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jalingo"}], "key": "jalingo", "value": "Jalingo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 22, "end": 23, "input": "tokens", "text": "Court sitting in Abuja and Owerri on Thursday affirmed Mr . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}, {"source": {"segment": "content_strict", "context": {"start": 862, "end": 863, "input": "tokens", "text": "been vindicated . \" In Owerri , the Appeal Court also "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}, {"source": {"segment": "content_strict", "context": {"start": 1379, "end": 1380, "input": "tokens", "text": "his lawyers were still at Owerri doing everything possible to obtain "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}, {"source": {"segment": "content_relaxed", "context": {"start": 40, "end": 41, "input": "tokens", "text": "Court sitting in Abuja and Owerri on Thursday affirmed Mr . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}, {"source": {"segment": "content_relaxed", "context": {"start": 880, "end": 881, "input": "tokens", "text": "been vindicated . \" In Owerri , the Appeal Court also "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}, {"source": {"segment": "content_relaxed", "context": {"start": 1397, "end": 1398, "input": "tokens", "text": "his lawyers were still at Owerri doing everything possible to obtain "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owerri"}], "key": "owerri", "value": "Owerri"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 61, "end": 62, "input": "tokens", "text": "April 11 governorship elections in Taraba and Abia States , respectively "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_strict", "context": {"start": 91, "end": 92, "input": "tokens", "text": "Tribunal , which sacked the Taraba governor from office based on "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_strict", "context": {"start": 848, "end": 849, "input": "tokens", "text": "oppressed . The people of Taraba who overwhelmingly voted Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_relaxed", "context": {"start": 17, "end": 18, "input": "tokens", "text": "Elected Governors of Abia , Taraba By Senator Iroegbu in Abuja "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_relaxed", "context": {"start": 79, "end": 80, "input": "tokens", "text": "April 11 governorship elections in Taraba and Abia States , respectively "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_relaxed", "context": {"start": 109, "end": 110, "input": "tokens", "text": "Tribunal , which sacked the Taraba governor from office based on "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "content_relaxed", "context": {"start": 866, "end": 867, "input": "tokens", "text": "oppressed . The people of Taraba who overwhelmingly voted Ishaku as "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}, {"source": {"segment": "title", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Elected Governors of Abia , Taraba - allAfrica . com "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Taraba"}], "key": "taraba", "value": "Taraba"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 63, "end": 65, "input": "tokens", "text": "governorship elections in Taraba and Abia States , respectively . The Abuja "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia States"}, {"source": {"segment": "content_relaxed", "context": {"start": 81, "end": 83, "input": "tokens", "text": "governorship elections in Taraba and Abia States , respectively . The Abuja "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia States"}], "key": "abia states", "value": "Abia States"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 395, "end": 396, "input": "tokens", "text": "the PDP , which produced Ishaku as its candidate for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_strict", "context": {"start": 573, "end": 574, "input": "tokens", "text": "the Electoral Act and ordered Ishaku to vacate his office . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 413, "end": 414, "input": "tokens", "text": "the PDP , which produced Ishaku as its candidate for the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}, {"source": {"segment": "content_relaxed", "context": {"start": 591, "end": 592, "input": "tokens", "text": "the Electoral Act and ordered Ishaku to vacate his office . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ishaku"}], "key": "ishaku", "value": "Ishaku"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 725, "end": 726, "input": "tokens", "text": "ATC , Mile 6 and Magami in motorcades and moved round "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magami"}, {"source": {"segment": "content_relaxed", "context": {"start": 743, "end": 744, "input": "tokens", "text": "ATC , Mile 6 and Magami in motorcades and moved round "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magami"}], "key": "magami", "value": "Magami"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 877, "end": 878, "input": "tokens", "text": "the Abia State Governor , Dr . Okezie Ikpeazu , and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_relaxed", "context": {"start": 895, "end": 896, "input": "tokens", "text": "the Abia State Governor , Dr . Okezie Ikpeazu , and "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}], "key": "dr", "value": "Dr"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 890, "end": 891, "input": "tokens", "text": "governorship candidate of APGA , Otti , as the winner of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}, {"source": {"segment": "content_relaxed", "context": {"start": 908, "end": 909, "input": "tokens", "text": "governorship candidate of APGA , Otti , as the winner of "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Otti"}], "key": "otti", "value": "Otti"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 925, "end": 926, "input": "tokens", "text": "which upheld the election of Ikpeazu . Just like he did "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_strict", "context": {"start": 1222, "end": 1223, "input": "tokens", "text": "press yesterday in Umuahia , Ikpeazu faulted the Appeal Court ' "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_strict", "context": {"start": 1483, "end": 1484, "input": "tokens", "text": "of law and order , Ikpeazu called on security agencies to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 943, "end": 944, "input": "tokens", "text": "which upheld the election of Ikpeazu . Just like he did "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1240, "end": 1241, "input": "tokens", "text": "press yesterday in Umuahia , Ikpeazu faulted the Appeal Court ' "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1501, "end": 1502, "input": "tokens", "text": "of law and order , Ikpeazu called on security agencies to "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ikpeazu"}], "key": "ikpeazu", "value": "Ikpeazu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 943, "end": 944, "input": "tokens", "text": "contested the controversial results from Obingwa , Osisioma and Isiala Ngwa "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obingwa"}, {"source": {"segment": "content_relaxed", "context": {"start": 961, "end": 962, "input": "tokens", "text": "contested the controversial results from Obingwa , Osisioma and Isiala Ngwa "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obingwa"}], "key": "obingwa", "value": "Obingwa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 945, "end": 946, "input": "tokens", "text": "controversial results from Obingwa , Osisioma and Isiala Ngwa North Local "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Osisioma"}, {"source": {"segment": "content_relaxed", "context": {"start": 963, "end": 964, "input": "tokens", "text": "controversial results from Obingwa , Osisioma and Isiala Ngwa North Local "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Osisioma"}], "key": "osisioma", "value": "Osisioma"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1119, "end": 1121, "input": "tokens", "text": "sworn in as governor of Abia State . Expectedly , when the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia State"}, {"source": {"segment": "content_strict", "context": {"start": 1451, "end": 1453, "input": "tokens", "text": "I remain the governor of Abia State until the Supreme Court reaffirms "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia State"}, {"source": {"segment": "content_relaxed", "context": {"start": 1137, "end": 1139, "input": "tokens", "text": "sworn in as governor of Abia State . Expectedly , when the "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia State"}, {"source": {"segment": "content_relaxed", "context": {"start": 1469, "end": 1471, "input": "tokens", "text": "I remain the governor of Abia State until the Supreme Court reaffirms "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia State"}], "key": "abia state", "value": "Abia State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1138, "end": 1139, "input": "tokens", "text": "the appeal court filtered into Umuahia , the capital , there "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Umuahia"}, {"source": {"segment": "content_strict", "context": {"start": 1220, "end": 1221, "input": "tokens", "text": "addressing the press yesterday in Umuahia , Ikpeazu faulted the Appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 1156, "end": 1157, "input": "tokens", "text": "the appeal court filtered into Umuahia , the capital , there "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 1238, "end": 1239, "input": "tokens", "text": "addressing the press yesterday in Umuahia , Ikpeazu faulted the Appeal "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Umuahia"}], "key": "umuahia", "value": "Umuahia"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 15, "end": 16, "input": "tokens", "text": "Ishaku Duly Elected Governors of Abia , Taraba By Senator Iroegbu "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia"}, {"source": {"segment": "title", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Ishaku Duly Elected Governors of Abia , Taraba - allAfrica . "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abia"}], "key": "abia", "value": "Abia"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Appeal Court Affirms Otti "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1465, "end": 1466, "input": "tokens", "text": "freely given to me by Abians during the election , \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abians"}, {"source": {"segment": "content_relaxed", "context": {"start": 1483, "end": 1484, "input": "tokens", "text": "freely given to me by Abians during the election , \" "}, "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abians"}], "key": "abians", "value": "Abians"}]}, "content_extraction": {"content_relaxed": {"text": "

1 January 2016

Nigeria: Appeal Court Affirms Otti, Ishaku Duly Elected Governors of Abia, Taraba

By Senator Iroegbu in Abuja, Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia

The Appeal Court sitting in Abuja and Owerri on Thursday affirmed Mr. Darius Ishaku of the Peoples Democratic Party (PDP) and Mr. Alex Otti of the All Progressives Grand Alliance (APGA) as winners of the April 11 governorship elections in Taraba and Abia States, respectively.

The Abuja appellate court, in its judgment, set aside the decision of the state Election Petitions Tribunal, which sacked the Taraba governor from office based on pre-election matters.

Delivering judgment on the three appeals and cross-appeal that emanated from the judgment of the tribunal, which sat in Abuja because of security concerns in the North-east, a five-member panel of justices headed by Justice Abdul Aboki set aside the ruling of the tribunal.

Justice Aboki, who read the unanimous judgment, held that it was a gross misdirection for the tribunal to have declared the governorship candidate of the All Progressives Congress (APC), Mrs. Aisha Jumai Alhassan, also known as \"Mama Taraba\", winner of the gubernatorial poll on the basis that she scored the second highest number of votes in the election.

The court also held that from the evidence of witnesses to the petitioners before the tribunal, Ishaku was validly elected and sponsored by his party, the PDP, to vie for the governorship seat of the state in accordance with the constitution, the Electoral Act and in accordance with the election guidelines as laid down by the Independent National Electoral Commission (INEC). \"Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null, void and set aside in its entirety.

\"The appellant's appeal is meritorious and is hereby allowed,\" Justice Aboki held. The judge went further to affirm \"Darius Dickson Ishaku as the dully elected governor of Taraba State\". According to the court, APC and its governorship candidate, who were the first and second respondents in the appeal, had no locus standi under the law to challenge the primary election of the PDP, which produced Ishaku as its candidate for the election as none of them is a member of the PDP.

It also held that INEC superintends the activities of political parties and if there was any breach or failure of the PDP to give the electoral body 21 days notice of its primary as alleged, it should not have been the headache of the APC and its governorship candidate, adding that the only person that could have complained of the conduct of a party's primary election was the person who participated in the said primary election and INEC.

According to the court, the Electoral Act specifies the procedures for the election and sponsorship of a candidate by a political party and that the right to complain is limited to participants in the primary election.

The Justice Musa Danladi Abubakar-led tribunal, had in a petition filed by APC and Alhassan, held that the purported nomination of the governorship candidate by PDP breached Section 85 of the Electoral Act and ordered Ishaku to vacate his office.

Justice Abubakar had in a judgment ordered that Alhassan be sworn in as governor because the PDP did not conduct a valid primary that threw Ishaku up as its standard-bearer.

The tribunal however held that the APC governorship candidate could not adequately prove her allegation of \"over-voting, irregularities, and non-compliance with the Electoral Act 2010\".

Dissatisfied with the judgment, Ishaku filed an appeal, asking the appellate court to set aside the judgment of the tribunal. Reacting to the appellate court's ruling yesterday, Jalingo, the Taraba State capital, was thrown into jubilation, as residents marched through major streets of the town in celebration of the judgment.

Residents in their thousands took to the streets, particularly around Hammaruwa Way, ATC, Mile 6 and Magami in motorcades and moved round the town singing and dancing.

Traffic was obstructed and halted for several hours in the town as the convoy, which included women and children, and was carrying large loudspeakers obstructed the flow of traffic along the major roads.

Enyetere Ambituni, one of the jubilant residents, told THISDAY that the judiciary proved once again to be the last hope of the common man and had vindicated the majority of the people of the state who overwhelmingly voted for Ishaku as their governor.

According to him, \"We are celebrating today because the judiciary has once again shown that it is the last hope of the oppressed. The people of Taraba who overwhelmingly voted Ishaku as their governor have been vindicated.\"

In Owerri, the Appeal Court also nullified the election of the Abia State Governor, Dr. Okezie Ikpeazu, and declared the governorship candidate of APGA, Otti, as the winner of the governorship election conducted in April. Otti had gone to the appeal court to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of Ikpeazu.

Just like he did at the tribunal, the APGA candidate contested the controversial results from Obingwa, Osisioma and Isiala Ngwa North Local Government Areas that the returning officer cancelled and later reversed. However, the results from the three local governments turned out to be the determinant in the Appeal Court's judgment delivered by Justice Oyebisi Omoleye.

The five-member panel unanimously agreed that the controversial results should not have been included in the final results and therefore cancelled them and after doing the mathematics, held that Otti scored the highest number of valid votes. In the governorship poll, Ikpeazu had emerged winner with 264,713 as against 180,882 votes credited to Otti by INEC which was affirmed by the tribunal.

But after subtracting the scores of the candidates in the three council areas, the appeal panel held that Otti scored a total of 164,332 votes as against 114,444 obtained by Ikpeazu.

Accordingly, Justice Omoleye held that the APGA candidate was duly elected and should be sworn in as governor of Abia State. Expectedly, when the news of Otti's victory at the appeal court filtered into Umuahia, the capital, there were wild jubilations by supporters of APGA. Scores of jubilant party supporters mounted tricycles and drove along major streets of the capital city waving party flags, singing and praising Otti for his tenacity.

However, the ruling by the appellate court did not go down well with Ikpeazu, whose aide said that the governor would \"definitely challenge the ruling at the Supreme Court\".

Also addressing the press yesterday in Umuahia, Ikpeazu faulted the Appeal Court's judgment, saying that it was untenable and would be challenged at the Supreme Court.

The Abia governor said that he had directed his lawyers to take immediate steps to challenge the judgment at the Supreme Court. \"I wish to state at this point that preliminary reports available to me indicate that the premise upon which the decision of the Court of Appeal was arrived at was at best tenuous,\" he said.

The governor said that in going to the Supreme Court he has \"utmost confidence in the ability of the justices to correct the anomaly at the Court of Appeal and uphold my victory as had been done earlier by the Election Petitions Tribunal\".

Ikpeazu said though he was yet to get a full briefing on the reason the Appeal Court nullified his election, his lawyers were still at Owerri doing everything possible to obtain a copy of the judgment.

\"The next four days are public holidays and the timing of the judgment means that we are losing valuable days to study the judgment and file our appeal,\" he said.

Ikpeazu assured residents of Abia that his status as governor had not changed, adding that all was well. \"I remain the governor of Abia State until the Supreme Court reaffirms my mandate freely given to me by Abians during the election,\" he said.

To avoid a breakdown of law and order, Ikpeazu called on security agencies to maintain the peace and ensure that people go about their legitimate businesses without disruption.

Copyright

2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["1", "january", "2016", "nigeria", ":", "appeal", "court", "affirms", "otti", ",", "ishaku", "duly", "elected", "governors", "of", "abia", ",", "taraba", "by", "senator", "iroegbu", "in", "abuja", ",", "wole", "ayodele", "in", "jalingo", "and", "emmanuel", "ugwu", "in", "umuahia", "the", "appeal", "court", "sitting", "in", "abuja", "and", "owerri", "on", "thursday", "affirmed", "mr", ".", "darius", "ishaku", "of", "the", "peoples", "democratic", "party", "(", "pdp", ")", "and", "mr", ".", "alex", "otti", "of", "the", "all", "progressives", "grand", "alliance", "(", "apga", ")", "as", "winners", "of", "the", "april", "11", "governorship", "elections", "in", "taraba", "and", "abia", "states", ",", "respectively", ".", "the", "abuja", "appellate", "court", ",", "in", "its", "judgment", ",", "set", "aside", "the", "decision", "of", "the", "state", "election", "petitions", "tribunal", ",", "which", "sacked", "the", "taraba", "governor", "from", "office", "based", "on", "pre", "-", "election", "matters", ".", "delivering", "judgment", "on", "the", "three", "appeals", "and", "cross", "-", "appeal", "that", "emanated", "from", "the", "judgment", "of", "the", "tribunal", ",", "which", "sat", "in", "abuja", "because", "of", "security", "concerns", "in", "the", "north", "-", "east", ",", "a", "five", "-", "member", "panel", "of", "justices", "headed", "by", "justice", "abdul", "aboki", "set", "aside", "the", "ruling", "of", "the", "tribunal", ".", "justice", "aboki", ",", "who", "read", "the", "unanimous", "judgment", ",", "held", "that", "it", "was", "a", "gross", "misdirection", "for", "the", "tribunal", "to", "have", "declared", "the", "governorship", "candidate", "of", "the", "all", "progressives", "congress", "(", "apc", ")", ",", "mrs", ".", "aisha", "jumai", "alhassan", ",", "also", "known", "as", "\"", "mama", "taraba", "\"", ",", "winner", "of", "the", "gubernatorial", "poll", "on", "the", "basis", "that", "she", "scored", "the", "second", "highest", "number", "of", "votes", "in", "the", "election", ".", "the", "court", "also", "held", "that", "from", "the", "evidence", "of", "witnesses", "to", "the", "petitioners", "before", "the", "tribunal", ",", "ishaku", "was", "validly", "elected", "and", "sponsored", "by", "his", "party", ",", "the", "pdp", ",", "to", "vie", "for", "the", "governorship", "seat", "of", "the", "state", "in", "accordance", "with", "the", "constitution", ",", "the", "electoral", "act", "and", "in", "accordance", "with", "the", "election", "guidelines", "as", "laid", "down", "by", "the", "independent", "national", "electoral", "commission", "(", "inec", ")", ".", "\"", "therefore", "the", "judgment", "of", "the", "taraba", "state", "governorship", "election", "petitions", "tribunal", "is", "hereby", "declared", "null", ",", "void", "and", "set", "aside", "in", "its", "entirety", ".", "\"", "the", "appellant", "'", "s", "appeal", "is", "meritorious", "and", "is", "hereby", "allowed", ",", "\"", "justice", "aboki", "held", ".", "the", "judge", "went", "further", "to", "affirm", "\"", "darius", "dickson", "ishaku", "as", "the", "dully", "elected", "governor", "of", "taraba", "state", "\"", ".", "according", "to", "the", "court", ",", "apc", "and", "its", "governorship", "candidate", ",", "who", "were", "the", "first", "and", "second", "respondents", "in", "the", "appeal", ",", "had", "no", "locus", "standi", "under", "the", "law", "to", "challenge", "the", "primary", "election", "of", "the", "pdp", ",", "which", "produced", "ishaku", "as", "its", "candidate", "for", "the", "election", "as", "none", "of", "them", "is", "a", "member", "of", "the", "pdp", ".", "it", "also", "held", "that", "inec", "superintends", "the", "activities", "of", "political", "parties", "and", "if", "there", "was", "any", "breach", "or", "failure", "of", "the", "pdp", "to", "give", "the", "electoral", "body", "21", "days", "notice", "of", "its", "primary", "as", "alleged", ",", "it", "should", "not", "have", "been", "the", "headache", "of", "the", "apc", "and", "its", "governorship", "candidate", ",", "adding", "that", "the", "only", "person", "that", "could", "have", "complained", "of", "the", "conduct", "of", "a", "party", "'", "s", "primary", "election", "was", "the", "person", "who", "participated", "in", "the", "said", "primary", "election", "and", "inec", ".", "according", "to", "the", "court", ",", "the", "electoral", "act", "specifies", "the", "procedures", "for", "the", "election", "and", "sponsorship", "of", "a", "candidate", "by", "a", "political", "party", "and", "that", "the", "right", "to", "complain", "is", "limited", "to", "participants", "in", "the", "primary", "election", ".", "the", "justice", "musa", "danladi", "abubakar", "-", "led", "tribunal", ",", "had", "in", "a", "petition", "filed", "by", "apc", "and", "alhassan", ",", "held", "that", "the", "purported", "nomination", "of", "the", "governorship", "candidate", "by", "pdp", "breached", "section", "85", "of", "the", "electoral", "act", "and", "ordered", "ishaku", "to", "vacate", "his", "office", ".", "justice", "abubakar", "had", "in", "a", "judgment", "ordered", "that", "alhassan", "be", "sworn", "in", "as", "governor", "because", "the", "pdp", "did", "not", "conduct", "a", "valid", "primary", "that", "threw", "ishaku", "up", "as", "its", "standard", "-", "bearer", ".", "the", "tribunal", "however", "held", "that", "the", "apc", "governorship", "candidate", "could", "not", "adequately", "prove", "her", "allegation", "of", "\"", "over", "-", "voting", ",", "irregularities", ",", "and", "non", "-", "compliance", "with", "the", "electoral", "act", "2010", "\"", ".", "dissatisfied", "with", "the", "judgment", ",", "ishaku", "filed", "an", "appeal", ",", "asking", "the", "appellate", "court", "to", "set", "aside", "the", "judgment", "of", "the", "tribunal", ".", "reacting", "to", "the", "appellate", "court", "'", "s", "ruling", "yesterday", ",", "jalingo", ",", "the", "taraba", "state", "capital", ",", "was", "thrown", "into", "jubilation", ",", "as", "residents", "marched", "through", "major", "streets", "of", "the", "town", "in", "celebration", "of", "the", "judgment", ".", "residents", "in", "their", "thousands", "took", "to", "the", "streets", ",", "particularly", "around", "hammaruwa", "way", ",", "atc", ",", "mile", "6", "and", "magami", "in", "motorcades", "and", "moved", "round", "the", "town", "singing", "and", "dancing", ".", "traffic", "was", "obstructed", "and", "halted", "for", "several", "hours", "in", "the", "town", "as", "the", "convoy", ",", "which", "included", "women", "and", "children", ",", "and", "was", "carrying", "large", "loudspeakers", "obstructed", "the", "flow", "of", "traffic", "along", "the", "major", "roads", ".", "enyetere", "ambituni", ",", "one", "of", "the", "jubilant", "residents", ",", "told", "thisday", "that", "the", "judiciary", "proved", "once", "again", "to", "be", "the", "last", "hope", "of", "the", "common", "man", "and", "had", "vindicated", "the", "majority", "of", "the", "people", "of", "the", "state", "who", "overwhelmingly", "voted", "for", "ishaku", "as", "their", "governor", ".", "according", "to", "him", ",", "\"", "we", "are", "celebrating", "today", "because", "the", "judiciary", "has", "once", "again", "shown", "that", "it", "is", "the", "last", "hope", "of", "the", "oppressed", ".", "the", "people", "of", "taraba", "who", "overwhelmingly", "voted", "ishaku", "as", "their", "governor", "have", "been", "vindicated", ".", "\"", "in", "owerri", ",", "the", "appeal", "court", "also", "nullified", "the", "election", "of", "the", "abia", "state", "governor", ",", "dr", ".", "okezie", "ikpeazu", ",", "and", "declared", "the", "governorship", "candidate", "of", "apga", ",", "otti", ",", "as", "the", "winner", "of", "the", "governorship", "election", "conducted", "in", "april", ".", "otti", "had", "gone", "to", "the", "appeal", "court", "to", "challenge", "the", "verdict", "of", "the", "governorship", "election", "petitions", "tribunal", "which", "upheld", "the", "election", "of", "ikpeazu", ".", "just", "like", "he", "did", "at", "the", "tribunal", ",", "the", "apga", "candidate", "contested", "the", "controversial", "results", "from", "obingwa", ",", "osisioma", "and", "isiala", "ngwa", "north", "local", "government", "areas", "that", "the", "returning", "officer", "cancelled", "and", "later", "reversed", ".", "however", ",", "the", "results", "from", "the", "three", "local", "governments", "turned", "out", "to", "be", "the", "determinant", "in", "the", "appeal", "court", "'", "s", "judgment", "delivered", "by", "justice", "oyebisi", "omoleye", ".", "the", "five", "-", "member", "panel", "unanimously", "agreed", "that", "the", "controversial", "results", "should", "not", "have", "been", "included", "in", "the", "final", "results", "and", "therefore", "cancelled", "them", "and", "after", "doing", "the", "mathematics", ",", "held", "that", "otti", "scored", "the", "highest", "number", "of", "valid", "votes", ".", "in", "the", "governorship", "poll", ",", "ikpeazu", "had", "emerged", "winner", "with", "264", ",", "713", "as", "against", "180", ",", "882", "votes", "credited", "to", "otti", "by", "inec", "which", "was", "affirmed", "by", "the", "tribunal", ".", "but", "after", "subtracting", "the", "scores", "of", "the", "candidates", "in", "the", "three", "council", "areas", ",", "the", "appeal", "panel", "held", "that", "otti", "scored", "a", "total", "of", "164", ",", "332", "votes", "as", "against", "114", ",", "444", "obtained", "by", "ikpeazu", ".", "accordingly", ",", "justice", "omoleye", "held", "that", "the", "apga", "candidate", "was", "duly", "elected", "and", "should", "be", "sworn", "in", "as", "governor", "of", "abia", "state", ".", "expectedly", ",", "when", "the", "news", "of", "otti", "'", "s", "victory", "at", "the", "appeal", "court", "filtered", "into", "umuahia", ",", "the", "capital", ",", "there", "were", "wild", "jubilations", "by", "supporters", "of", "apga", ".", "scores", "of", "jubilant", "party", "supporters", "mounted", "tricycles", "and", "drove", "along", "major", "streets", "of", "the", "capital", "city", "waving", "party", "flags", ",", "singing", "and", "praising", "otti", "for", "his", "tenacity", ".", "however", ",", "the", "ruling", "by", "the", "appellate", "court", "did", "not", "go", "down", "well", "with", "ikpeazu", ",", "whose", "aide", "said", "that", "the", "governor", "would", "\"", "definitely", "challenge", "the", "ruling", "at", "the", "supreme", "court", "\"", ".", "also", "addressing", "the", "press", "yesterday", "in", "umuahia", ",", "ikpeazu", "faulted", "the", "appeal", "court", "'", "s", "judgment", ",", "saying", "that", "it", "was", "untenable", "and", "would", "be", "challenged", "at", "the", "supreme", "court", ".", "the", "abia", "governor", "said", "that", "he", "had", "directed", "his", "lawyers", "to", "take", "immediate", "steps", "to", "challenge", "the", "judgment", "at", "the", "supreme", "court", ".", "\"", "i", "wish", "to", "state", "at", "this", "point", "that", "preliminary", "reports", "available", "to", "me", "indicate", "that", "the", "premise", "upon", "which", "the", "decision", "of", "the", "court", "of", "appeal", "was", "arrived", "at", "was", "at", "best", "tenuous", ",", "\"", "he", "said", ".", "the", "governor", "said", "that", "in", "going", "to", "the", "supreme", "court", "he", "has", "\"", "utmost", "confidence", "in", "the", "ability", "of", "the", "justices", "to", "correct", "the", "anomaly", "at", "the", "court", "of", "appeal", "and", "uphold", "my", "victory", "as", "had", "been", "done", "earlier", "by", "the", "election", "petitions", "tribunal", "\"", ".", "ikpeazu", "said", "though", "he", "was", "yet", "to", "get", "a", "full", "briefing", "on", "the", "reason", "the", "appeal", "court", "nullified", "his", "election", ",", "his", "lawyers", "were", "still", "at", "owerri", "doing", "everything", "possible", "to", "obtain", "a", "copy", "of", "the", "judgment", ".", "\"", "the", "next", "four", "days", "are", "public", "holidays", "and", "the", "timing", "of", "the", "judgment", "means", "that", "we", "are", "losing", "valuable", "days", "to", "study", "the", "judgment", "and", "file", "our", "appeal", ",", "\"", "he", "said", ".", "ikpeazu", "assured", "residents", "of", "abia", "that", "his", "status", "as", "governor", "had", "not", "changed", ",", "adding", "that", "all", "was", "well", ".", "\"", "i", "remain", "the", "governor", "of", "abia", "state", "until", "the", "supreme", "court", "reaffirms", "my", "mandate", "freely", "given", "to", "me", "by", "abians", "during", "the", "election", ",", "\"", "he", "said", ".", "to", "avoid", "a", "breakdown", "of", "law", "and", "order", ",", "ikpeazu", "called", "on", "security", "agencies", "to", "maintain", "the", "peace", "and", "ensure", "that", "people", "go", "about", "their", "legitimate", "businesses", "without", "disruption", ".", "copyright", "2016", "this", "day", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["1", "January", "2016", "Nigeria", ":", "Appeal", "Court", "Affirms", "Otti", ",", "Ishaku", "Duly", "Elected", "Governors", "of", "Abia", ",", "Taraba", "By", "Senator", "Iroegbu", "in", "Abuja", ",", "Wole", "Ayodele", "in", "Jalingo", "and", "Emmanuel", "Ugwu", "in", "Umuahia", "The", "Appeal", "Court", "sitting", "in", "Abuja", "and", "Owerri", "on", "Thursday", "affirmed", "Mr", ".", "Darius", "Ishaku", "of", "the", "Peoples", "Democratic", "Party", "(", "PDP", ")", "and", "Mr", ".", "Alex", "Otti", "of", "the", "All", "Progressives", "Grand", "Alliance", "(", "APGA", ")", "as", "winners", "of", "the", "April", "11", "governorship", "elections", "in", "Taraba", "and", "Abia", "States", ",", "respectively", ".", "The", "Abuja", "appellate", "court", ",", "in", "its", "judgment", ",", "set", "aside", "the", "decision", "of", "the", "state", "Election", "Petitions", "Tribunal", ",", "which", "sacked", "the", "Taraba", "governor", "from", "office", "based", "on", "pre", "-", "election", "matters", ".", "Delivering", "judgment", "on", "the", "three", "appeals", "and", "cross", "-", "appeal", "that", "emanated", "from", "the", "judgment", "of", "the", "tribunal", ",", "which", "sat", "in", "Abuja", "because", "of", "security", "concerns", "in", "the", "North", "-", "east", ",", "a", "five", "-", "member", "panel", "of", "justices", "headed", "by", "Justice", "Abdul", "Aboki", "set", "aside", "the", "ruling", "of", "the", "tribunal", ".", "Justice", "Aboki", ",", "who", "read", "the", "unanimous", "judgment", ",", "held", "that", "it", "was", "a", "gross", "misdirection", "for", "the", "tribunal", "to", "have", "declared", "the", "governorship", "candidate", "of", "the", "All", "Progressives", "Congress", "(", "APC", ")", ",", "Mrs", ".", "Aisha", "Jumai", "Alhassan", ",", "also", "known", "as", "\"", "Mama", "Taraba", "\"", ",", "winner", "of", "the", "gubernatorial", "poll", "on", "the", "basis", "that", "she", "scored", "the", "second", "highest", "number", "of", "votes", "in", "the", "election", ".", "The", "court", "also", "held", "that", "from", "the", "evidence", "of", "witnesses", "to", "the", "petitioners", "before", "the", "tribunal", ",", "Ishaku", "was", "validly", "elected", "and", "sponsored", "by", "his", "party", ",", "the", "PDP", ",", "to", "vie", "for", "the", "governorship", "seat", "of", "the", "state", "in", "accordance", "with", "the", "constitution", ",", "the", "Electoral", "Act", "and", "in", "accordance", "with", "the", "election", "guidelines", "as", "laid", "down", "by", "the", "Independent", "National", "Electoral", "Commission", "(", "INEC", ")", ".", "\"", "Therefore", "the", "judgment", "of", "the", "Taraba", "State", "Governorship", "Election", "Petitions", "Tribunal", "is", "hereby", "declared", "null", ",", "void", "and", "set", "aside", "in", "its", "entirety", ".", "\"", "The", "appellant", "'", "s", "appeal", "is", "meritorious", "and", "is", "hereby", "allowed", ",", "\"", "Justice", "Aboki", "held", ".", "The", "judge", "went", "further", "to", "affirm", "\"", "Darius", "Dickson", "Ishaku", "as", "the", "dully", "elected", "governor", "of", "Taraba", "State", "\"", ".", "According", "to", "the", "court", ",", "APC", "and", "its", "governorship", "candidate", ",", "who", "were", "the", "first", "and", "second", "respondents", "in", "the", "appeal", ",", "had", "no", "locus", "standi", "under", "the", "law", "to", "challenge", "the", "primary", "election", "of", "the", "PDP", ",", "which", "produced", "Ishaku", "as", "its", "candidate", "for", "the", "election", "as", "none", "of", "them", "is", "a", "member", "of", "the", "PDP", ".", "It", "also", "held", "that", "INEC", "superintends", "the", "activities", "of", "political", "parties", "and", "if", "there", "was", "any", "breach", "or", "failure", "of", "the", "PDP", "to", "give", "the", "electoral", "body", "21", "days", "notice", "of", "its", "primary", "as", "alleged", ",", "it", "should", "not", "have", "been", "the", "headache", "of", "the", "APC", "and", "its", "governorship", "candidate", ",", "adding", "that", "the", "only", "person", "that", "could", "have", "complained", "of", "the", "conduct", "of", "a", "party", "'", "s", "primary", "election", "was", "the", "person", "who", "participated", "in", "the", "said", "primary", "election", "and", "INEC", ".", "According", "to", "the", "court", ",", "the", "Electoral", "Act", "specifies", "the", "procedures", "for", "the", "election", "and", "sponsorship", "of", "a", "candidate", "by", "a", "political", "party", "and", "that", "the", "right", "to", "complain", "is", "limited", "to", "participants", "in", "the", "primary", "election", ".", "The", "Justice", "Musa", "Danladi", "Abubakar", "-", "led", "tribunal", ",", "had", "in", "a", "petition", "filed", "by", "APC", "and", "Alhassan", ",", "held", "that", "the", "purported", "nomination", "of", "the", "governorship", "candidate", "by", "PDP", "breached", "Section", "85", "of", "the", "Electoral", "Act", "and", "ordered", "Ishaku", "to", "vacate", "his", "office", ".", "Justice", "Abubakar", "had", "in", "a", "judgment", "ordered", "that", "Alhassan", "be", "sworn", "in", "as", "governor", "because", "the", "PDP", "did", "not", "conduct", "a", "valid", "primary", "that", "threw", "Ishaku", "up", "as", "its", "standard", "-", "bearer", ".", "The", "tribunal", "however", "held", "that", "the", "APC", "governorship", "candidate", "could", "not", "adequately", "prove", "her", "allegation", "of", "\"", "over", "-", "voting", ",", "irregularities", ",", "and", "non", "-", "compliance", "with", "the", "Electoral", "Act", "2010", "\"", ".", "Dissatisfied", "with", "the", "judgment", ",", "Ishaku", "filed", "an", "appeal", ",", "asking", "the", "appellate", "court", "to", "set", "aside", "the", "judgment", "of", "the", "tribunal", ".", "Reacting", "to", "the", "appellate", "court", "'", "s", "ruling", "yesterday", ",", "Jalingo", ",", "the", "Taraba", "State", "capital", ",", "was", "thrown", "into", "jubilation", ",", "as", "residents", "marched", "through", "major", "streets", "of", "the", "town", "in", "celebration", "of", "the", "judgment", ".", "Residents", "in", "their", "thousands", "took", "to", "the", "streets", ",", "particularly", "around", "Hammaruwa", "Way", ",", "ATC", ",", "Mile", "6", "and", "Magami", "in", "motorcades", "and", "moved", "round", "the", "town", "singing", "and", "dancing", ".", "Traffic", "was", "obstructed", "and", "halted", "for", "several", "hours", "in", "the", "town", "as", "the", "convoy", ",", "which", "included", "women", "and", "children", ",", "and", "was", "carrying", "large", "loudspeakers", "obstructed", "the", "flow", "of", "traffic", "along", "the", "major", "roads", ".", "Enyetere", "Ambituni", ",", "one", "of", "the", "jubilant", "residents", ",", "told", "THISDAY", "that", "the", "judiciary", "proved", "once", "again", "to", "be", "the", "last", "hope", "of", "the", "common", "man", "and", "had", "vindicated", "the", "majority", "of", "the", "people", "of", "the", "state", "who", "overwhelmingly", "voted", "for", "Ishaku", "as", "their", "governor", ".", "According", "to", "him", ",", "\"", "We", "are", "celebrating", "today", "because", "the", "judiciary", "has", "once", "again", "shown", "that", "it", "is", "the", "last", "hope", "of", "the", "oppressed", ".", "The", "people", "of", "Taraba", "who", "overwhelmingly", "voted", "Ishaku", "as", "their", "governor", "have", "been", "vindicated", ".", "\"", "In", "Owerri", ",", "the", "Appeal", "Court", "also", "nullified", "the", "election", "of", "the", "Abia", "State", "Governor", ",", "Dr", ".", "Okezie", "Ikpeazu", ",", "and", "declared", "the", "governorship", "candidate", "of", "APGA", ",", "Otti", ",", "as", "the", "winner", "of", "the", "governorship", "election", "conducted", "in", "April", ".", "Otti", "had", "gone", "to", "the", "appeal", "court", "to", "challenge", "the", "verdict", "of", "the", "Governorship", "Election", "Petitions", "Tribunal", "which", "upheld", "the", "election", "of", "Ikpeazu", ".", "Just", "like", "he", "did", "at", "the", "tribunal", ",", "the", "APGA", "candidate", "contested", "the", "controversial", "results", "from", "Obingwa", ",", "Osisioma", "and", "Isiala", "Ngwa", "North", "Local", "Government", "Areas", "that", "the", "returning", "officer", "cancelled", "and", "later", "reversed", ".", "However", ",", "the", "results", "from", "the", "three", "local", "governments", "turned", "out", "to", "be", "the", "determinant", "in", "the", "Appeal", "Court", "'", "s", "judgment", "delivered", "by", "Justice", "Oyebisi", "Omoleye", ".", "The", "five", "-", "member", "panel", "unanimously", "agreed", "that", "the", "controversial", "results", "should", "not", "have", "been", "included", "in", "the", "final", "results", "and", "therefore", "cancelled", "them", "and", "after", "doing", "the", "mathematics", ",", "held", "that", "Otti", "scored", "the", "highest", "number", "of", "valid", "votes", ".", "In", "the", "governorship", "poll", ",", "Ikpeazu", "had", "emerged", "winner", "with", "264", ",", "713", "as", "against", "180", ",", "882", "votes", "credited", "to", "Otti", "by", "INEC", "which", "was", "affirmed", "by", "the", "tribunal", ".", "But", "after", "subtracting", "the", "scores", "of", "the", "candidates", "in", "the", "three", "council", "areas", ",", "the", "appeal", "panel", "held", "that", "Otti", "scored", "a", "total", "of", "164", ",", "332", "votes", "as", "against", "114", ",", "444", "obtained", "by", "Ikpeazu", ".", "Accordingly", ",", "Justice", "Omoleye", "held", "that", "the", "APGA", "candidate", "was", "duly", "elected", "and", "should", "be", "sworn", "in", "as", "governor", "of", "Abia", "State", ".", "Expectedly", ",", "when", "the", "news", "of", "Otti", "'", "s", "victory", "at", "the", "appeal", "court", "filtered", "into", "Umuahia", ",", "the", "capital", ",", "there", "were", "wild", "jubilations", "by", "supporters", "of", "APGA", ".", "Scores", "of", "jubilant", "party", "supporters", "mounted", "tricycles", "and", "drove", "along", "major", "streets", "of", "the", "capital", "city", "waving", "party", "flags", ",", "singing", "and", "praising", "Otti", "for", "his", "tenacity", ".", "However", ",", "the", "ruling", "by", "the", "appellate", "court", "did", "not", "go", "down", "well", "with", "Ikpeazu", ",", "whose", "aide", "said", "that", "the", "governor", "would", "\"", "definitely", "challenge", "the", "ruling", "at", "the", "Supreme", "Court", "\"", ".", "Also", "addressing", "the", "press", "yesterday", "in", "Umuahia", ",", "Ikpeazu", "faulted", "the", "Appeal", "Court", "'", "s", "judgment", ",", "saying", "that", "it", "was", "untenable", "and", "would", "be", "challenged", "at", "the", "Supreme", "Court", ".", "The", "Abia", "governor", "said", "that", "he", "had", "directed", "his", "lawyers", "to", "take", "immediate", "steps", "to", "challenge", "the", "judgment", "at", "the", "Supreme", "Court", ".", "\"", "I", "wish", "to", "state", "at", "this", "point", "that", "preliminary", "reports", "available", "to", "me", "indicate", "that", "the", "premise", "upon", "which", "the", "decision", "of", "the", "Court", "of", "Appeal", "was", "arrived", "at", "was", "at", "best", "tenuous", ",", "\"", "he", "said", ".", "The", "governor", "said", "that", "in", "going", "to", "the", "Supreme", "Court", "he", "has", "\"", "utmost", "confidence", "in", "the", "ability", "of", "the", "justices", "to", "correct", "the", "anomaly", "at", "the", "Court", "of", "Appeal", "and", "uphold", "my", "victory", "as", "had", "been", "done", "earlier", "by", "the", "Election", "Petitions", "Tribunal", "\"", ".", "Ikpeazu", "said", "though", "he", "was", "yet", "to", "get", "a", "full", "briefing", "on", "the", "reason", "the", "Appeal", "Court", "nullified", "his", "election", ",", "his", "lawyers", "were", "still", "at", "Owerri", "doing", "everything", "possible", "to", "obtain", "a", "copy", "of", "the", "judgment", ".", "\"", "The", "next", "four", "days", "are", "public", "holidays", "and", "the", "timing", "of", "the", "judgment", "means", "that", "we", "are", "losing", "valuable", "days", "to", "study", "the", "judgment", "and", "file", "our", "appeal", ",", "\"", "he", "said", ".", "Ikpeazu", "assured", "residents", "of", "Abia", "that", "his", "status", "as", "governor", "had", "not", "changed", ",", "adding", "that", "all", "was", "well", ".", "\"", "I", "remain", "the", "governor", "of", "Abia", "State", "until", "the", "Supreme", "Court", "reaffirms", "my", "mandate", "freely", "given", "to", "me", "by", "Abians", "during", "the", "election", ",", "\"", "he", "said", ".", "To", "avoid", "a", "breakdown", "of", "law", "and", "order", ",", "Ikpeazu", "called", "on", "security", "agencies", "to", "maintain", "the", "peace", "and", "ensure", "that", "people", "go", "about", "their", "legitimate", "businesses", "without", "disruption", ".", "Copyright", "2016", "This", "Day", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/01/201601010132.html"}, "content_strict": {"text": "

By Senator Iroegbu in Abuja, Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia

The Appeal Court sitting in Abuja and Owerri on Thursday affirmed Mr. Darius Ishaku of the Peoples Democratic Party (PDP) and Mr. Alex Otti of the All Progressives Grand Alliance (APGA) as winners of the April 11 governorship elections in Taraba and Abia States, respectively.

The Abuja appellate court, in its judgment, set aside the decision of the state Election Petitions Tribunal, which sacked the Taraba governor from office based on pre-election matters.

Delivering judgment on the three appeals and cross-appeal that emanated from the judgment of the tribunal, which sat in Abuja because of security concerns in the North-east, a five-member panel of justices headed by Justice Abdul Aboki set aside the ruling of the tribunal.

Justice Aboki, who read the unanimous judgment, held that it was a gross misdirection for the tribunal to have declared the governorship candidate of the All Progressives Congress (APC), Mrs. Aisha Jumai Alhassan, also known as \"Mama Taraba\", winner of the gubernatorial poll on the basis that she scored the second highest number of votes in the election.

The court also held that from the evidence of witnesses to the petitioners before the tribunal, Ishaku was validly elected and sponsored by his party, the PDP, to vie for the governorship seat of the state in accordance with the constitution, the Electoral Act and in accordance with the election guidelines as laid down by the Independent National Electoral Commission (INEC). \"Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null, void and set aside in its entirety.

\"The appellant's appeal is meritorious and is hereby allowed,\" Justice Aboki held. The judge went further to affirm \"Darius Dickson Ishaku as the dully elected governor of Taraba State\". According to the court, APC and its governorship candidate, who were the first and second respondents in the appeal, had no locus standi under the law to challenge the primary election of the PDP, which produced Ishaku as its candidate for the election as none of them is a member of the PDP.

It also held that INEC superintends the activities of political parties and if there was any breach or failure of the PDP to give the electoral body 21 days notice of its primary as alleged, it should not have been the headache of the APC and its governorship candidate, adding that the only person that could have complained of the conduct of a party's primary election was the person who participated in the said primary election and INEC.

According to the court, the Electoral Act specifies the procedures for the election and sponsorship of a candidate by a political party and that the right to complain is limited to participants in the primary election.

The Justice Musa Danladi Abubakar-led tribunal, had in a petition filed by APC and Alhassan, held that the purported nomination of the governorship candidate by PDP breached Section 85 of the Electoral Act and ordered Ishaku to vacate his office.

Justice Abubakar had in a judgment ordered that Alhassan be sworn in as governor because the PDP did not conduct a valid primary that threw Ishaku up as its standard-bearer.

The tribunal however held that the APC governorship candidate could not adequately prove her allegation of \"over-voting, irregularities, and non-compliance with the Electoral Act 2010\".

Dissatisfied with the judgment, Ishaku filed an appeal, asking the appellate court to set aside the judgment of the tribunal. Reacting to the appellate court's ruling yesterday, Jalingo, the Taraba State capital, was thrown into jubilation, as residents marched through major streets of the town in celebration of the judgment.

Residents in their thousands took to the streets, particularly around Hammaruwa Way, ATC, Mile 6 and Magami in motorcades and moved round the town singing and dancing.

Traffic was obstructed and halted for several hours in the town as the convoy, which included women and children, and was carrying large loudspeakers obstructed the flow of traffic along the major roads.

Enyetere Ambituni, one of the jubilant residents, told THISDAY that the judiciary proved once again to be the last hope of the common man and had vindicated the majority of the people of the state who overwhelmingly voted for Ishaku as their governor.

According to him, \"We are celebrating today because the judiciary has once again shown that it is the last hope of the oppressed. The people of Taraba who overwhelmingly voted Ishaku as their governor have been vindicated.\"

In Owerri, the Appeal Court also nullified the election of the Abia State Governor, Dr. Okezie Ikpeazu, and declared the governorship candidate of APGA, Otti, as the winner of the governorship election conducted in April. Otti had gone to the appeal court to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of Ikpeazu.

Just like he did at the tribunal, the APGA candidate contested the controversial results from Obingwa, Osisioma and Isiala Ngwa North Local Government Areas that the returning officer cancelled and later reversed. However, the results from the three local governments turned out to be the determinant in the Appeal Court's judgment delivered by Justice Oyebisi Omoleye.

The five-member panel unanimously agreed that the controversial results should not have been included in the final results and therefore cancelled them and after doing the mathematics, held that Otti scored the highest number of valid votes. In the governorship poll, Ikpeazu had emerged winner with 264,713 as against 180,882 votes credited to Otti by INEC which was affirmed by the tribunal.

But after subtracting the scores of the candidates in the three council areas, the appeal panel held that Otti scored a total of 164,332 votes as against 114,444 obtained by Ikpeazu.

Accordingly, Justice Omoleye held that the APGA candidate was duly elected and should be sworn in as governor of Abia State. Expectedly, when the news of Otti's victory at the appeal court filtered into Umuahia, the capital, there were wild jubilations by supporters of APGA. Scores of jubilant party supporters mounted tricycles and drove along major streets of the capital city waving party flags, singing and praising Otti for his tenacity.

However, the ruling by the appellate court did not go down well with Ikpeazu, whose aide said that the governor would \"definitely challenge the ruling at the Supreme Court\".

Also addressing the press yesterday in Umuahia, Ikpeazu faulted the Appeal Court's judgment, saying that it was untenable and would be challenged at the Supreme Court.

The Abia governor said that he had directed his lawyers to take immediate steps to challenge the judgment at the Supreme Court. \"I wish to state at this point that preliminary reports available to me indicate that the premise upon which the decision of the Court of Appeal was arrived at was at best tenuous,\" he said.

The governor said that in going to the Supreme Court he has \"utmost confidence in the ability of the justices to correct the anomaly at the Court of Appeal and uphold my victory as had been done earlier by the Election Petitions Tribunal\".

Ikpeazu said though he was yet to get a full briefing on the reason the Appeal Court nullified his election, his lawyers were still at Owerri doing everything possible to obtain a copy of the judgment.

\"The next four days are public holidays and the timing of the judgment means that we are losing valuable days to study the judgment and file our appeal,\" he said.

Ikpeazu assured residents of Abia that his status as governor had not changed, adding that all was well. \"I remain the governor of Abia State until the Supreme Court reaffirms my mandate freely given to me by Abians during the election,\" he said.

To avoid a breakdown of law and order, Ikpeazu called on security agencies to maintain the peace and ensure that people go about their legitimate businesses without disruption.

", "simple_tokens": ["by", "senator", "iroegbu", "in", "abuja", ",", "wole", "ayodele", "in", "jalingo", "and", "emmanuel", "ugwu", "in", "umuahia", "the", "appeal", "court", "sitting", "in", "abuja", "and", "owerri", "on", "thursday", "affirmed", "mr", ".", "darius", "ishaku", "of", "the", "peoples", "democratic", "party", "(", "pdp", ")", "and", "mr", ".", "alex", "otti", "of", "the", "all", "progressives", "grand", "alliance", "(", "apga", ")", "as", "winners", "of", "the", "april", "11", "governorship", "elections", "in", "taraba", "and", "abia", "states", ",", "respectively", ".", "the", "abuja", "appellate", "court", ",", "in", "its", "judgment", ",", "set", "aside", "the", "decision", "of", "the", "state", "election", "petitions", "tribunal", ",", "which", "sacked", "the", "taraba", "governor", "from", "office", "based", "on", "pre", "-", "election", "matters", ".", "delivering", "judgment", "on", "the", "three", "appeals", "and", "cross", "-", "appeal", "that", "emanated", "from", "the", "judgment", "of", "the", "tribunal", ",", "which", "sat", "in", "abuja", "because", "of", "security", "concerns", "in", "the", "north", "-", "east", ",", "a", "five", "-", "member", "panel", "of", "justices", "headed", "by", "justice", "abdul", "aboki", "set", "aside", "the", "ruling", "of", "the", "tribunal", ".", "justice", "aboki", ",", "who", "read", "the", "unanimous", "judgment", ",", "held", "that", "it", "was", "a", "gross", "misdirection", "for", "the", "tribunal", "to", "have", "declared", "the", "governorship", "candidate", "of", "the", "all", "progressives", "congress", "(", "apc", ")", ",", "mrs", ".", "aisha", "jumai", "alhassan", ",", "also", "known", "as", "\"", "mama", "taraba", "\"", ",", "winner", "of", "the", "gubernatorial", "poll", "on", "the", "basis", "that", "she", "scored", "the", "second", "highest", "number", "of", "votes", "in", "the", "election", ".", "the", "court", "also", "held", "that", "from", "the", "evidence", "of", "witnesses", "to", "the", "petitioners", "before", "the", "tribunal", ",", "ishaku", "was", "validly", "elected", "and", "sponsored", "by", "his", "party", ",", "the", "pdp", ",", "to", "vie", "for", "the", "governorship", "seat", "of", "the", "state", "in", "accordance", "with", "the", "constitution", ",", "the", "electoral", "act", "and", "in", "accordance", "with", "the", "election", "guidelines", "as", "laid", "down", "by", "the", "independent", "national", "electoral", "commission", "(", "inec", ")", ".", "\"", "therefore", "the", "judgment", "of", "the", "taraba", "state", "governorship", "election", "petitions", "tribunal", "is", "hereby", "declared", "null", ",", "void", "and", "set", "aside", "in", "its", "entirety", ".", "\"", "the", "appellant", "'", "s", "appeal", "is", "meritorious", "and", "is", "hereby", "allowed", ",", "\"", "justice", "aboki", "held", ".", "the", "judge", "went", "further", "to", "affirm", "\"", "darius", "dickson", "ishaku", "as", "the", "dully", "elected", "governor", "of", "taraba", "state", "\"", ".", "according", "to", "the", "court", ",", "apc", "and", "its", "governorship", "candidate", ",", "who", "were", "the", "first", "and", "second", "respondents", "in", "the", "appeal", ",", "had", "no", "locus", "standi", "under", "the", "law", "to", "challenge", "the", "primary", "election", "of", "the", "pdp", ",", "which", "produced", "ishaku", "as", "its", "candidate", "for", "the", "election", "as", "none", "of", "them", "is", "a", "member", "of", "the", "pdp", ".", "it", "also", "held", "that", "inec", "superintends", "the", "activities", "of", "political", "parties", "and", "if", "there", "was", "any", "breach", "or", "failure", "of", "the", "pdp", "to", "give", "the", "electoral", "body", "21", "days", "notice", "of", "its", "primary", "as", "alleged", ",", "it", "should", "not", "have", "been", "the", "headache", "of", "the", "apc", "and", "its", "governorship", "candidate", ",", "adding", "that", "the", "only", "person", "that", "could", "have", "complained", "of", "the", "conduct", "of", "a", "party", "'", "s", "primary", "election", "was", "the", "person", "who", "participated", "in", "the", "said", "primary", "election", "and", "inec", ".", "according", "to", "the", "court", ",", "the", "electoral", "act", "specifies", "the", "procedures", "for", "the", "election", "and", "sponsorship", "of", "a", "candidate", "by", "a", "political", "party", "and", "that", "the", "right", "to", "complain", "is", "limited", "to", "participants", "in", "the", "primary", "election", ".", "the", "justice", "musa", "danladi", "abubakar", "-", "led", "tribunal", ",", "had", "in", "a", "petition", "filed", "by", "apc", "and", "alhassan", ",", "held", "that", "the", "purported", "nomination", "of", "the", "governorship", "candidate", "by", "pdp", "breached", "section", "85", "of", "the", "electoral", "act", "and", "ordered", "ishaku", "to", "vacate", "his", "office", ".", "justice", "abubakar", "had", "in", "a", "judgment", "ordered", "that", "alhassan", "be", "sworn", "in", "as", "governor", "because", "the", "pdp", "did", "not", "conduct", "a", "valid", "primary", "that", "threw", "ishaku", "up", "as", "its", "standard", "-", "bearer", ".", "the", "tribunal", "however", "held", "that", "the", "apc", "governorship", "candidate", "could", "not", "adequately", "prove", "her", "allegation", "of", "\"", "over", "-", "voting", ",", "irregularities", ",", "and", "non", "-", "compliance", "with", "the", "electoral", "act", "2010", "\"", ".", "dissatisfied", "with", "the", "judgment", ",", "ishaku", "filed", "an", "appeal", ",", "asking", "the", "appellate", "court", "to", "set", "aside", "the", "judgment", "of", "the", "tribunal", ".", "reacting", "to", "the", "appellate", "court", "'", "s", "ruling", "yesterday", ",", "jalingo", ",", "the", "taraba", "state", "capital", ",", "was", "thrown", "into", "jubilation", ",", "as", "residents", "marched", "through", "major", "streets", "of", "the", "town", "in", "celebration", "of", "the", "judgment", ".", "residents", "in", "their", "thousands", "took", "to", "the", "streets", ",", "particularly", "around", "hammaruwa", "way", ",", "atc", ",", "mile", "6", "and", "magami", "in", "motorcades", "and", "moved", "round", "the", "town", "singing", "and", "dancing", ".", "traffic", "was", "obstructed", "and", "halted", "for", "several", "hours", "in", "the", "town", "as", "the", "convoy", ",", "which", "included", "women", "and", "children", ",", "and", "was", "carrying", "large", "loudspeakers", "obstructed", "the", "flow", "of", "traffic", "along", "the", "major", "roads", ".", "enyetere", "ambituni", ",", "one", "of", "the", "jubilant", "residents", ",", "told", "thisday", "that", "the", "judiciary", "proved", "once", "again", "to", "be", "the", "last", "hope", "of", "the", "common", "man", "and", "had", "vindicated", "the", "majority", "of", "the", "people", "of", "the", "state", "who", "overwhelmingly", "voted", "for", "ishaku", "as", "their", "governor", ".", "according", "to", "him", ",", "\"", "we", "are", "celebrating", "today", "because", "the", "judiciary", "has", "once", "again", "shown", "that", "it", "is", "the", "last", "hope", "of", "the", "oppressed", ".", "the", "people", "of", "taraba", "who", "overwhelmingly", "voted", "ishaku", "as", "their", "governor", "have", "been", "vindicated", ".", "\"", "in", "owerri", ",", "the", "appeal", "court", "also", "nullified", "the", "election", "of", "the", "abia", "state", "governor", ",", "dr", ".", "okezie", "ikpeazu", ",", "and", "declared", "the", "governorship", "candidate", "of", "apga", ",", "otti", ",", "as", "the", "winner", "of", "the", "governorship", "election", "conducted", "in", "april", ".", "otti", "had", "gone", "to", "the", "appeal", "court", "to", "challenge", "the", "verdict", "of", "the", "governorship", "election", "petitions", "tribunal", "which", "upheld", "the", "election", "of", "ikpeazu", ".", "just", "like", "he", "did", "at", "the", "tribunal", ",", "the", "apga", "candidate", "contested", "the", "controversial", "results", "from", "obingwa", ",", "osisioma", "and", "isiala", "ngwa", "north", "local", "government", "areas", "that", "the", "returning", "officer", "cancelled", "and", "later", "reversed", ".", "however", ",", "the", "results", "from", "the", "three", "local", "governments", "turned", "out", "to", "be", "the", "determinant", "in", "the", "appeal", "court", "'", "s", "judgment", "delivered", "by", "justice", "oyebisi", "omoleye", ".", "the", "five", "-", "member", "panel", "unanimously", "agreed", "that", "the", "controversial", "results", "should", "not", "have", "been", "included", "in", "the", "final", "results", "and", "therefore", "cancelled", "them", "and", "after", "doing", "the", "mathematics", ",", "held", "that", "otti", "scored", "the", "highest", "number", "of", "valid", "votes", ".", "in", "the", "governorship", "poll", ",", "ikpeazu", "had", "emerged", "winner", "with", "264", ",", "713", "as", "against", "180", ",", "882", "votes", "credited", "to", "otti", "by", "inec", "which", "was", "affirmed", "by", "the", "tribunal", ".", "but", "after", "subtracting", "the", "scores", "of", "the", "candidates", "in", "the", "three", "council", "areas", ",", "the", "appeal", "panel", "held", "that", "otti", "scored", "a", "total", "of", "164", ",", "332", "votes", "as", "against", "114", ",", "444", "obtained", "by", "ikpeazu", ".", "accordingly", ",", "justice", "omoleye", "held", "that", "the", "apga", "candidate", "was", "duly", "elected", "and", "should", "be", "sworn", "in", "as", "governor", "of", "abia", "state", ".", "expectedly", ",", "when", "the", "news", "of", "otti", "'", "s", "victory", "at", "the", "appeal", "court", "filtered", "into", "umuahia", ",", "the", "capital", ",", "there", "were", "wild", "jubilations", "by", "supporters", "of", "apga", ".", "scores", "of", "jubilant", "party", "supporters", "mounted", "tricycles", "and", "drove", "along", "major", "streets", "of", "the", "capital", "city", "waving", "party", "flags", ",", "singing", "and", "praising", "otti", "for", "his", "tenacity", ".", "however", ",", "the", "ruling", "by", "the", "appellate", "court", "did", "not", "go", "down", "well", "with", "ikpeazu", ",", "whose", "aide", "said", "that", "the", "governor", "would", "\"", "definitely", "challenge", "the", "ruling", "at", "the", "supreme", "court", "\"", ".", "also", "addressing", "the", "press", "yesterday", "in", "umuahia", ",", "ikpeazu", "faulted", "the", "appeal", "court", "'", "s", "judgment", ",", "saying", "that", "it", "was", "untenable", "and", "would", "be", "challenged", "at", "the", "supreme", "court", ".", "the", "abia", "governor", "said", "that", "he", "had", "directed", "his", "lawyers", "to", "take", "immediate", "steps", "to", "challenge", "the", "judgment", "at", "the", "supreme", "court", ".", "\"", "i", "wish", "to", "state", "at", "this", "point", "that", "preliminary", "reports", "available", "to", "me", "indicate", "that", "the", "premise", "upon", "which", "the", "decision", "of", "the", "court", "of", "appeal", "was", "arrived", "at", "was", "at", "best", "tenuous", ",", "\"", "he", "said", ".", "the", "governor", "said", "that", "in", "going", "to", "the", "supreme", "court", "he", "has", "\"", "utmost", "confidence", "in", "the", "ability", "of", "the", "justices", "to", "correct", "the", "anomaly", "at", "the", "court", "of", "appeal", "and", "uphold", "my", "victory", "as", "had", "been", "done", "earlier", "by", "the", "election", "petitions", "tribunal", "\"", ".", "ikpeazu", "said", "though", "he", "was", "yet", "to", "get", "a", "full", "briefing", "on", "the", "reason", "the", "appeal", "court", "nullified", "his", "election", ",", "his", "lawyers", "were", "still", "at", "owerri", "doing", "everything", "possible", "to", "obtain", "a", "copy", "of", "the", "judgment", ".", "\"", "the", "next", "four", "days", "are", "public", "holidays", "and", "the", "timing", "of", "the", "judgment", "means", "that", "we", "are", "losing", "valuable", "days", "to", "study", "the", "judgment", "and", "file", "our", "appeal", ",", "\"", "he", "said", ".", "ikpeazu", "assured", "residents", "of", "abia", "that", "his", "status", "as", "governor", "had", "not", "changed", ",", "adding", "that", "all", "was", "well", ".", "\"", "i", "remain", "the", "governor", "of", "abia", "state", "until", "the", "supreme", "court", "reaffirms", "my", "mandate", "freely", "given", "to", "me", "by", "abians", "during", "the", "election", ",", "\"", "he", "said", ".", "to", "avoid", "a", "breakdown", "of", "law", "and", "order", ",", "ikpeazu", "called", "on", "security", "agencies", "to", "maintain", "the", "peace", "and", "ensure", "that", "people", "go", "about", "their", "legitimate", "businesses", "without", "disruption", "."], "simple_tokens_original_case": ["By", "Senator", "Iroegbu", "in", "Abuja", ",", "Wole", "Ayodele", "in", "Jalingo", "and", "Emmanuel", "Ugwu", "in", "Umuahia", "The", "Appeal", "Court", "sitting", "in", "Abuja", "and", "Owerri", "on", "Thursday", "affirmed", "Mr", ".", "Darius", "Ishaku", "of", "the", "Peoples", "Democratic", "Party", "(", "PDP", ")", "and", "Mr", ".", "Alex", "Otti", "of", "the", "All", "Progressives", "Grand", "Alliance", "(", "APGA", ")", "as", "winners", "of", "the", "April", "11", "governorship", "elections", "in", "Taraba", "and", "Abia", "States", ",", "respectively", ".", "The", "Abuja", "appellate", "court", ",", "in", "its", "judgment", ",", "set", "aside", "the", "decision", "of", "the", "state", "Election", "Petitions", "Tribunal", ",", "which", "sacked", "the", "Taraba", "governor", "from", "office", "based", "on", "pre", "-", "election", "matters", ".", "Delivering", "judgment", "on", "the", "three", "appeals", "and", "cross", "-", "appeal", "that", "emanated", "from", "the", "judgment", "of", "the", "tribunal", ",", "which", "sat", "in", "Abuja", "because", "of", "security", "concerns", "in", "the", "North", "-", "east", ",", "a", "five", "-", "member", "panel", "of", "justices", "headed", "by", "Justice", "Abdul", "Aboki", "set", "aside", "the", "ruling", "of", "the", "tribunal", ".", "Justice", "Aboki", ",", "who", "read", "the", "unanimous", "judgment", ",", "held", "that", "it", "was", "a", "gross", "misdirection", "for", "the", "tribunal", "to", "have", "declared", "the", "governorship", "candidate", "of", "the", "All", "Progressives", "Congress", "(", "APC", ")", ",", "Mrs", ".", "Aisha", "Jumai", "Alhassan", ",", "also", "known", "as", "\"", "Mama", "Taraba", "\"", ",", "winner", "of", "the", "gubernatorial", "poll", "on", "the", "basis", "that", "she", "scored", "the", "second", "highest", "number", "of", "votes", "in", "the", "election", ".", "The", "court", "also", "held", "that", "from", "the", "evidence", "of", "witnesses", "to", "the", "petitioners", "before", "the", "tribunal", ",", "Ishaku", "was", "validly", "elected", "and", "sponsored", "by", "his", "party", ",", "the", "PDP", ",", "to", "vie", "for", "the", "governorship", "seat", "of", "the", "state", "in", "accordance", "with", "the", "constitution", ",", "the", "Electoral", "Act", "and", "in", "accordance", "with", "the", "election", "guidelines", "as", "laid", "down", "by", "the", "Independent", "National", "Electoral", "Commission", "(", "INEC", ")", ".", "\"", "Therefore", "the", "judgment", "of", "the", "Taraba", "State", "Governorship", "Election", "Petitions", "Tribunal", "is", "hereby", "declared", "null", ",", "void", "and", "set", "aside", "in", "its", "entirety", ".", "\"", "The", "appellant", "'", "s", "appeal", "is", "meritorious", "and", "is", "hereby", "allowed", ",", "\"", "Justice", "Aboki", "held", ".", "The", "judge", "went", "further", "to", "affirm", "\"", "Darius", "Dickson", "Ishaku", "as", "the", "dully", "elected", "governor", "of", "Taraba", "State", "\"", ".", "According", "to", "the", "court", ",", "APC", "and", "its", "governorship", "candidate", ",", "who", "were", "the", "first", "and", "second", "respondents", "in", "the", "appeal", ",", "had", "no", "locus", "standi", "under", "the", "law", "to", "challenge", "the", "primary", "election", "of", "the", "PDP", ",", "which", "produced", "Ishaku", "as", "its", "candidate", "for", "the", "election", "as", "none", "of", "them", "is", "a", "member", "of", "the", "PDP", ".", "It", "also", "held", "that", "INEC", "superintends", "the", "activities", "of", "political", "parties", "and", "if", "there", "was", "any", "breach", "or", "failure", "of", "the", "PDP", "to", "give", "the", "electoral", "body", "21", "days", "notice", "of", "its", "primary", "as", "alleged", ",", "it", "should", "not", "have", "been", "the", "headache", "of", "the", "APC", "and", "its", "governorship", "candidate", ",", "adding", "that", "the", "only", "person", "that", "could", "have", "complained", "of", "the", "conduct", "of", "a", "party", "'", "s", "primary", "election", "was", "the", "person", "who", "participated", "in", "the", "said", "primary", "election", "and", "INEC", ".", "According", "to", "the", "court", ",", "the", "Electoral", "Act", "specifies", "the", "procedures", "for", "the", "election", "and", "sponsorship", "of", "a", "candidate", "by", "a", "political", "party", "and", "that", "the", "right", "to", "complain", "is", "limited", "to", "participants", "in", "the", "primary", "election", ".", "The", "Justice", "Musa", "Danladi", "Abubakar", "-", "led", "tribunal", ",", "had", "in", "a", "petition", "filed", "by", "APC", "and", "Alhassan", ",", "held", "that", "the", "purported", "nomination", "of", "the", "governorship", "candidate", "by", "PDP", "breached", "Section", "85", "of", "the", "Electoral", "Act", "and", "ordered", "Ishaku", "to", "vacate", "his", "office", ".", "Justice", "Abubakar", "had", "in", "a", "judgment", "ordered", "that", "Alhassan", "be", "sworn", "in", "as", "governor", "because", "the", "PDP", "did", "not", "conduct", "a", "valid", "primary", "that", "threw", "Ishaku", "up", "as", "its", "standard", "-", "bearer", ".", "The", "tribunal", "however", "held", "that", "the", "APC", "governorship", "candidate", "could", "not", "adequately", "prove", "her", "allegation", "of", "\"", "over", "-", "voting", ",", "irregularities", ",", "and", "non", "-", "compliance", "with", "the", "Electoral", "Act", "2010", "\"", ".", "Dissatisfied", "with", "the", "judgment", ",", "Ishaku", "filed", "an", "appeal", ",", "asking", "the", "appellate", "court", "to", "set", "aside", "the", "judgment", "of", "the", "tribunal", ".", "Reacting", "to", "the", "appellate", "court", "'", "s", "ruling", "yesterday", ",", "Jalingo", ",", "the", "Taraba", "State", "capital", ",", "was", "thrown", "into", "jubilation", ",", "as", "residents", "marched", "through", "major", "streets", "of", "the", "town", "in", "celebration", "of", "the", "judgment", ".", "Residents", "in", "their", "thousands", "took", "to", "the", "streets", ",", "particularly", "around", "Hammaruwa", "Way", ",", "ATC", ",", "Mile", "6", "and", "Magami", "in", "motorcades", "and", "moved", "round", "the", "town", "singing", "and", "dancing", ".", "Traffic", "was", "obstructed", "and", "halted", "for", "several", "hours", "in", "the", "town", "as", "the", "convoy", ",", "which", "included", "women", "and", "children", ",", "and", "was", "carrying", "large", "loudspeakers", "obstructed", "the", "flow", "of", "traffic", "along", "the", "major", "roads", ".", "Enyetere", "Ambituni", ",", "one", "of", "the", "jubilant", "residents", ",", "told", "THISDAY", "that", "the", "judiciary", "proved", "once", "again", "to", "be", "the", "last", "hope", "of", "the", "common", "man", "and", "had", "vindicated", "the", "majority", "of", "the", "people", "of", "the", "state", "who", "overwhelmingly", "voted", "for", "Ishaku", "as", "their", "governor", ".", "According", "to", "him", ",", "\"", "We", "are", "celebrating", "today", "because", "the", "judiciary", "has", "once", "again", "shown", "that", "it", "is", "the", "last", "hope", "of", "the", "oppressed", ".", "The", "people", "of", "Taraba", "who", "overwhelmingly", "voted", "Ishaku", "as", "their", "governor", "have", "been", "vindicated", ".", "\"", "In", "Owerri", ",", "the", "Appeal", "Court", "also", "nullified", "the", "election", "of", "the", "Abia", "State", "Governor", ",", "Dr", ".", "Okezie", "Ikpeazu", ",", "and", "declared", "the", "governorship", "candidate", "of", "APGA", ",", "Otti", ",", "as", "the", "winner", "of", "the", "governorship", "election", "conducted", "in", "April", ".", "Otti", "had", "gone", "to", "the", "appeal", "court", "to", "challenge", "the", "verdict", "of", "the", "Governorship", "Election", "Petitions", "Tribunal", "which", "upheld", "the", "election", "of", "Ikpeazu", ".", "Just", "like", "he", "did", "at", "the", "tribunal", ",", "the", "APGA", "candidate", "contested", "the", "controversial", "results", "from", "Obingwa", ",", "Osisioma", "and", "Isiala", "Ngwa", "North", "Local", "Government", "Areas", "that", "the", "returning", "officer", "cancelled", "and", "later", "reversed", ".", "However", ",", "the", "results", "from", "the", "three", "local", "governments", "turned", "out", "to", "be", "the", "determinant", "in", "the", "Appeal", "Court", "'", "s", "judgment", "delivered", "by", "Justice", "Oyebisi", "Omoleye", ".", "The", "five", "-", "member", "panel", "unanimously", "agreed", "that", "the", "controversial", "results", "should", "not", "have", "been", "included", "in", "the", "final", "results", "and", "therefore", "cancelled", "them", "and", "after", "doing", "the", "mathematics", ",", "held", "that", "Otti", "scored", "the", "highest", "number", "of", "valid", "votes", ".", "In", "the", "governorship", "poll", ",", "Ikpeazu", "had", "emerged", "winner", "with", "264", ",", "713", "as", "against", "180", ",", "882", "votes", "credited", "to", "Otti", "by", "INEC", "which", "was", "affirmed", "by", "the", "tribunal", ".", "But", "after", "subtracting", "the", "scores", "of", "the", "candidates", "in", "the", "three", "council", "areas", ",", "the", "appeal", "panel", "held", "that", "Otti", "scored", "a", "total", "of", "164", ",", "332", "votes", "as", "against", "114", ",", "444", "obtained", "by", "Ikpeazu", ".", "Accordingly", ",", "Justice", "Omoleye", "held", "that", "the", "APGA", "candidate", "was", "duly", "elected", "and", "should", "be", "sworn", "in", "as", "governor", "of", "Abia", "State", ".", "Expectedly", ",", "when", "the", "news", "of", "Otti", "'", "s", "victory", "at", "the", "appeal", "court", "filtered", "into", "Umuahia", ",", "the", "capital", ",", "there", "were", "wild", "jubilations", "by", "supporters", "of", "APGA", ".", "Scores", "of", "jubilant", "party", "supporters", "mounted", "tricycles", "and", "drove", "along", "major", "streets", "of", "the", "capital", "city", "waving", "party", "flags", ",", "singing", "and", "praising", "Otti", "for", "his", "tenacity", ".", "However", ",", "the", "ruling", "by", "the", "appellate", "court", "did", "not", "go", "down", "well", "with", "Ikpeazu", ",", "whose", "aide", "said", "that", "the", "governor", "would", "\"", "definitely", "challenge", "the", "ruling", "at", "the", "Supreme", "Court", "\"", ".", "Also", "addressing", "the", "press", "yesterday", "in", "Umuahia", ",", "Ikpeazu", "faulted", "the", "Appeal", "Court", "'", "s", "judgment", ",", "saying", "that", "it", "was", "untenable", "and", "would", "be", "challenged", "at", "the", "Supreme", "Court", ".", "The", "Abia", "governor", "said", "that", "he", "had", "directed", "his", "lawyers", "to", "take", "immediate", "steps", "to", "challenge", "the", "judgment", "at", "the", "Supreme", "Court", ".", "\"", "I", "wish", "to", "state", "at", "this", "point", "that", "preliminary", "reports", "available", "to", "me", "indicate", "that", "the", "premise", "upon", "which", "the", "decision", "of", "the", "Court", "of", "Appeal", "was", "arrived", "at", "was", "at", "best", "tenuous", ",", "\"", "he", "said", ".", "The", "governor", "said", "that", "in", "going", "to", "the", "Supreme", "Court", "he", "has", "\"", "utmost", "confidence", "in", "the", "ability", "of", "the", "justices", "to", "correct", "the", "anomaly", "at", "the", "Court", "of", "Appeal", "and", "uphold", "my", "victory", "as", "had", "been", "done", "earlier", "by", "the", "Election", "Petitions", "Tribunal", "\"", ".", "Ikpeazu", "said", "though", "he", "was", "yet", "to", "get", "a", "full", "briefing", "on", "the", "reason", "the", "Appeal", "Court", "nullified", "his", "election", ",", "his", "lawyers", "were", "still", "at", "Owerri", "doing", "everything", "possible", "to", "obtain", "a", "copy", "of", "the", "judgment", ".", "\"", "The", "next", "four", "days", "are", "public", "holidays", "and", "the", "timing", "of", "the", "judgment", "means", "that", "we", "are", "losing", "valuable", "days", "to", "study", "the", "judgment", "and", "file", "our", "appeal", ",", "\"", "he", "said", ".", "Ikpeazu", "assured", "residents", "of", "Abia", "that", "his", "status", "as", "governor", "had", "not", "changed", ",", "adding", "that", "all", "was", "well", ".", "\"", "I", "remain", "the", "governor", "of", "Abia", "State", "until", "the", "Supreme", "Court", "reaffirms", "my", "mandate", "freely", "given", "to", "me", "by", "Abians", "during", "the", "election", ",", "\"", "he", "said", ".", "To", "avoid", "a", "breakdown", "of", "law", "and", "order", ",", "Ikpeazu", "called", "on", "security", "agencies", "to", "maintain", "the", "peace", "and", "ensure", "that", "people", "go", "about", "their", "legitimate", "businesses", "without", "disruption", "."]}, "title": {"text": " Nigeria: Appeal Court Affirms Otti, Ishaku Duly Elected Governors of Abia, Taraba - allAfrica.com ", "simple_tokens": ["nigeria", ":", "appeal", "court", "affirms", "otti", ",", "ishaku", "duly", "elected", "governors", "of", "abia", ",", "taraba", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Appeal", "Court", "Affirms", "Otti", ",", "Ishaku", "Duly", "Elected", "Governors", "of", "Abia", ",", "Taraba", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:03.650474", "@etk_process_time": 1.030344009399414, "@etk_start_time": "2018-06-07T17:34:02.620130"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Appeal Court Affirms Otti, Ishaku Duly Elected Governors of Abia, Taraba - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: Appeal Court Affirms Otti, Ishaku Duly Elected Governors of Abia, Taraba\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Senator Iroegbu in Abuja, Wole Ayodele in Jalingo and Emmanuel Ugwu in Umuahia\n \n

\n The Appeal Court sitting in Abuja and Owerri on Thursday affirmed Mr. Darius Ishaku of the Peoples Democratic Party (PDP) and Mr. Alex Otti of the All Progressives Grand Alliance (APGA) as winners of the April 11 governorship elections in Taraba and Abia States, respectively.\n

\n

\n The Abuja appellate court, in its judgment, set aside the decision of the state Election Petitions Tribunal, which sacked the Taraba governor from office based on pre-election matters.\n

\n

\n Delivering judgment on the three appeals and cross-appeal that emanated from the judgment of the tribunal, which sat in Abuja because of security concerns in the North-east, a five-member panel of justices headed by Justice Abdul Aboki set aside the ruling of the tribunal.\n

\n

\n Justice Aboki, who read the unanimous judgment, held that it was a gross misdirection for the tribunal to have declared the governorship candidate of the All Progressives Congress (APC), Mrs. Aisha Jumai Alhassan, also known as \"Mama Taraba\", winner of the gubernatorial poll on the basis that she scored the second highest number of votes in the election.\n

\n

\n The court also held that from the evidence of witnesses to the petitioners before the tribunal, Ishaku was validly elected and sponsored by his party, the PDP, to vie for the governorship seat of the state in accordance with the constitution, the Electoral Act and in accordance with the election guidelines as laid down by the Independent National Electoral Commission (INEC). \"Therefore the judgment of the Taraba State Governorship Election Petitions Tribunal is hereby declared null, void and set aside in its entirety.\n

\n

\n \"The appellant's appeal is meritorious and is hereby allowed,\" Justice Aboki held. The judge went further to affirm \"Darius Dickson Ishaku as the dully elected governor of Taraba State\". According to the court, APC and its governorship candidate, who were the first and second respondents in the appeal, had no locus standi under the law to challenge the primary election of the PDP, which produced Ishaku as its candidate for the election as none of them is a member of the PDP.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n It also held that INEC superintends the activities of political parties and if there was any breach or failure of the PDP to give the electoral body 21 days notice of its primary as alleged, it should not have been the headache of the APC and its governorship candidate, adding that the only person that could have complained of the conduct of a party's primary election was the person who participated in the said primary election and INEC.\n

\n

\n According to the court, the Electoral Act specifies the procedures for the election and sponsorship of a candidate by a political party and that the right to complain is limited to participants in the primary election.\n

\n

\n The Justice Musa Danladi Abubakar-led tribunal, had in a petition filed by APC and Alhassan, held that the purported nomination of the governorship candidate by PDP breached Section 85 of the Electoral Act and ordered Ishaku to vacate his office.\n

\n

\n Justice Abubakar had in a judgment ordered that Alhassan be sworn in as governor because the PDP did not conduct a valid primary that threw Ishaku up as its standard-bearer.\n

\n

\n The tribunal however held that the APC governorship candidate could not adequately prove her allegation of \"over-voting, irregularities, and non-compliance with the Electoral Act 2010\".\n

\n

\n Dissatisfied with the judgment, Ishaku filed an appeal, asking the appellate court to set aside the judgment of the tribunal. Reacting to the appellate court's ruling yesterday, Jalingo, the Taraba State capital, was thrown into jubilation, as residents marched through major streets of the town in celebration of the judgment.\n

\n

\n Residents in their thousands took to the streets, particularly around Hammaruwa Way, ATC, Mile 6 and Magami in motorcades and moved round the town singing and dancing.\n

\n

\n Traffic was obstructed and halted for several hours in the town as the convoy, which included women and children, and was carrying large loudspeakers obstructed the flow of traffic along the major roads.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n Enyetere Ambituni, one of the jubilant residents, told THISDAY that the judiciary proved once again to be the last hope of the common man and had vindicated the majority of the people of the state who overwhelmingly voted for Ishaku as their governor.\n

\n
\n
\n
\n
\n

\n According to him, \"We are celebrating today because the judiciary has once again shown that it is the last hope of the oppressed. The people of Taraba who overwhelmingly voted Ishaku as their governor have been vindicated.\"\n

\n

\n In Owerri, the Appeal Court also nullified the election of the Abia State Governor, Dr. Okezie Ikpeazu, and declared the governorship candidate of APGA, Otti, as the winner of the governorship election conducted in April. Otti had gone to the appeal court to challenge the verdict of the Governorship Election Petitions Tribunal which upheld the election of Ikpeazu.\n

\n

\n Just like he did at the tribunal, the APGA candidate contested the controversial results from Obingwa, Osisioma and Isiala Ngwa North Local Government Areas that the returning officer cancelled and later reversed. However, the results from the three local governments turned out to be the determinant in the Appeal Court's judgment delivered by Justice Oyebisi Omoleye.\n

\n

\n The five-member panel unanimously agreed that the controversial results should not have been included in the final results and therefore cancelled them and after doing the mathematics, held that Otti scored the highest number of valid votes. In the governorship poll, Ikpeazu had emerged winner with 264,713 as against 180,882 votes credited to Otti by INEC which was affirmed by the tribunal.\n

\n

\n But after subtracting the scores of the candidates in the three council areas, the appeal panel held that Otti scored a total of 164,332 votes as against 114,444 obtained by Ikpeazu.\n

\n

\n Accordingly, Justice Omoleye held that the APGA candidate was duly elected and should be sworn in as governor of Abia State. Expectedly, when the news of Otti's victory at the appeal court filtered into Umuahia, the capital, there were wild jubilations by supporters of APGA. Scores of jubilant party supporters mounted tricycles and drove along major streets of the capital city waving party flags, singing and praising Otti for his tenacity.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n However, the ruling by the appellate court did not go down well with Ikpeazu, whose aide said that the governor would \"definitely challenge the ruling at the Supreme Court\".\n

\n

\n Also addressing the press yesterday in Umuahia, Ikpeazu faulted the Appeal Court's judgment, saying that it was untenable and would be challenged at the Supreme Court.\n

\n

\n The Abia governor said that he had directed his lawyers to take immediate steps to challenge the judgment at the Supreme Court. \"I wish to state at this point that preliminary reports available to me indicate that the premise upon which the decision of the Court of Appeal was arrived at was at best tenuous,\" he said.\n

\n

\n The governor said that in going to the Supreme Court he has \"utmost confidence in the ability of the justices to correct the anomaly at the Court of Appeal and uphold my victory as had been done earlier by the Election Petitions Tribunal\".\n

\n

\n Ikpeazu said though he was yet to get a full briefing on the reason the Appeal Court nullified his election, his lawyers were still at Owerri doing everything possible to obtain a copy of the judgment.\n

\n

\n \"The next four days are public holidays and the timing of the judgment means that we are losing valuable days to study the judgment and file our appeal,\" he said.\n

\n

\n Ikpeazu assured residents of Abia that his status as governor had not changed, adding that all was well. \"I remain the governor of Abia State until the Supreme Court reaffirms my mandate freely given to me by Abians during the election,\" he said.\n

\n

\n To avoid a breakdown of law and order, Ikpeazu called on security agencies to maintain the peace and ensure that people go about their legitimate businesses without disruption.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6", "document_id": "58523BB9DD5E2EA8E69E1BB4E78B60176F1F70CEDCE3D11A483C018B53AD2DD6"} +{"url": "http://www.ce_news_article.org/2016/01/01/201601110125.html", "knowledge_graph": {"product": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 87, "end": 88, "input": "tokens", "text": "arrive at PUs 017 . 026 , 027 & 028 , "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "026"}, {"source": {"segment": "content_relaxed", "context": {"start": 99, "end": 100, "input": "tokens", "text": "arrive at PUs 017 . 026 , 027 & 028 , "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "026"}], "key": "026", "value": "026"}], "person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 93, "end": 95, "input": "tokens", "text": ", 027 & 028 , Ukubie Ward , Southern Ijaw 1 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukubie Ward"}, {"source": {"segment": "content_strict", "context": {"start": 244, "end": 246, "input": "tokens", "text": "/ 16 / 027 , Ukubie Ward , Southern Ijaw 01 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukubie Ward"}, {"source": {"segment": "content_relaxed", "context": {"start": 105, "end": 107, "input": "tokens", "text": ", 027 & 028 , Ukubie Ward , Southern Ijaw 1 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukubie Ward"}, {"source": {"segment": "content_relaxed", "context": {"start": 256, "end": 258, "input": "tokens", "text": "/ 16 / 027 , Ukubie Ward , Southern Ijaw 01 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukubie Ward"}], "key": "ukubie ward", "value": "Ukubie Ward"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 364, "end": 366, "input": "tokens", "text": "December poll . Copyright 2016 Daily Trust . All rights reserved . "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Daily Trust"}], "key": "daily trust", "value": "Daily Trust"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 408, "end": 409, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 183, "end": 186, "input": "tokens", "text": "Agoibiri , Amatolo areas of Southern Ijaw LGA 1 / 9 / 2016 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw LGA"}, {"source": {"segment": "content_relaxed", "context": {"start": 195, "end": 198, "input": "tokens", "text": "Agoibiri , Amatolo areas of Southern Ijaw LGA 1 / 9 / 2016 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw LGA"}], "key": "southern ijaw lga", "value": "Southern Ijaw LGA"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 298, "end": 300, "input": "tokens", "text": "at Ayama ward 20 in Southern Ijaw . Accreditation and voting are "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw"}, {"source": {"segment": "content_relaxed", "context": {"start": 310, "end": 312, "input": "tokens", "text": "at Ayama ward 20 in Southern Ijaw . Accreditation and voting are "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw"}], "key": "southern ijaw", "value": "Southern Ijaw"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 317, "end": 322, "input": "tokens", "text": "is about to commence in Southern Ijaw Local Government Area and some wards in some "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw Local Government Area"}, {"source": {"segment": "content_relaxed", "context": {"start": 329, "end": 334, "input": "tokens", "text": "is about to commence in Southern Ijaw Local Government Area and some wards in some "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southern Ijaw Local Government Area"}], "key": "southern ijaw local government area", "value": "Southern Ijaw Local Government Area"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 468, "end": 469, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 496, "end": 497, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "language": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 256, "end": 257, "input": "tokens", "text": "09 / 2016 12 : 03 11 : 31am . No "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "03"}, {"source": {"segment": "content_relaxed", "context": {"start": 268, "end": 269, "input": "tokens", "text": "09 / 2016 12 : 03 11 : 31am . No "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "03"}], "key": "03", "value": "03"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Bayelsa Governorship Supplementary Election - Live Updates - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 3, "input": "tokens", "text": "By Ademola 1 / 9 / 2016 14 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ademola 1"}], "key": "ademola 1", "value": "Ademola 1"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 89, "end": 92, "input": "tokens", "text": "PUs 017 . 026 , 027 & 028 , Ukubie Ward , Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "027 & 028"}, {"source": {"segment": "content_relaxed", "context": {"start": 101, "end": 104, "input": "tokens", "text": "PUs 017 . 026 , 027 & 028 , Ukubie Ward , Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "027 & 028"}], "key": "027 & 028", "value": "027 & 028"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 120, "end": 121, "input": "tokens", "text": "Ijaw LGA , as the Bayelsa supplementary election process continues . "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}, {"source": {"segment": "content_relaxed", "context": {"start": 132, "end": 133, "input": "tokens", "text": "Ijaw LGA , as the Bayelsa supplementary election process continues . "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}], "key": "bayelsa", "value": "Bayelsa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 137, "end": 139, "input": "tokens", "text": "ward 1 , Agoibiri , South Ijaw local government area of Bayelsa "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Ijaw"}, {"source": {"segment": "content_relaxed", "context": {"start": 149, "end": 151, "input": "tokens", "text": "ward 1 , Agoibiri , South Ijaw local government area of Bayelsa "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Ijaw"}], "key": "south ijaw", "value": "South Ijaw"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 272, "end": 275, "input": "tokens", "text": "Ward 6 unit 004 , 005 & 013 in Brass 01 / 09 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "005 & 013"}, {"source": {"segment": "content_relaxed", "context": {"start": 284, "end": 287, "input": "tokens", "text": "Ward 6 unit 004 , 005 & 013 in Brass 01 / 09 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "005 & 013"}], "key": "005 & 013", "value": "005 & 013"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 294, "end": 295, "input": "tokens", "text": "turn out of voters at Ayama ward 20 in Southern Ijaw "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ayama"}, {"source": {"segment": "content_relaxed", "context": {"start": 306, "end": 307, "input": "tokens", "text": "turn out of voters at Ayama ward 20 in Southern Ijaw "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ayama"}], "key": "ayama", "value": "Ayama"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 332, "end": 337, "input": "tokens", "text": "other local government areas . The Independent National Electoral Commission , INEC , had declared "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Independent National Electoral Commission"}, {"source": {"segment": "content_relaxed", "context": {"start": 344, "end": 349, "input": "tokens", "text": "other local government areas . The Independent National Electoral Commission , INEC , had declared "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Independent National Electoral Commission"}], "key": "the independent national electoral commission", "value": "The Independent National Electoral Commission"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 338, "end": 339, "input": "tokens", "text": "Independent National Electoral Commission , INEC , had declared the election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 350, "end": 351, "input": "tokens", "text": "Independent National Electoral Commission , INEC , had declared the election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}], "key": "inec", "value": "INEC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 11, "input": "tokens", "text": "9 January 2016 Nigeria : Bayelsa Governorship Supplementary Election - Live Updates By Ademola 1 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa Governorship Supplementary Election - Live"}], "key": "bayelsa governorship supplementary election - live", "value": "Bayelsa Governorship Supplementary Election - Live"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 371, "end": 372, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 373, "end": 376, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 2, "end": 11, "input": "tokens", "text": "Nigeria : Bayelsa Governorship Supplementary Election - Live Updates - allAfrica . com "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa Governorship Supplementary Election - Live Updates - allAfrica"}], "key": "bayelsa governorship supplementary election - live updates - allafrica", "value": "Bayelsa Governorship Supplementary Election - Live Updates - allAfrica"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 33, "end": 34, "input": "tokens", "text": "s supplementary governorship election in Bayelsa have been arrested for allegedly "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}, {"source": {"segment": "content_relaxed", "context": {"start": 45, "end": 46, "input": "tokens", "text": "s supplementary governorship election in Bayelsa have been arrested for allegedly "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}], "key": "bayelsa", "value": "Bayelsa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 135, "end": 136, "input": "tokens", "text": "reported in ward 1 , Agoibiri , South Ijaw local government "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Agoibiri"}, {"source": {"segment": "content_strict", "context": {"start": 178, "end": 179, "input": "tokens", "text": "20 : 34Shooting reported in Agoibiri , Amatolo areas of Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Agoibiri"}, {"source": {"segment": "content_relaxed", "context": {"start": 147, "end": 148, "input": "tokens", "text": "reported in ward 1 , Agoibiri , South Ijaw local government "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Agoibiri"}, {"source": {"segment": "content_relaxed", "context": {"start": 190, "end": 191, "input": "tokens", "text": "20 : 34Shooting reported in Agoibiri , Amatolo areas of Southern "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Agoibiri"}], "key": "agoibiri", "value": "Agoibiri"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 143, "end": 145, "input": "tokens", "text": "Ijaw local government area of Bayelsa State . 01 / 09 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 155, "end": 157, "input": "tokens", "text": "Ijaw local government area of Bayelsa State . 01 / 09 / "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}], "key": "bayelsa state", "value": "Bayelsa State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 158, "end": 159, "input": "tokens", "text": "29 Reports say Dozens of Amassoma youths hunting for thugs snatching "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Amassoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 170, "end": 171, "input": "tokens", "text": "29 Reports say Dozens of Amassoma youths hunting for thugs snatching "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Amassoma"}], "key": "amassoma", "value": "Amassoma"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 180, "end": 181, "input": "tokens", "text": "34Shooting reported in Agoibiri , Amatolo areas of Southern Ijaw LGA "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Amatolo"}, {"source": {"segment": "content_relaxed", "context": {"start": 192, "end": 193, "input": "tokens", "text": "34Shooting reported in Agoibiri , Amatolo areas of Southern Ijaw LGA "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Amatolo"}], "key": "amatolo", "value": "Amatolo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 210, "end": 211, "input": "tokens", "text": "PUs 11 & 15 , Gbarain , Yenagoa 1 / 9 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gbarain"}, {"source": {"segment": "content_relaxed", "context": {"start": 222, "end": 223, "input": "tokens", "text": "PUs 11 & 15 , Gbarain , Yenagoa 1 / 9 "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gbarain"}], "key": "gbarain", "value": "Gbarain"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 3, "end": 4, "input": "tokens", "text": "9 January 2016 Nigeria : Bayelsa Governorship Supplementary Election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bayelsa Governorship Supplementary Election "}, "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"}, "method": "rearrange_description"}], "key": "description", "value": "

By Ademola

1/9/2016 14:37:14

Two persons suspected to be agents of one of the political parties involved in Saturday's supplementary governorship election in Bayelsa have been arrested for allegedly snatching a ballot box.

1/9/2016 14:34:34

Bodiwari Open Square Yenagoa. Election disrupted and material snatched and carted away.

1/9/2016 14:32:15

Election materials yet to arrive at PUs 017. 026, 027 & 028, Ukubie Ward, Southern Ijaw

1/9/2016 14:30:33

Sporadic shooting has been reported in Southern Ijaw LGA, as the Bayelsa supplementary election process continues.

A shooting incident was reported in ward 1, Agoibiri, South Ijaw local government area of Bayelsa State.

01/09/2016 14:29

Reports say Dozens of Amassoma youths hunting for thugs snatching ballot boxes

1/9/2016 14:20:34Shooting reported in Agoibiri, Amatolo areas of Southern Ijaw LGA

1/9/2016 13:12:13 Ballot box snatched with result sheets by thugs @ PUs 11 & 15, Gbarain, Yenagoa

1/9/2016 12:3:42

11.30am Election materials and @inecnigeria officials yet to arrive PU 06/07/16/027, Ukubie Ward, Southern Ijaw

01/09/2016 12:03

11:31am. No materials or officials yet at Ward 6 unit 004, 005 & 013 in Brass

01/09/2016 11:26

There is a large turn out of voters at Ayama ward 20 in Southern Ijaw. Accreditation and voting are ongoing and very peaceful.

The exercise is about to commence in Southern Ijaw Local Government Area and some wards in some other local government areas.

The Independent National Electoral Commission, INEC, had declared the election inconclusive during the December poll.

"}]}, "content_extraction": {"content_relaxed": {"text": "

9 January 2016

Nigeria: Bayelsa Governorship Supplementary Election - Live Updates

By Ademola

1/9/2016 14:37:14

Two persons suspected to be agents of one of the political parties involved in Saturday's supplementary governorship election in Bayelsa have been arrested for allegedly snatching a ballot box.

1/9/2016 14:34:34

Bodiwari Open Square Yenagoa. Election disrupted and material snatched and carted away.

1/9/2016 14:32:15

Election materials yet to arrive at PUs 017. 026, 027 & 028, Ukubie Ward, Southern Ijaw

1/9/2016 14:30:33

Sporadic shooting has been reported in Southern Ijaw LGA, as the Bayelsa supplementary election process continues.

A shooting incident was reported in ward 1, Agoibiri, South Ijaw local government area of Bayelsa State.

01/09/2016 14:29

Reports say Dozens of Amassoma youths hunting for thugs snatching ballot boxes

1/9/2016 14:20:34Shooting reported in Agoibiri, Amatolo areas of Southern Ijaw LGA

1/9/2016 13:12:13 Ballot box snatched with result sheets by thugs @ PUs 11 & 15, Gbarain, Yenagoa

1/9/2016 12:3:42

11.30am Election materials and @inecnigeria officials yet to arrive PU 06/07/16/027, Ukubie Ward, Southern Ijaw

01/09/2016 12:03

11:31am. No materials or officials yet at Ward 6 unit 004, 005 & 013 in Brass

01/09/2016 11:26

There is a large turn out of voters at Ayama ward 20 in Southern Ijaw. Accreditation and voting are ongoing and very peaceful.

The exercise is about to commence in Southern Ijaw Local Government Area and some wards in some other local government areas.

The Independent National Electoral Commission, INEC, had declared the election inconclusive during the December poll.

Copyright

2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["9", "january", "2016", "nigeria", ":", "bayelsa", "governorship", "supplementary", "election", "-", "live", "updates", "by", "ademola", "1", "/", "9", "/", "2016", "14", ":", "37", ":", "14", "two", "persons", "suspected", "to", "be", "agents", "of", "one", "of", "the", "political", "parties", "involved", "in", "saturday", "'", "s", "supplementary", "governorship", "election", "in", "bayelsa", "have", "been", "arrested", "for", "allegedly", "snatching", "a", "ballot", "box", ".", "1", "/", "9", "/", "2016", "14", ":", "34", ":", "34", "bodiwari", "open", "square", "yenagoa", ".", "election", "disrupted", "and", "material", "snatched", "and", "carted", "away", ".", "1", "/", "9", "/", "2016", "14", ":", "32", ":", "15", "election", "materials", "yet", "to", "arrive", "at", "pus", "017", ".", "026", ",", "027", "&", "028", ",", "ukubie", "ward", ",", "southern", "ijaw", "1", "/", "9", "/", "2016", "14", ":", "30", ":", "33", "sporadic", "shooting", "has", "been", "reported", "in", "southern", "ijaw", "lga", ",", "as", "the", "bayelsa", "supplementary", "election", "process", "continues", ".", "a", "shooting", "incident", "was", "reported", "in", "ward", "1", ",", "agoibiri", ",", "south", "ijaw", "local", "government", "area", "of", "bayelsa", "state", ".", "01", "/", "09", "/", "2016", "14", ":", "29", "reports", "say", "dozens", "of", "amassoma", "youths", "hunting", "for", "thugs", "snatching", "ballot", "boxes", "1", "/", "9", "/", "2016", "14", ":", "20", ":", "34shooting", "reported", "in", "agoibiri", ",", "amatolo", "areas", "of", "southern", "ijaw", "lga", "1", "/", "9", "/", "2016", "13", ":", "12", ":", "13", "ballot", "box", "snatched", "with", "result", "sheets", "by", "thugs", "@", "pus", "11", "&", "15", ",", "gbarain", ",", "yenagoa", "1", "/", "9", "/", "2016", "12", ":", "3", ":", "42", "11", ".", "30am", "election", "materials", "and", "@", "inecnigeria", "officials", "yet", "to", "arrive", "pu", "06", "/", "07", "/", "16", "/", "027", ",", "ukubie", "ward", ",", "southern", "ijaw", "01", "/", "09", "/", "2016", "12", ":", "03", "11", ":", "31am", ".", "no", "materials", "or", "officials", "yet", "at", "ward", "6", "unit", "004", ",", "005", "&", "013", "in", "brass", "01", "/", "09", "/", "2016", "11", ":", "26", "there", "is", "a", "large", "turn", "out", "of", "voters", "at", "ayama", "ward", "20", "in", "southern", "ijaw", ".", "accreditation", "and", "voting", "are", "ongoing", "and", "very", "peaceful", ".", "the", "exercise", "is", "about", "to", "commence", "in", "southern", "ijaw", "local", "government", "area", "and", "some", "wards", "in", "some", "other", "local", "government", "areas", ".", "the", "independent", "national", "electoral", "commission", ",", "inec", ",", "had", "declared", "the", "election", "inconclusive", "during", "the", "december", "poll", ".", "copyright", "2016", "daily", "trust", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["9", "January", "2016", "Nigeria", ":", "Bayelsa", "Governorship", "Supplementary", "Election", "-", "Live", "Updates", "By", "Ademola", "1", "/", "9", "/", "2016", "14", ":", "37", ":", "14", "Two", "persons", "suspected", "to", "be", "agents", "of", "one", "of", "the", "political", "parties", "involved", "in", "Saturday", "'", "s", "supplementary", "governorship", "election", "in", "Bayelsa", "have", "been", "arrested", "for", "allegedly", "snatching", "a", "ballot", "box", ".", "1", "/", "9", "/", "2016", "14", ":", "34", ":", "34", "Bodiwari", "Open", "Square", "Yenagoa", ".", "Election", "disrupted", "and", "material", "snatched", "and", "carted", "away", ".", "1", "/", "9", "/", "2016", "14", ":", "32", ":", "15", "Election", "materials", "yet", "to", "arrive", "at", "PUs", "017", ".", "026", ",", "027", "&", "028", ",", "Ukubie", "Ward", ",", "Southern", "Ijaw", "1", "/", "9", "/", "2016", "14", ":", "30", ":", "33", "Sporadic", "shooting", "has", "been", "reported", "in", "Southern", "Ijaw", "LGA", ",", "as", "the", "Bayelsa", "supplementary", "election", "process", "continues", ".", "A", "shooting", "incident", "was", "reported", "in", "ward", "1", ",", "Agoibiri", ",", "South", "Ijaw", "local", "government", "area", "of", "Bayelsa", "State", ".", "01", "/", "09", "/", "2016", "14", ":", "29", "Reports", "say", "Dozens", "of", "Amassoma", "youths", "hunting", "for", "thugs", "snatching", "ballot", "boxes", "1", "/", "9", "/", "2016", "14", ":", "20", ":", "34Shooting", "reported", "in", "Agoibiri", ",", "Amatolo", "areas", "of", "Southern", "Ijaw", "LGA", "1", "/", "9", "/", "2016", "13", ":", "12", ":", "13", "Ballot", "box", "snatched", "with", "result", "sheets", "by", "thugs", "@", "PUs", "11", "&", "15", ",", "Gbarain", ",", "Yenagoa", "1", "/", "9", "/", "2016", "12", ":", "3", ":", "42", "11", ".", "30am", "Election", "materials", "and", "@", "inecnigeria", "officials", "yet", "to", "arrive", "PU", "06", "/", "07", "/", "16", "/", "027", ",", "Ukubie", "Ward", ",", "Southern", "Ijaw", "01", "/", "09", "/", "2016", "12", ":", "03", "11", ":", "31am", ".", "No", "materials", "or", "officials", "yet", "at", "Ward", "6", "unit", "004", ",", "005", "&", "013", "in", "Brass", "01", "/", "09", "/", "2016", "11", ":", "26", "There", "is", "a", "large", "turn", "out", "of", "voters", "at", "Ayama", "ward", "20", "in", "Southern", "Ijaw", ".", "Accreditation", "and", "voting", "are", "ongoing", "and", "very", "peaceful", ".", "The", "exercise", "is", "about", "to", "commence", "in", "Southern", "Ijaw", "Local", "Government", "Area", "and", "some", "wards", "in", "some", "other", "local", "government", "areas", ".", "The", "Independent", "National", "Electoral", "Commission", ",", "INEC", ",", "had", "declared", "the", "election", "inconclusive", "during", "the", "December", "poll", ".", "Copyright", "2016", "Daily", "Trust", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/01/201601110125.html"}, "content_strict": {"text": "

By Ademola

1/9/2016 14:37:14

Two persons suspected to be agents of one of the political parties involved in Saturday's supplementary governorship election in Bayelsa have been arrested for allegedly snatching a ballot box.

1/9/2016 14:34:34

Bodiwari Open Square Yenagoa. Election disrupted and material snatched and carted away.

1/9/2016 14:32:15

Election materials yet to arrive at PUs 017. 026, 027 & 028, Ukubie Ward, Southern Ijaw

1/9/2016 14:30:33

Sporadic shooting has been reported in Southern Ijaw LGA, as the Bayelsa supplementary election process continues.

A shooting incident was reported in ward 1, Agoibiri, South Ijaw local government area of Bayelsa State.

01/09/2016 14:29

Reports say Dozens of Amassoma youths hunting for thugs snatching ballot boxes

1/9/2016 14:20:34Shooting reported in Agoibiri, Amatolo areas of Southern Ijaw LGA

1/9/2016 13:12:13 Ballot box snatched with result sheets by thugs @ PUs 11 & 15, Gbarain, Yenagoa

1/9/2016 12:3:42

11.30am Election materials and @inecnigeria officials yet to arrive PU 06/07/16/027, Ukubie Ward, Southern Ijaw

01/09/2016 12:03

11:31am. No materials or officials yet at Ward 6 unit 004, 005 & 013 in Brass

01/09/2016 11:26

There is a large turn out of voters at Ayama ward 20 in Southern Ijaw. Accreditation and voting are ongoing and very peaceful.

The exercise is about to commence in Southern Ijaw Local Government Area and some wards in some other local government areas.

The Independent National Electoral Commission, INEC, had declared the election inconclusive during the December poll.

", "simple_tokens": ["by", "ademola", "1", "/", "9", "/", "2016", "14", ":", "37", ":", "14", "two", "persons", "suspected", "to", "be", "agents", "of", "one", "of", "the", "political", "parties", "involved", "in", "saturday", "'", "s", "supplementary", "governorship", "election", "in", "bayelsa", "have", "been", "arrested", "for", "allegedly", "snatching", "a", "ballot", "box", ".", "1", "/", "9", "/", "2016", "14", ":", "34", ":", "34", "bodiwari", "open", "square", "yenagoa", ".", "election", "disrupted", "and", "material", "snatched", "and", "carted", "away", ".", "1", "/", "9", "/", "2016", "14", ":", "32", ":", "15", "election", "materials", "yet", "to", "arrive", "at", "pus", "017", ".", "026", ",", "027", "&", "028", ",", "ukubie", "ward", ",", "southern", "ijaw", "1", "/", "9", "/", "2016", "14", ":", "30", ":", "33", "sporadic", "shooting", "has", "been", "reported", "in", "southern", "ijaw", "lga", ",", "as", "the", "bayelsa", "supplementary", "election", "process", "continues", ".", "a", "shooting", "incident", "was", "reported", "in", "ward", "1", ",", "agoibiri", ",", "south", "ijaw", "local", "government", "area", "of", "bayelsa", "state", ".", "01", "/", "09", "/", "2016", "14", ":", "29", "reports", "say", "dozens", "of", "amassoma", "youths", "hunting", "for", "thugs", "snatching", "ballot", "boxes", "1", "/", "9", "/", "2016", "14", ":", "20", ":", "34shooting", "reported", "in", "agoibiri", ",", "amatolo", "areas", "of", "southern", "ijaw", "lga", "1", "/", "9", "/", "2016", "13", ":", "12", ":", "13", "ballot", "box", "snatched", "with", "result", "sheets", "by", "thugs", "@", "pus", "11", "&", "15", ",", "gbarain", ",", "yenagoa", "1", "/", "9", "/", "2016", "12", ":", "3", ":", "42", "11", ".", "30am", "election", "materials", "and", "@", "inecnigeria", "officials", "yet", "to", "arrive", "pu", "06", "/", "07", "/", "16", "/", "027", ",", "ukubie", "ward", ",", "southern", "ijaw", "01", "/", "09", "/", "2016", "12", ":", "03", "11", ":", "31am", ".", "no", "materials", "or", "officials", "yet", "at", "ward", "6", "unit", "004", ",", "005", "&", "013", "in", "brass", "01", "/", "09", "/", "2016", "11", ":", "26", "there", "is", "a", "large", "turn", "out", "of", "voters", "at", "ayama", "ward", "20", "in", "southern", "ijaw", ".", "accreditation", "and", "voting", "are", "ongoing", "and", "very", "peaceful", ".", "the", "exercise", "is", "about", "to", "commence", "in", "southern", "ijaw", "local", "government", "area", "and", "some", "wards", "in", "some", "other", "local", "government", "areas", ".", "the", "independent", "national", "electoral", "commission", ",", "inec", ",", "had", "declared", "the", "election", "inconclusive", "during", "the", "december", "poll", "."], "simple_tokens_original_case": ["By", "Ademola", "1", "/", "9", "/", "2016", "14", ":", "37", ":", "14", "Two", "persons", "suspected", "to", "be", "agents", "of", "one", "of", "the", "political", "parties", "involved", "in", "Saturday", "'", "s", "supplementary", "governorship", "election", "in", "Bayelsa", "have", "been", "arrested", "for", "allegedly", "snatching", "a", "ballot", "box", ".", "1", "/", "9", "/", "2016", "14", ":", "34", ":", "34", "Bodiwari", "Open", "Square", "Yenagoa", ".", "Election", "disrupted", "and", "material", "snatched", "and", "carted", "away", ".", "1", "/", "9", "/", "2016", "14", ":", "32", ":", "15", "Election", "materials", "yet", "to", "arrive", "at", "PUs", "017", ".", "026", ",", "027", "&", "028", ",", "Ukubie", "Ward", ",", "Southern", "Ijaw", "1", "/", "9", "/", "2016", "14", ":", "30", ":", "33", "Sporadic", "shooting", "has", "been", "reported", "in", "Southern", "Ijaw", "LGA", ",", "as", "the", "Bayelsa", "supplementary", "election", "process", "continues", ".", "A", "shooting", "incident", "was", "reported", "in", "ward", "1", ",", "Agoibiri", ",", "South", "Ijaw", "local", "government", "area", "of", "Bayelsa", "State", ".", "01", "/", "09", "/", "2016", "14", ":", "29", "Reports", "say", "Dozens", "of", "Amassoma", "youths", "hunting", "for", "thugs", "snatching", "ballot", "boxes", "1", "/", "9", "/", "2016", "14", ":", "20", ":", "34Shooting", "reported", "in", "Agoibiri", ",", "Amatolo", "areas", "of", "Southern", "Ijaw", "LGA", "1", "/", "9", "/", "2016", "13", ":", "12", ":", "13", "Ballot", "box", "snatched", "with", "result", "sheets", "by", "thugs", "@", "PUs", "11", "&", "15", ",", "Gbarain", ",", "Yenagoa", "1", "/", "9", "/", "2016", "12", ":", "3", ":", "42", "11", ".", "30am", "Election", "materials", "and", "@", "inecnigeria", "officials", "yet", "to", "arrive", "PU", "06", "/", "07", "/", "16", "/", "027", ",", "Ukubie", "Ward", ",", "Southern", "Ijaw", "01", "/", "09", "/", "2016", "12", ":", "03", "11", ":", "31am", ".", "No", "materials", "or", "officials", "yet", "at", "Ward", "6", "unit", "004", ",", "005", "&", "013", "in", "Brass", "01", "/", "09", "/", "2016", "11", ":", "26", "There", "is", "a", "large", "turn", "out", "of", "voters", "at", "Ayama", "ward", "20", "in", "Southern", "Ijaw", ".", "Accreditation", "and", "voting", "are", "ongoing", "and", "very", "peaceful", ".", "The", "exercise", "is", "about", "to", "commence", "in", "Southern", "Ijaw", "Local", "Government", "Area", "and", "some", "wards", "in", "some", "other", "local", "government", "areas", ".", "The", "Independent", "National", "Electoral", "Commission", ",", "INEC", ",", "had", "declared", "the", "election", "inconclusive", "during", "the", "December", "poll", "."]}, "title": {"text": " Nigeria: Bayelsa Governorship Supplementary Election - Live Updates - allAfrica.com ", "simple_tokens": ["nigeria", ":", "bayelsa", "governorship", "supplementary", "election", "-", "live", "updates", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Bayelsa", "Governorship", "Supplementary", "Election", "-", "Live", "Updates", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:04.115036", "@etk_process_time": 0.46010804176330566, "@etk_start_time": "2018-06-07T17:34:03.654928"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Bayelsa Governorship Supplementary Election - Live Updates - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 9 January 2016\n
\n \n \n

\n Nigeria: Bayelsa Governorship Supplementary Election - Live Updates\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Ademola\n \n

\n 1/9/2016 14:37:14\n

\n

\n Two persons suspected to be agents of one of the political parties involved in Saturday's supplementary governorship election in Bayelsa have been arrested for allegedly snatching a ballot box.\n

\n

\n 1/9/2016 14:34:34\n

\n

\n Bodiwari Open Square Yenagoa. Election disrupted and material snatched and carted away.\n

\n

\n 1/9/2016 14:32:15\n

\n

\n Election materials yet to arrive at PUs 017. 026, 027 & 028, Ukubie Ward, Southern Ijaw\n

\n

\n 1/9/2016 14:30:33\n

\n

\n Sporadic shooting has been reported in Southern Ijaw LGA, as the Bayelsa supplementary election process continues.\n

\n

\n A shooting incident was reported in ward 1, Agoibiri, South Ijaw local government area of Bayelsa State.\n

\n

\n 01/09/2016 14:29\n

\n

\n Reports say Dozens of Amassoma youths hunting for thugs snatching ballot boxes\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
\n
\n

\n 1/9/2016 14:20:34Shooting reported in Agoibiri, Amatolo areas of Southern Ijaw LGA\n

\n

\n 1/9/2016 13:12:13 Ballot box snatched with result sheets by thugs @ PUs 11 & 15, Gbarain, Yenagoa\n

\n

\n 1/9/2016 12:3:42\n

\n

\n 11.30am Election materials and @inecnigeria officials yet to arrive PU 06/07/16/027, Ukubie Ward, Southern Ijaw\n

\n

\n 01/09/2016 12:03\n

\n

\n 11:31am. No materials or officials yet at Ward 6 unit 004, 005 & 013 in Brass\n

\n

\n 01/09/2016 11:26\n

\n

\n There is a large turn out of voters at Ayama ward 20 in Southern Ijaw. Accreditation and voting are ongoing and very peaceful.\n

\n

\n The exercise is about to commence in Southern Ijaw Local Government Area and some wards in some other local government areas.\n

\n

\n The Independent National Electoral Commission, INEC, had declared the election inconclusive during the December poll.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187", "document_id": "5ABFFC51C70FB1DE426C785AB22AC06F11676930D15CEF0467DCAC84DBE47187"} +{"url": "http://www.ce_news_article.org/2016/01/02/201601020066.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 18, "end": 20, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 71, "end": 73, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 267, "end": 269, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \" "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 31, "end": 33, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 84, "end": 86, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 280, "end": 282, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \" "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}], "key": "jesus christ", "value": "Jesus Christ"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 60, "end": 62, "input": "tokens", "text": "of Orlu Catholic Diocese , Augustine Ukwuoma , on Friday unveiled the "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Ukwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 73, "end": 75, "input": "tokens", "text": "of Orlu Catholic Diocese , Augustine Ukwuoma , on Friday unveiled the "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Ukwuoma"}], "key": "augustine ukwuoma", "value": "Augustine Ukwuoma"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 110, "end": 113, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . Mr "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ramesses ii Abusimbel"}, {"source": {"segment": "content_relaxed", "context": {"start": 123, "end": 126, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . Mr "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ramesses ii Abusimbel"}], "key": "ramesses ii abusimbel", "value": "Ramesses ii Abusimbel"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 136, "end": 138, "input": "tokens", "text": "Emeritus of Orlu Diocese , Gregory Ochiagha , and more than 100 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gregory Ochiagha"}, {"source": {"segment": "content_relaxed", "context": {"start": 149, "end": 151, "input": "tokens", "text": "Emeritus of Orlu Diocese , Gregory Ochiagha , and more than 100 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gregory Ochiagha"}], "key": "gregory ochiagha", "value": "Gregory Ochiagha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 145, "end": 146, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_strict", "context": {"start": 174, "end": 175, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_relaxed", "context": {"start": 158, "end": 159, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_relaxed", "context": {"start": 187, "end": 188, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}], "key": "st", "value": "St"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 155, "end": 157, "input": "tokens", "text": "compound on Friday . One Obinna Onuoha , who donated the Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 168, "end": 170, "input": "tokens", "text": "compound on Friday . One Obinna Onuoha , who donated the Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}], "key": "obinna onuoha", "value": "Obinna Onuoha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 161, "end": 162, "input": "tokens", "text": "Onuoha , who donated the Jesus statue , had constructed 2 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}, {"source": {"segment": "content_relaxed", "context": {"start": 174, "end": 175, "input": "tokens", "text": "Onuoha , who donated the Jesus statue , had constructed 2 "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}], "key": "jesus", "value": "Jesus"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 202, "end": 203, "input": "tokens", "text": "the parents of Mr . Obinna , Geoffrey , and Lolo "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna"}, {"source": {"segment": "content_relaxed", "context": {"start": 215, "end": 216, "input": "tokens", "text": "the parents of Mr . Obinna , Geoffrey , and Lolo "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna"}], "key": "obinna", "value": "Obinna"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 204, "end": 205, "input": "tokens", "text": "of Mr . Obinna , Geoffrey , and Lolo Justina Onuoha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Geoffrey"}, {"source": {"segment": "content_relaxed", "context": {"start": 217, "end": 218, "input": "tokens", "text": "of Mr . Obinna , Geoffrey , and Lolo Justina Onuoha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Geoffrey"}], "key": "geoffrey", "value": "Geoffrey"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 213, "end": 214, "input": "tokens", "text": "Justina Onuoha . Mr . Ukwuoma , who described the statue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 226, "end": 227, "input": "tokens", "text": "Justina Onuoha . Mr . Ukwuoma , who described the statue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}], "key": "ukwuoma", "value": "Ukwuoma"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 226, "end": 227, "input": "tokens", "text": ", commended the Mr . Onuoha family for the gift and "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 368, "end": 369, "input": "tokens", "text": "and unity . Mr . Onuoha , the Managing Director of "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 479, "end": 480, "input": "tokens", "text": "he said . Mr . Onuoha , who did not mention "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 239, "end": 240, "input": "tokens", "text": ", commended the Mr . Onuoha family for the gift and "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 381, "end": 382, "input": "tokens", "text": "and unity . Mr . Onuoha , the Managing Director of "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 492, "end": 493, "input": "tokens", "text": "he said . Mr . Onuoha , who did not mention "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}], "key": "onuoha", "value": "Onuoha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 292, "end": 293, "input": "tokens", "text": "to Jesus , \" the Bishop said . Speaking on the "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop"}, {"source": {"segment": "content_relaxed", "context": {"start": 305, "end": 306, "input": "tokens", "text": "to Jesus , \" the Bishop said . Speaking on the "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop"}], "key": "bishop", "value": "Bishop"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 375, "end": 377, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Petroleum Ltd"}, {"source": {"segment": "content_relaxed", "context": {"start": 388, "end": 390, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Petroleum Ltd"}], "key": "petroleum ltd", "value": "Petroleum Ltd"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 513, "end": 514, "input": "tokens", "text": "at Abajah . \" ( NAN ) "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}], "key": "nan", "value": "NAN"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 574, "end": 575, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "method": "rearrange_description"}], "key": "description", "value": "

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

The Bishop of Orlu Catholic Diocese, Augustine Ukwuoma, on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo.

The statue, made of marble, is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt.

Mr. Ukwuoma performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday.

One Obinna Onuoha, who donated the Jesus statue, had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012.

The unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Mr. Obinna, Geoffrey, and Lolo Justina Onuoha.

Mr. Ukwuoma, who described the statue as magnificent, commended the Mr. Onuoha family for the gift and their benevolence to the church.

\"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us.

\"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said.

Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society.

\"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity.

Mr. Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said he constructed the statue to fulfill a vow he made to God in the year 1997.

\"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith.

\"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said.

Mr. Onuoha, who did not mention the cost of the statue, added, \"It took about three years to construct and erect the Jesus De Saviour statue at Abajah.\"

(NAN)

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 34, "end": 35, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 47, "end": 48, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 7, "input": "tokens", "text": "2 January 2016 Nigeria : Tallest Jesus Statue in Africa Unveiled in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tallest Jesus"}, {"source": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Tallest Jesus Statue in Africa Unveiled in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tallest Jesus"}], "key": "tallest jesus", "value": "Tallest Jesus"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 634, "end": 635, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 662, "end": 663, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Tallest Jesus Statue in Africa Unveiled in Imo - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Photo : Premium Times The Catholic Church in Nigeria "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}, {"source": {"segment": "content_relaxed", "context": {"start": 15, "end": 17, "input": "tokens", "text": "Unveiled in Imo Photo : Premium Times The Catholic Church in Nigeria "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}], "key": "premium times", "value": "Premium Times"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 7, "input": "tokens", "text": "Photo : Premium Times The Catholic Church in Nigeria has unveiled a "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}, {"source": {"segment": "content_relaxed", "context": {"start": 17, "end": 20, "input": "tokens", "text": "Imo Photo : Premium Times The Catholic Church in Nigeria has unveiled a "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}], "key": "the catholic church", "value": "The Catholic Church"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 42, "end": 47, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 55, "end": 60, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}], "key": "the \" jesus de greatest", "value": "the \" Jesus de Greatest"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 53, "end": 58, "input": "tokens", "text": "statue weighs 40 tonnes . The Bishop of Orlu Catholic Diocese , Augustine Ukwuoma , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bishop of Orlu Catholic"}, {"source": {"segment": "content_relaxed", "context": {"start": 66, "end": 71, "input": "tokens", "text": "statue weighs 40 tonnes . The Bishop of Orlu Catholic Diocese , Augustine Ukwuoma , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bishop of Orlu Catholic"}], "key": "the bishop of orlu catholic", "value": "The Bishop of Orlu Catholic"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 85, "end": 88, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Catholic Parish"}, {"source": {"segment": "content_relaxed", "context": {"start": 98, "end": 101, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Catholic Parish"}], "key": "aloysius catholic parish", "value": "Aloysius Catholic Parish"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 91, "end": 92, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . The statue , made "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo"}, {"source": {"segment": "content_relaxed", "context": {"start": 104, "end": 105, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . The statue , made "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo"}], "key": "imo", "value": "Imo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 129, "end": 133, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Gregory Ochiagha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bishop Emeritus of"}, {"source": {"segment": "content_relaxed", "context": {"start": 142, "end": 146, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Gregory Ochiagha "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bishop Emeritus of"}], "key": "the bishop emeritus of", "value": "the Bishop Emeritus of"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 147, "end": 150, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . One "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Parish Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 160, "end": 163, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . One "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Parish Abajah"}], "key": "aloysius parish abajah", "value": "Aloysius Parish Abajah"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 207, "end": 210, "input": "tokens", "text": "Obinna , Geoffrey , and Lolo Justina Onuoha . Mr . Ukwuoma , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lolo Justina Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 220, "end": 223, "input": "tokens", "text": "Obinna , Geoffrey , and Lolo Justina Onuoha . Mr . Ukwuoma , "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lolo Justina Onuoha"}], "key": "lolo justina onuoha", "value": "Lolo Justina Onuoha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 430, "end": 431, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}, {"source": {"segment": "content_relaxed", "context": {"start": 443, "end": 444, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}], "key": "jesus", "value": "Jesus"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 503, "end": 507, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Jesus De Saviour"}, {"source": {"segment": "content_relaxed", "context": {"start": 516, "end": 520, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Jesus De Saviour"}], "key": "the jesus de saviour", "value": "the Jesus De Saviour"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 12, "end": 14, "input": "tokens", "text": "Statue in Africa Unveiled in Imo Photo : Premium Times The Catholic "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo Photo"}], "key": "imo photo", "value": "Imo Photo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 526, "end": 527, "input": "tokens", "text": "at Abajah . \" ( NAN ) Copyright 2016 Premium Times "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}], "key": "nan", "value": "NAN"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 529, "end": 532, "input": "tokens", "text": "\" ( NAN ) Copyright 2016 Premium Times . All rights reserved . "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "2016 Premium Times"}], "key": "2016 premium times", "value": "2016 Premium Times"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 537, "end": 538, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 539, "end": 542, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 9, "end": 12, "input": "tokens", "text": "Statue in Africa Unveiled in Imo - allAfrica . com "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo - allAfrica"}], "key": "imo - allafrica", "value": "Imo - allAfrica"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 8, "end": 9, "input": "tokens", "text": "Times The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 21, "end": 22, "input": "tokens", "text": "Times The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Tallest Jesus Statue in "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 89, "end": 90, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . The statue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_strict", "context": {"start": 509, "end": 510, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" ( NAN ) "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 102, "end": 103, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . The statue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 522, "end": 523, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" ( NAN ) "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}], "key": "abajah", "value": "Abajah"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 115, "end": 116, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . Mr . Ukwuoma performed "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}, {"source": {"segment": "content_relaxed", "context": {"start": 128, "end": 129, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . Mr . Ukwuoma performed "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}], "key": "egypt", "value": "Egypt"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 119, "end": 120, "input": "tokens", "text": "in Egypt . Mr . Ukwuoma performed the ceremony shortly after "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 132, "end": 133, "input": "tokens", "text": "in Egypt . Mr . Ukwuoma performed the ceremony shortly after "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}], "key": "ukwuoma", "value": "Ukwuoma"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 67, "end": 68, "input": "tokens", "text": ", on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 80, "end": 81, "input": "tokens", "text": ", on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}], "key": "african", "value": "African"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 246, "end": 247, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_strict", "context": {"start": 425, "end": 426, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 259, "end": 260, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 438, "end": 439, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}], "key": "christian", "value": "Christian"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 255, "end": 256, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholics"}, {"source": {"segment": "content_relaxed", "context": {"start": 268, "end": 269, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholics"}], "key": "catholics", "value": "Catholics"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 428, "end": 429, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}, {"source": {"segment": "content_relaxed", "context": {"start": 441, "end": 442, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}], "key": "catholic", "value": "Catholic"}]}, "content_extraction": {"content_relaxed": {"text": "

2 January 2016

Nigeria: Tallest Jesus Statue in Africa Unveiled in Imo

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

The Bishop of Orlu Catholic Diocese, Augustine Ukwuoma, on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo.

The statue, made of marble, is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt.

Mr. Ukwuoma performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday.

One Obinna Onuoha, who donated the Jesus statue, had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012.

The unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Mr. Obinna, Geoffrey, and Lolo Justina Onuoha.

Mr. Ukwuoma, who described the statue as magnificent, commended the Mr. Onuoha family for the gift and their benevolence to the church.

\"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us.

\"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said.

Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society.

\"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity.

Mr. Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said he constructed the statue to fulfill a vow he made to God in the year 1997.

\"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith.

\"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said.

Mr. Onuoha, who did not mention the cost of the statue, added, \"It took about three years to construct and erect the Jesus De Saviour statue at Abajah.\"

(NAN)

Copyright

2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["2", "january", "2016", "nigeria", ":", "tallest", "jesus", "statue", "in", "africa", "unveiled", "in", "imo", "photo", ":", "premium", "times", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "the", "bishop", "of", "orlu", "catholic", "diocese", ",", "augustine", "ukwuoma", ",", "on", "friday", "unveiled", "the", "african", "tallest", "statue", "of", "jesus", "christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "st", ".", "aloysius", "catholic", "parish", ",", "abajah", ",", "imo", ".", "the", "statue", ",", "made", "of", "marble", ",", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "ramesses", "ii", "abusimbel", "statue", "in", "egypt", ".", "mr", ".", "ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "bishop", "emeritus", "of", "orlu", "diocese", ",", "gregory", "ochiagha", ",", "and", "more", "than", "100", "priests", "at", "st", ".", "aloysius", "parish", "abajah", "compound", "on", "friday", ".", "one", "obinna", "onuoha", ",", "who", "donated", "the", "jesus", "statue", ",", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "st", ".", "aloysius", "in", "the", "year", "2012", ".", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "mr", ".", "obinna", ",", "geoffrey", ",", "and", "lolo", "justina", "onuoha", ".", "mr", ".", "ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "mr", ".", "onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\"", "this", "statue", "is", "a", "great", "symbol", "of", "christian", "faith", ",", "and", "i", "pray", "that", "for", "the", "catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "jesus", "christ", "stands", "for", "us", ".", "\"", "for", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "jesus", ",", "\"", "the", "bishop", "said", ".", "speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\"", "god", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "god", "'", "s", "peace", ",", "love", "and", "unity", ".", "mr", ".", "onuoha", ",", "the", "managing", "director", "of", "premier", "petroleum", "ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "god", "in", "the", "year", "1997", ".", "\"", "asking", "why", "i", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "i", "came", "to", "this", "world", ",", "i", "am", "a", "christian", "and", "a", "catholic", "and", "jesus", "statue", "represents", "my", "faith", ".", "\"", "i", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "i", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "mr", ".", "onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "jesus", "de", "saviour", "statue", "at", "abajah", ".", "\"", "(", "nan", ")", "copyright", "2016", "premium", "times", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["2", "January", "2016", "Nigeria", ":", "Tallest", "Jesus", "Statue", "in", "Africa", "Unveiled", "in", "Imo", "Photo", ":", "Premium", "Times", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "The", "Bishop", "of", "Orlu", "Catholic", "Diocese", ",", "Augustine", "Ukwuoma", ",", "on", "Friday", "unveiled", "the", "African", "tallest", "statue", "of", "Jesus", "Christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "St", ".", "Aloysius", "Catholic", "Parish", ",", "Abajah", ",", "Imo", ".", "The", "statue", ",", "made", "of", "marble", ",", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "Ramesses", "ii", "Abusimbel", "statue", "in", "Egypt", ".", "Mr", ".", "Ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "Bishop", "Emeritus", "of", "Orlu", "Diocese", ",", "Gregory", "Ochiagha", ",", "and", "more", "than", "100", "priests", "at", "St", ".", "Aloysius", "Parish", "Abajah", "compound", "on", "Friday", ".", "One", "Obinna", "Onuoha", ",", "who", "donated", "the", "Jesus", "statue", ",", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "St", ".", "Aloysius", "in", "the", "year", "2012", ".", "The", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "Mr", ".", "Obinna", ",", "Geoffrey", ",", "and", "Lolo", "Justina", "Onuoha", ".", "Mr", ".", "Ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "Mr", ".", "Onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\"", "This", "statue", "is", "a", "great", "symbol", "of", "Christian", "faith", ",", "and", "I", "pray", "that", "for", "the", "Catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "Jesus", "Christ", "stands", "for", "us", ".", "\"", "For", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "Jesus", ",", "\"", "the", "Bishop", "said", ".", "Speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\"", "God", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "God", "'", "s", "peace", ",", "love", "and", "unity", ".", "Mr", ".", "Onuoha", ",", "the", "Managing", "Director", "of", "Premier", "Petroleum", "Ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "God", "in", "the", "year", "1997", ".", "\"", "Asking", "why", "I", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "I", "came", "to", "this", "world", ",", "I", "am", "a", "Christian", "and", "a", "Catholic", "and", "Jesus", "statue", "represents", "my", "faith", ".", "\"", "I", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "I", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "Mr", ".", "Onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "It", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "Jesus", "De", "Saviour", "statue", "at", "Abajah", ".", "\"", "(", "NAN", ")", "Copyright", "2016", "Premium", "Times", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020066.html"}, "content_strict": {"text": "

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

The Bishop of Orlu Catholic Diocese, Augustine Ukwuoma, on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo.

The statue, made of marble, is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt.

Mr. Ukwuoma performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday.

One Obinna Onuoha, who donated the Jesus statue, had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012.

The unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Mr. Obinna, Geoffrey, and Lolo Justina Onuoha.

Mr. Ukwuoma, who described the statue as magnificent, commended the Mr. Onuoha family for the gift and their benevolence to the church.

\"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us.

\"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said.

Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society.

\"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity.

Mr. Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said he constructed the statue to fulfill a vow he made to God in the year 1997.

\"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith.

\"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said.

Mr. Onuoha, who did not mention the cost of the statue, added, \"It took about three years to construct and erect the Jesus De Saviour statue at Abajah.\"

(NAN)

", "simple_tokens": ["photo", ":", "premium", "times", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "the", "bishop", "of", "orlu", "catholic", "diocese", ",", "augustine", "ukwuoma", ",", "on", "friday", "unveiled", "the", "african", "tallest", "statue", "of", "jesus", "christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "st", ".", "aloysius", "catholic", "parish", ",", "abajah", ",", "imo", ".", "the", "statue", ",", "made", "of", "marble", ",", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "ramesses", "ii", "abusimbel", "statue", "in", "egypt", ".", "mr", ".", "ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "bishop", "emeritus", "of", "orlu", "diocese", ",", "gregory", "ochiagha", ",", "and", "more", "than", "100", "priests", "at", "st", ".", "aloysius", "parish", "abajah", "compound", "on", "friday", ".", "one", "obinna", "onuoha", ",", "who", "donated", "the", "jesus", "statue", ",", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "st", ".", "aloysius", "in", "the", "year", "2012", ".", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "mr", ".", "obinna", ",", "geoffrey", ",", "and", "lolo", "justina", "onuoha", ".", "mr", ".", "ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "mr", ".", "onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\"", "this", "statue", "is", "a", "great", "symbol", "of", "christian", "faith", ",", "and", "i", "pray", "that", "for", "the", "catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "jesus", "christ", "stands", "for", "us", ".", "\"", "for", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "jesus", ",", "\"", "the", "bishop", "said", ".", "speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\"", "god", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "god", "'", "s", "peace", ",", "love", "and", "unity", ".", "mr", ".", "onuoha", ",", "the", "managing", "director", "of", "premier", "petroleum", "ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "god", "in", "the", "year", "1997", ".", "\"", "asking", "why", "i", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "i", "came", "to", "this", "world", ",", "i", "am", "a", "christian", "and", "a", "catholic", "and", "jesus", "statue", "represents", "my", "faith", ".", "\"", "i", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "i", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "mr", ".", "onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "jesus", "de", "saviour", "statue", "at", "abajah", ".", "\"", "(", "nan", ")"], "simple_tokens_original_case": ["Photo", ":", "Premium", "Times", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "The", "Bishop", "of", "Orlu", "Catholic", "Diocese", ",", "Augustine", "Ukwuoma", ",", "on", "Friday", "unveiled", "the", "African", "tallest", "statue", "of", "Jesus", "Christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "St", ".", "Aloysius", "Catholic", "Parish", ",", "Abajah", ",", "Imo", ".", "The", "statue", ",", "made", "of", "marble", ",", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "Ramesses", "ii", "Abusimbel", "statue", "in", "Egypt", ".", "Mr", ".", "Ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "Bishop", "Emeritus", "of", "Orlu", "Diocese", ",", "Gregory", "Ochiagha", ",", "and", "more", "than", "100", "priests", "at", "St", ".", "Aloysius", "Parish", "Abajah", "compound", "on", "Friday", ".", "One", "Obinna", "Onuoha", ",", "who", "donated", "the", "Jesus", "statue", ",", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "St", ".", "Aloysius", "in", "the", "year", "2012", ".", "The", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "Mr", ".", "Obinna", ",", "Geoffrey", ",", "and", "Lolo", "Justina", "Onuoha", ".", "Mr", ".", "Ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "Mr", ".", "Onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\"", "This", "statue", "is", "a", "great", "symbol", "of", "Christian", "faith", ",", "and", "I", "pray", "that", "for", "the", "Catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "Jesus", "Christ", "stands", "for", "us", ".", "\"", "For", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "Jesus", ",", "\"", "the", "Bishop", "said", ".", "Speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\"", "God", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "God", "'", "s", "peace", ",", "love", "and", "unity", ".", "Mr", ".", "Onuoha", ",", "the", "Managing", "Director", "of", "Premier", "Petroleum", "Ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "God", "in", "the", "year", "1997", ".", "\"", "Asking", "why", "I", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "I", "came", "to", "this", "world", ",", "I", "am", "a", "Christian", "and", "a", "Catholic", "and", "Jesus", "statue", "represents", "my", "faith", ".", "\"", "I", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "I", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "Mr", ".", "Onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "It", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "Jesus", "De", "Saviour", "statue", "at", "Abajah", ".", "\"", "(", "NAN", ")"]}, "title": {"text": " Nigeria: Tallest Jesus Statue in Africa Unveiled in Imo - allAfrica.com ", "simple_tokens": ["nigeria", ":", "tallest", "jesus", "statue", "in", "africa", "unveiled", "in", "imo", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Tallest", "Jesus", "Statue", "in", "Africa", "Unveiled", "in", "Imo", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:04.656553", "@etk_process_time": 0.5398571491241455, "@etk_start_time": "2018-06-07T17:34:04.116696"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Tallest Jesus Statue in Africa Unveiled in Imo - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Nigeria: Tallest Jesus Statue in Africa Unveiled in Imo\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n \n \n Photo:\n \n Premium Times\n \n \n
\n
\n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.\n
\n
\n

\n The Bishop of Orlu Catholic Diocese, Augustine Ukwuoma, on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo.\n

\n

\n The statue, made of marble, is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt.\n

\n

\n Mr. Ukwuoma performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday.\n

\n

\n One Obinna Onuoha, who donated the Jesus statue, had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n The unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Mr. Obinna, Geoffrey, and Lolo Justina Onuoha.\n

\n

\n Mr. Ukwuoma, who described the statue as magnificent, commended the Mr. Onuoha family for the gift and their benevolence to the church.\n

\n

\n \"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us.\n

\n

\n \"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said.\n

\n
\n
\n
\n
\n

\n Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society.\n

\n

\n \"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n Mr. Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said he constructed the statue to fulfill a vow he made to God in the year 1997.\n

\n

\n \"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith.\n

\n

\n \"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said.\n

\n

\n Mr. Onuoha, who did not mention the cost of the statue, added, \"It took about three years to construct and erect the Jesus De Saviour statue at Abajah.\"\n

\n

\n \n (NAN)\n \n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774", "document_id": "3C9F21F49304FD13ECCA9A65A8A2AFC5B753E42A56AF914513ABF9A8CBDFE774"} +{"url": "http://www.ce_news_article.org/2016/01/02/201601020073.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 18, "end": 20, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 65, "end": 67, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 220, "end": 222, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 34, "end": 36, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 81, "end": 83, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 236, "end": 238, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}], "key": "jesus christ", "value": "Jesus Christ"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 142, "end": 144, "input": "tokens", "text": ". It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 158, "end": 160, "input": "tokens", "text": ". It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}], "key": "obinna onuoha", "value": "Obinna Onuoha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 187, "end": 189, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Tochukwu"}, {"source": {"segment": "content_relaxed", "context": {"start": 203, "end": 205, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Tochukwu"}], "key": "augustine tochukwu", "value": "Augustine Tochukwu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 242, "end": 243, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 416, "end": 417, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 258, "end": 259, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 432, "end": 433, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}], "key": "onuoha", "value": "Onuoha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 380, "end": 382, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 396, "end": 398, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 545, "end": 546, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "method": "rearrange_description"}], "key": "description", "value": "

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

Nigeria, yesterday, unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa.

Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes.

More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in Imo State, Southeastern Nigeria.

It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012.

In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike.

\"It will remind them of the importance of Jesus Christ,\" said Okwuoma.

The cost of the statue has not been revealed.

Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\"

The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary.

Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension.

More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north.

And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won.

\"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\"

He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago.

And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 34, "end": 35, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 81, "end": 82, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 291, "end": 292, "input": "tokens", "text": "wedding anniversary . Nigeria , Africa ' s most populous country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 50, "end": 51, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 97, "end": 98, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 307, "end": 308, "input": "tokens", "text": "wedding anniversary . Nigeria , Africa ' s most populous country "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 605, "end": 606, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 633, "end": 634, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Nine-Metre Tall Statue of Jesus Christ Unveiled in Imo - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Photo : Premium Times The Catholic Church in Nigeria "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}, {"source": {"segment": "content_relaxed", "context": {"start": 18, "end": 20, "input": "tokens", "text": "Unveiled in Imo Photo : Premium Times The Catholic Church in Nigeria "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}], "key": "premium times", "value": "Premium Times"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 7, "input": "tokens", "text": "Photo : Premium Times The Catholic Church in Nigeria has unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}, {"source": {"segment": "content_relaxed", "context": {"start": 20, "end": 23, "input": "tokens", "text": "Imo Photo : Premium Times The Catholic Church in Nigeria has unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}], "key": "the catholic church", "value": "The Catholic Church"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 42, "end": 47, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_strict", "context": {"start": 89, "end": 94, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 58, "end": 63, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 105, "end": 110, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}], "key": "the \" jesus de greatest", "value": "the \" Jesus de Greatest"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 135, "end": 137, "input": "tokens", "text": "Abajah in Imo State , Southeastern Nigeria . It was commissioned by "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southeastern Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 151, "end": 153, "input": "tokens", "text": "Abajah in Imo State , Southeastern Nigeria . It was commissioned by "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Southeastern Nigeria"}], "key": "southeastern nigeria", "value": "Southeastern Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 244, "end": 245, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AFP"}, {"source": {"segment": "content_relaxed", "context": {"start": 260, "end": 261, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AFP"}], "key": "afp", "value": "AFP"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 335, "end": 337, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 351, "end": 353, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 508, "end": 509, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 510, "end": 513, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 12, "end": 15, "input": "tokens", "text": "of Jesus Christ Unveiled in Imo - allAfrica . com "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo - allAfrica"}], "key": "imo - allafrica", "value": "Imo - allAfrica"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 8, "end": 9, "input": "tokens", "text": "Times The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 53, "end": 54, "input": "tokens", "text": "statue weighs 40 tonnes . Nigeria , yesterday , unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 289, "end": 290, "input": "tokens", "text": "' 50th wedding anniversary . Nigeria , Africa ' s most "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 356, "end": 357, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 367, "end": 368, "input": "tokens", "text": "north . And even as Nigeria rings in 2016 , the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 24, "end": 25, "input": "tokens", "text": "Times The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 69, "end": 70, "input": "tokens", "text": "statue weighs 40 tonnes . Nigeria , yesterday , unveiled a "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 305, "end": 306, "input": "tokens", "text": "' 50th wedding anniversary . Nigeria , Africa ' s most "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 372, "end": 373, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 383, "end": 384, "input": "tokens", "text": "north . And even as Nigeria rings in 2016 , the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Nine - Metre Tall "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 130, "end": 131, "input": "tokens", "text": "unveiling in the village of Abajah in Imo State , Southeastern "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 146, "end": 147, "input": "tokens", "text": "unveiling in the village of Abajah in Imo State , Southeastern "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}], "key": "abajah", "value": "Abajah"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 132, "end": 134, "input": "tokens", "text": "the village of Abajah in Imo State , Southeastern Nigeria . It "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo State"}, {"source": {"segment": "content_relaxed", "context": {"start": 148, "end": 150, "input": "tokens", "text": "the village of Abajah in Imo State , Southeastern Nigeria . It "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo State"}], "key": "imo state", "value": "Imo State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 225, "end": 226, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . The cost of the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 241, "end": 242, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . The cost of the "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okwuoma"}], "key": "okwuoma", "value": "Okwuoma"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 151, "end": 152, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chinese"}, {"source": {"segment": "content_relaxed", "context": {"start": 167, "end": 168, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chinese"}], "key": "chinese", "value": "Chinese"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 203, "end": 204, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}, {"source": {"segment": "content_relaxed", "context": {"start": 219, "end": 220, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}], "key": "catholic", "value": "Catholic"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 308, "end": 309, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 324, "end": 325, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}], "key": "christian", "value": "Christian"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 313, "end": 314, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 359, "end": 360, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . And "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 329, "end": 330, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 375, "end": 376, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . And "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 333, "end": 334, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_strict", "context": {"start": 396, "end": 397, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_relaxed", "context": {"start": 349, "end": 350, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_relaxed", "context": {"start": 412, "end": 413, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}], "key": "islamist", "value": "Islamist"}]}, "content_extraction": {"content_relaxed": {"text": "

2 January 2016

Nigeria: Nine-Metre Tall Statue of Jesus Christ Unveiled in Imo

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

Nigeria, yesterday, unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa.

Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes.

More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in Imo State, Southeastern Nigeria.

It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012.

In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike.

\"It will remind them of the importance of Jesus Christ,\" said Okwuoma.

The cost of the statue has not been revealed.

Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\"

The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary.

Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension.

More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north.

And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won.

\"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\"

He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago.

And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived.

Copyright

2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["2", "january", "2016", "nigeria", ":", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "unveiled", "in", "imo", "photo", ":", "premium", "times", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "nigeria", ",", "yesterday", ",", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "more", "than", "100", "priests", "and", "hundreds", "of", "catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "abajah", "in", "imo", "state", ",", "southeastern", "nigeria", ".", "it", "was", "commissioned", "by", "obinna", "onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "in", "his", "homily", "at", "a", "mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "augustine", "tochukwu", "okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\"", "it", "will", "remind", "them", "of", "the", "importance", "of", "jesus", "christ", ",", "\"", "said", "okwuoma", ".", "the", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "earlier", "in", "the", "week", ",", "onuoha", "told", "afp", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "jesus", "on", "the", "continent", ".", "\"", "the", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "nigeria", ",", "africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "christian", "south", "and", "a", "poor", "muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "more", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "islamist", "group", "boko", "haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "nigeria", "'", "s", "muslim", "-", "majority", "north", ".", "and", "even", "as", "nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "boko", "haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\"", "we", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "onuoha", "said", ".", "\"", "we", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "he", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "and", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "copyright", "2016", "this", "day", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["2", "January", "2016", "Nigeria", ":", "Nine", "-", "Metre", "Tall", "Statue", "of", "Jesus", "Christ", "Unveiled", "in", "Imo", "Photo", ":", "Premium", "Times", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "Nigeria", ",", "yesterday", ",", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "More", "than", "100", "priests", "and", "hundreds", "of", "Catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "Abajah", "in", "Imo", "State", ",", "Southeastern", "Nigeria", ".", "It", "was", "commissioned", "by", "Obinna", "Onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "Chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "In", "his", "homily", "at", "a", "Mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "Augustine", "Tochukwu", "Okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "Catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\"", "It", "will", "remind", "them", "of", "the", "importance", "of", "Jesus", "Christ", ",", "\"", "said", "Okwuoma", ".", "The", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "Earlier", "in", "the", "week", ",", "Onuoha", "told", "AFP", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "Jesus", "on", "the", "continent", ".", "\"", "The", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "Nigeria", ",", "Africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "Christian", "south", "and", "a", "poor", "Muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "More", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "Islamist", "group", "Boko", "Haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "Nigeria", "'", "s", "Muslim", "-", "majority", "north", ".", "And", "even", "as", "Nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "Boko", "Haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "Islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\"", "We", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "Onuoha", "said", ".", "\"", "We", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "He", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "Jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "And", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "Copyright", "2016", "This", "Day", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020073.html"}, "content_strict": {"text": "

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

Nigeria, yesterday, unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa.

Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes.

More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in Imo State, Southeastern Nigeria.

It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012.

In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike.

\"It will remind them of the importance of Jesus Christ,\" said Okwuoma.

The cost of the statue has not been revealed.

Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\"

The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary.

Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension.

More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north.

And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won.

\"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\"

He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago.

And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived.

", "simple_tokens": ["photo", ":", "premium", "times", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "nigeria", ",", "yesterday", ",", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "more", "than", "100", "priests", "and", "hundreds", "of", "catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "abajah", "in", "imo", "state", ",", "southeastern", "nigeria", ".", "it", "was", "commissioned", "by", "obinna", "onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "in", "his", "homily", "at", "a", "mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "augustine", "tochukwu", "okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\"", "it", "will", "remind", "them", "of", "the", "importance", "of", "jesus", "christ", ",", "\"", "said", "okwuoma", ".", "the", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "earlier", "in", "the", "week", ",", "onuoha", "told", "afp", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "jesus", "on", "the", "continent", ".", "\"", "the", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "nigeria", ",", "africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "christian", "south", "and", "a", "poor", "muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "more", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "islamist", "group", "boko", "haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "nigeria", "'", "s", "muslim", "-", "majority", "north", ".", "and", "even", "as", "nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "boko", "haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\"", "we", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "onuoha", "said", ".", "\"", "we", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "he", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "and", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", "."], "simple_tokens_original_case": ["Photo", ":", "Premium", "Times", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "Nigeria", ",", "yesterday", ",", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "More", "than", "100", "priests", "and", "hundreds", "of", "Catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "Abajah", "in", "Imo", "State", ",", "Southeastern", "Nigeria", ".", "It", "was", "commissioned", "by", "Obinna", "Onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "Chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "In", "his", "homily", "at", "a", "Mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "Augustine", "Tochukwu", "Okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "Catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\"", "It", "will", "remind", "them", "of", "the", "importance", "of", "Jesus", "Christ", ",", "\"", "said", "Okwuoma", ".", "The", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "Earlier", "in", "the", "week", ",", "Onuoha", "told", "AFP", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "Jesus", "on", "the", "continent", ".", "\"", "The", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "Nigeria", ",", "Africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "Christian", "south", "and", "a", "poor", "Muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "More", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "Islamist", "group", "Boko", "Haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "Nigeria", "'", "s", "Muslim", "-", "majority", "north", ".", "And", "even", "as", "Nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "Boko", "Haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "Islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\"", "We", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "Onuoha", "said", ".", "\"", "We", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "He", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "Jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "And", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", "."]}, "title": {"text": " Nigeria: Nine-Metre Tall Statue of Jesus Christ Unveiled in Imo - allAfrica.com ", "simple_tokens": ["nigeria", ":", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "unveiled", "in", "imo", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Nine", "-", "Metre", "Tall", "Statue", "of", "Jesus", "Christ", "Unveiled", "in", "Imo", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:05.183653", "@etk_process_time": 0.5245711803436279, "@etk_start_time": "2018-06-07T17:34:04.659082"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Nine-Metre Tall Statue of Jesus Christ Unveiled in Imo - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Nigeria: Nine-Metre Tall Statue of Jesus Christ Unveiled in Imo\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n \n \n Photo:\n \n Premium Times\n \n \n
\n
\n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.\n
\n
\n

\n Nigeria, yesterday, unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa.\n

\n

\n Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes.\n

\n

\n More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in Imo State, Southeastern Nigeria.\n

\n

\n It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike.\n

\n

\n \"It will remind them of the importance of Jesus Christ,\" said Okwuoma.\n

\n

\n The cost of the statue has not been revealed.\n

\n

\n Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\"\n

\n
\n
\n
\n
\n

\n The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary.\n

\n

\n Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north.\n

\n

\n And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won.\n

\n

\n \"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\"\n

\n

\n He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago.\n

\n

\n And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3", "document_id": "EAD32687A5DBB17AB962B82F6E6108FD8B0277E2ED1F861BB0FCC2FDEA7CBBC3"} +{"url": "http://www.ce_news_article.org/2016/01/02/201601020082.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 18, "end": 20, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 64, "end": 66, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 216, "end": 218, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 34, "end": 36, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 80, "end": 82, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 232, "end": 234, "input": "tokens", "text": "them of the importance of Jesus Christ , \" said Okwuoma . "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}], "key": "jesus christ", "value": "Jesus Christ"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 138, "end": 140, "input": "tokens", "text": ". It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 154, "end": 156, "input": "tokens", "text": ". It was commissioned by Obinna Onuoha , a local businessman who "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}], "key": "obinna onuoha", "value": "Obinna Onuoha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 183, "end": 185, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Tochukwu"}, {"source": {"segment": "content_relaxed", "context": {"start": 199, "end": 201, "input": "tokens", "text": "the statue , presiding bishop Augustine Tochukwu Okwuoma said it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Tochukwu"}], "key": "augustine tochukwu", "value": "Augustine Tochukwu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 238, "end": 239, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 412, "end": 413, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 254, "end": 255, "input": "tokens", "text": "Earlier in the week , Onuoha told AFP it would be "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 428, "end": 429, "input": "tokens", "text": "side by side , \" Onuoha said . \" We hope "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}], "key": "onuoha", "value": "Onuoha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 376, "end": 378, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 392, "end": 394, "input": "tokens", "text": "present threat of violence by Boko Haram hangs heavy over the country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 540, "end": 541, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "method": "rearrange_description"}], "key": "description", "value": "

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

Nigeria on Friday unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa.

Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes.

More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in southeastern Nigeria.

It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012.

In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike.

\"It will remind them of the importance of Jesus Christ,\" said Okwuoma.

The cost of the statue has not been revealed.

Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\"

The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary.

Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension.

More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north.

And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won.

\"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\"

He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago.

And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 34, "end": 35, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 80, "end": 81, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 287, "end": 288, "input": "tokens", "text": "wedding anniversary . Nigeria , Africa ' s most populous country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 6, "end": 7, "input": "tokens", "text": "January 2016 Nigeria : ' Africa ' s Biggest Jesus Statue "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 50, "end": 51, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 96, "end": 97, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 303, "end": 304, "input": "tokens", "text": "wedding anniversary . Nigeria , Africa ' s most populous country "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "title", "context": {"start": 3, "end": 4, "input": "tokens", "text": "Nigeria : ' Africa ' s Biggest Jesus Statue "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 600, "end": 601, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 628, "end": 629, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: 'Africa's Biggest Jesus Statue' Unveiled in Nigeria - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Photo : Premium Times The Catholic Church in Nigeria "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}, {"source": {"segment": "content_relaxed", "context": {"start": 18, "end": 20, "input": "tokens", "text": "Unveiled in Nigeria Photo : Premium Times The Catholic Church in Nigeria "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}], "key": "premium times", "value": "Premium Times"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 7, "input": "tokens", "text": "Photo : Premium Times The Catholic Church in Nigeria has unveiled a "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}, {"source": {"segment": "content_relaxed", "context": {"start": 20, "end": 23, "input": "tokens", "text": "Nigeria Photo : Premium Times The Catholic Church in Nigeria has unveiled a "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}], "key": "the catholic church", "value": "The Catholic Church"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 42, "end": 47, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_strict", "context": {"start": 88, "end": 93, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 58, "end": 63, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 104, "end": 109, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs in at "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}], "key": "the \" jesus de greatest", "value": "the \" Jesus de Greatest"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 240, "end": 241, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AFP"}, {"source": {"segment": "content_relaxed", "context": {"start": 256, "end": 257, "input": "tokens", "text": "the week , Onuoha told AFP it would be \" the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AFP"}], "key": "afp", "value": "AFP"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 331, "end": 333, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 347, "end": 349, "input": "tokens", "text": "been killed in Islamist group Boko Haram ' s six - year "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 9, "end": 12, "input": "tokens", "text": ": ' Africa ' s Biggest Jesus Statue ' Unveiled in Nigeria Photo "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Biggest Jesus Statue"}, {"source": {"segment": "title", "context": {"start": 6, "end": 9, "input": "tokens", "text": ": ' Africa ' s Biggest Jesus Statue ' Unveiled in Nigeria - "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Biggest Jesus Statue"}], "key": "biggest jesus statue", "value": "Biggest Jesus Statue"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 15, "end": 17, "input": "tokens", "text": "Jesus Statue ' Unveiled in Nigeria Photo : Premium Times The Catholic "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria Photo"}], "key": "nigeria photo", "value": "Nigeria Photo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 497, "end": 498, "input": "tokens", "text": "she survived . Copyright 2016 Vanguard . All rights reserved . "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vanguard"}], "key": "vanguard", "value": "Vanguard"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 503, "end": 504, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 505, "end": 508, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 8, "end": 9, "input": "tokens", "text": "Times The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 53, "end": 54, "input": "tokens", "text": "statue weighs 40 tonnes . Nigeria on Friday unveiled a nine "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 132, "end": 133, "input": "tokens", "text": "village of Abajah in southeastern Nigeria . It was commissioned by "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 285, "end": 286, "input": "tokens", "text": "' 50th wedding anniversary . Nigeria , Africa ' s most "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 352, "end": 353, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 363, "end": 364, "input": "tokens", "text": "north . And even as Nigeria rings in 2016 , the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 24, "end": 25, "input": "tokens", "text": "Times The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 69, "end": 70, "input": "tokens", "text": "statue weighs 40 tonnes . Nigeria on Friday unveiled a nine "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 148, "end": 149, "input": "tokens", "text": "village of Abajah in southeastern Nigeria . It was commissioned by "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 301, "end": 302, "input": "tokens", "text": "' 50th wedding anniversary . Nigeria , Africa ' s most "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 368, "end": 369, "input": "tokens", "text": "has been mainly confined to Nigeria ' s Muslim - majority "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 379, "end": 380, "input": "tokens", "text": "north . And even as Nigeria rings in 2016 , the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : ' Africa ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 12, "end": 13, "input": "tokens", "text": "Jesus Statue ' Unveiled in Nigeria - allAfrica . com "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 129, "end": 130, "input": "tokens", "text": "unveiling in the village of Abajah in southeastern Nigeria . It "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 145, "end": 146, "input": "tokens", "text": "unveiling in the village of Abajah in southeastern Nigeria . It "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}], "key": "abajah", "value": "Abajah"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 221, "end": 222, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . The cost of the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": "Jesus Christ , \" said Okwuoma . The cost of the "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okwuoma"}], "key": "okwuoma", "value": "Okwuoma"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 147, "end": 148, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chinese"}, {"source": {"segment": "content_relaxed", "context": {"start": 163, "end": 164, "input": "tokens", "text": "local businessman who hired a Chinese company to carve it and "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chinese"}], "key": "chinese", "value": "Chinese"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 199, "end": 200, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}, {"source": {"segment": "content_relaxed", "context": {"start": 215, "end": 216, "input": "tokens", "text": "symbol of faith \" for Catholic worshippers and passers - by "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}], "key": "catholic", "value": "Catholic"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 304, "end": 305, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 320, "end": 321, "input": "tokens", "text": "split between a more prosperous Christian south and a poor Muslim "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}], "key": "christian", "value": "Christian"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 309, "end": 310, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 355, "end": 356, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . And "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 325, "end": 326, "input": "tokens", "text": "Christian south and a poor Muslim north - - an occasional "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 371, "end": 372, "input": "tokens", "text": "confined to Nigeria ' s Muslim - majority north . And "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 329, "end": 330, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_strict", "context": {"start": 392, "end": 393, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_relaxed", "context": {"start": 345, "end": 346, "input": "tokens", "text": "people have been killed in Islamist group Boko Haram ' s "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_relaxed", "context": {"start": 408, "end": 409, "input": "tokens", "text": "that the battle against the Islamist group has been \" technically "}, "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}], "key": "islamist", "value": "Islamist"}]}, "content_extraction": {"content_relaxed": {"text": "

2 January 2016

Nigeria: 'Africa's Biggest Jesus Statue' Unveiled in Nigeria

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

Nigeria on Friday unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa.

Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes.

More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in southeastern Nigeria.

It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012.

In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike.

\"It will remind them of the importance of Jesus Christ,\" said Okwuoma.

The cost of the statue has not been revealed.

Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\"

The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary.

Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension.

More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north.

And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won.

\"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\"

He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago.

And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived.

Copyright

2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["2", "january", "2016", "nigeria", ":", "'", "africa", "'", "s", "biggest", "jesus", "statue", "'", "unveiled", "in", "nigeria", "photo", ":", "premium", "times", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "nigeria", "on", "friday", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "more", "than", "100", "priests", "and", "hundreds", "of", "catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "abajah", "in", "southeastern", "nigeria", ".", "it", "was", "commissioned", "by", "obinna", "onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "in", "his", "homily", "at", "a", "mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "augustine", "tochukwu", "okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\"", "it", "will", "remind", "them", "of", "the", "importance", "of", "jesus", "christ", ",", "\"", "said", "okwuoma", ".", "the", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "earlier", "in", "the", "week", ",", "onuoha", "told", "afp", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "jesus", "on", "the", "continent", ".", "\"", "the", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "nigeria", ",", "africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "christian", "south", "and", "a", "poor", "muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "more", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "islamist", "group", "boko", "haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "nigeria", "'", "s", "muslim", "-", "majority", "north", ".", "and", "even", "as", "nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "boko", "haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\"", "we", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "onuoha", "said", ".", "\"", "we", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "he", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "and", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "copyright", "2016", "vanguard", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["2", "January", "2016", "Nigeria", ":", "'", "Africa", "'", "s", "Biggest", "Jesus", "Statue", "'", "Unveiled", "in", "Nigeria", "Photo", ":", "Premium", "Times", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "Nigeria", "on", "Friday", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "More", "than", "100", "priests", "and", "hundreds", "of", "Catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "Abajah", "in", "southeastern", "Nigeria", ".", "It", "was", "commissioned", "by", "Obinna", "Onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "Chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "In", "his", "homily", "at", "a", "Mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "Augustine", "Tochukwu", "Okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "Catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\"", "It", "will", "remind", "them", "of", "the", "importance", "of", "Jesus", "Christ", ",", "\"", "said", "Okwuoma", ".", "The", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "Earlier", "in", "the", "week", ",", "Onuoha", "told", "AFP", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "Jesus", "on", "the", "continent", ".", "\"", "The", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "Nigeria", ",", "Africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "Christian", "south", "and", "a", "poor", "Muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "More", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "Islamist", "group", "Boko", "Haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "Nigeria", "'", "s", "Muslim", "-", "majority", "north", ".", "And", "even", "as", "Nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "Boko", "Haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "Islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\"", "We", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "Onuoha", "said", ".", "\"", "We", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "He", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "Jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "And", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", ".", "Copyright", "2016", "Vanguard", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020082.html"}, "content_strict": {"text": "

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

Nigeria on Friday unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa.

Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes.

More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in southeastern Nigeria.

It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012.

In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike.

\"It will remind them of the importance of Jesus Christ,\" said Okwuoma.

The cost of the statue has not been revealed.

Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\"

The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary.

Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension.

More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north.

And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won.

\"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\"

He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago.

And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived.

", "simple_tokens": ["photo", ":", "premium", "times", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "nigeria", "on", "friday", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "more", "than", "100", "priests", "and", "hundreds", "of", "catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "abajah", "in", "southeastern", "nigeria", ".", "it", "was", "commissioned", "by", "obinna", "onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "in", "his", "homily", "at", "a", "mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "augustine", "tochukwu", "okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\"", "it", "will", "remind", "them", "of", "the", "importance", "of", "jesus", "christ", ",", "\"", "said", "okwuoma", ".", "the", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "earlier", "in", "the", "week", ",", "onuoha", "told", "afp", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "jesus", "on", "the", "continent", ".", "\"", "the", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "nigeria", ",", "africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "christian", "south", "and", "a", "poor", "muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "more", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "islamist", "group", "boko", "haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "nigeria", "'", "s", "muslim", "-", "majority", "north", ".", "and", "even", "as", "nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "boko", "haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\"", "we", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "onuoha", "said", ".", "\"", "we", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "he", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "and", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", "."], "simple_tokens_original_case": ["Photo", ":", "Premium", "Times", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "Nigeria", "on", "Friday", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "in", "at", "40", "tonnes", ".", "More", "than", "100", "priests", "and", "hundreds", "of", "Catholic", "worshippers", "attended", "the", "nine", "-", "metre", "(", "30", "-", "foot", ")", "statue", "'", "s", "official", "unveiling", "in", "the", "village", "of", "Abajah", "in", "southeastern", "Nigeria", ".", "It", "was", "commissioned", "by", "Obinna", "Onuoha", ",", "a", "local", "businessman", "who", "hired", "a", "Chinese", "company", "to", "carve", "it", "and", "placed", "it", "in", "the", "grounds", "of", "a", "2000", "-", "capacity", "church", "that", "he", "built", "in", "2012", ".", "In", "his", "homily", "at", "a", "Mass", "before", "unveiling", "the", "statue", ",", "presiding", "bishop", "Augustine", "Tochukwu", "Okwuoma", "said", "it", "would", "be", "a", "\"", "very", "great", "symbol", "of", "faith", "\"", "for", "Catholic", "worshippers", "and", "passers", "-", "by", "alike", ".", "\"", "It", "will", "remind", "them", "of", "the", "importance", "of", "Jesus", "Christ", ",", "\"", "said", "Okwuoma", ".", "The", "cost", "of", "the", "statue", "has", "not", "been", "revealed", ".", "Earlier", "in", "the", "week", ",", "Onuoha", "told", "AFP", "it", "would", "be", "\"", "the", "biggest", "statue", "of", "Jesus", "on", "the", "continent", ".", "\"", "The", "43", "-", "year", "-", "old", "boss", "of", "an", "oil", "and", "gas", "distribution", "company", "timed", "the", "statue", "'", "s", "unveiling", "to", "coincide", "with", "his", "parents", "'", "50th", "wedding", "anniversary", ".", "Nigeria", ",", "Africa", "'", "s", "most", "populous", "country", "with", "170", "million", "people", ",", "is", "split", "between", "a", "more", "prosperous", "Christian", "south", "and", "a", "poor", "Muslim", "north", "-", "-", "an", "occasional", "source", "of", "tension", ".", "More", "than", "17", ",", "000", "people", "have", "been", "killed", "in", "Islamist", "group", "Boko", "Haram", "'", "s", "six", "-", "year", "quest", "to", "create", "an", "independent", "state", "but", "the", "violence", "has", "been", "mainly", "confined", "to", "Nigeria", "'", "s", "Muslim", "-", "majority", "north", ".", "And", "even", "as", "Nigeria", "rings", "in", "2016", ",", "the", "ever", "-", "present", "threat", "of", "violence", "by", "Boko", "Haram", "hangs", "heavy", "over", "the", "country", ",", "despite", "official", "claims", "that", "the", "battle", "against", "the", "Islamist", "group", "has", "been", "\"", "technically", "\"", "won", ".", "\"", "We", "think", "religions", "can", "exist", "side", "by", "side", ",", "\"", "Onuoha", "said", ".", "\"", "We", "hope", "that", "people", "can", "live", "in", "harmony", ".", "\"", "He", "said", "the", "idea", "of", "building", "a", "giant", "statue", "of", "Jesus", "came", "to", "him", "in", "a", "dream", "nearly", "20", "years", "ago", ".", "And", "when", "his", "68", "-", "year", "-", "old", "mother", "fell", "seriously", "ill", "a", "few", "years", "ago", ",", "she", "made", "him", "promise", "that", "he", "would", "build", "a", "church", "if", "she", "survived", "."]}, "title": {"text": " Nigeria: 'Africa's Biggest Jesus Statue' Unveiled in Nigeria - allAfrica.com ", "simple_tokens": ["nigeria", ":", "'", "africa", "'", "s", "biggest", "jesus", "statue", "'", "unveiled", "in", "nigeria", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "'", "Africa", "'", "s", "Biggest", "Jesus", "Statue", "'", "Unveiled", "in", "Nigeria", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:05.711976", "@etk_process_time": 0.5264289379119873, "@etk_start_time": "2018-06-07T17:34:05.185547"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: 'Africa's Biggest Jesus Statue' Unveiled in Nigeria - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Nigeria: 'Africa's Biggest Jesus Statue' Unveiled in Nigeria\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n \n \n Photo:\n \n Premium Times\n \n \n
\n
\n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.\n
\n
\n

\n Nigeria on Friday unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa.\n

\n

\n Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs in at 40 tonnes.\n

\n

\n More than 100 priests and hundreds of Catholic worshippers attended the nine-metre (30-foot) statue's official unveiling in the village of Abajah in southeastern Nigeria.\n

\n

\n It was commissioned by Obinna Onuoha, a local businessman who hired a Chinese company to carve it and placed it in the grounds of a 2000-capacity church that he built in 2012.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n In his homily at a Mass before unveiling the statue, presiding bishop Augustine Tochukwu Okwuoma said it would be a \"very great symbol of faith\" for Catholic worshippers and passers-by alike.\n

\n

\n \"It will remind them of the importance of Jesus Christ,\" said Okwuoma.\n

\n

\n The cost of the statue has not been revealed.\n

\n

\n Earlier in the week, Onuoha told AFP it would be \"the biggest statue of Jesus on the continent.\"\n

\n
\n
\n
\n
\n

\n The 43-year-old boss of an oil and gas distribution company timed the statue's unveiling to coincide with his parents' 50th wedding anniversary.\n

\n

\n Nigeria, Africa's most populous country with 170 million people, is split between a more prosperous Christian south and a poor Muslim north -- an occasional source of tension.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n More than 17,000 people have been killed in Islamist group Boko Haram's six-year quest to create an independent state but the violence has been mainly confined to Nigeria's Muslim-majority north.\n

\n

\n And even as Nigeria rings in 2016, the ever-present threat of violence by Boko Haram hangs heavy over the country, despite official claims that the battle against the Islamist group has been \"technically\" won.\n

\n

\n \"We think religions can exist side by side,\" Onuoha said. \"We hope that people can live in harmony.\"\n

\n

\n He said the idea of building a giant statue of Jesus came to him in a dream nearly 20 years ago.\n

\n

\n And when his 68-year-old mother fell seriously ill a few years ago, she made him promise that he would build a church if she survived.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D", "document_id": "96ADB2FDD43B61F0EB3FB8F82A15E83B4724A59EE48C75288F4A664EA0DECD7D"} +{"url": "http://www.ce_news_article.org/2016/01/02/201601020094.html", "knowledge_graph": {"group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 22, "end": 23, "input": "tokens", "text": "hijab which it describes as Muslim women ' s dressing symbol "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 260, "end": 261, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 34, "end": 35, "input": "tokens", "text": "hijab which it describes as Muslim women ' s dressing symbol "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 272, "end": 273, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 119, "end": 120, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 131, "end": 132, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "method": "rearrange_description"}], "key": "description", "value": "

By Isiaka Wakili

The Presidency has said that President Muhammadu Buhari has not banned the use of hijab which it describes as Muslim women's dressing symbol of modesty.

The Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said this in a statement on Friday.

President Buhari had said on Wednesday during the presidential media chat that \"Hijab would have to be banned if suicide bombing continues.\"

But his spokesman yesterday, while clarifying the pronouncement, described as unfounded, the speculation that the Federal Government had banned the use of hijab.

He said that Buhari's administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone.

Shehu, however, admitted that hijab was being abused by Boko Haram terrorists to carry out suicide attacks on innocent people.

According to the presidential aide, this violates the teachings of Islam.

Shehu stressed that the president would not take any decision on the issue without due consultation with all the stakeholders.

He said: \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution.\"

He also emphasised that the increasing abuse of the \"hijabby terrorists\" to perpetrate criminal mass murder and other atrocities was a reality.

Shehu added that Buhari's government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution\".

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 390, "end": 391, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 418, "end": 419, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Presidency - Buhari Has Not Banned Hijab - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 3, "input": "tokens", "text": "By Isiaka Wakili The Presidency has said that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Isiaka Wakili"}, {"source": {"segment": "content_relaxed", "context": {"start": 13, "end": 15, "input": "tokens", "text": "Has Not Banned Hijab By Isiaka Wakili The Presidency has said that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Isiaka Wakili"}], "key": "isiaka wakili", "value": "Isiaka Wakili"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 31, "end": 35, "input": "tokens", "text": "dressing symbol of modesty . The Senior Special Assistant to the President on Media "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Senior Special Assistant"}, {"source": {"segment": "content_relaxed", "context": {"start": 43, "end": 47, "input": "tokens", "text": "dressing symbol of modesty . The Senior Special Assistant to the President on Media "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Senior Special Assistant"}], "key": "the senior special assistant", "value": "The Senior Special Assistant"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 96, "end": 99, "input": "tokens", "text": "unfounded , the speculation that the Federal Government had banned the use of "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Government"}, {"source": {"segment": "content_relaxed", "context": {"start": 108, "end": 111, "input": "tokens", "text": "unfounded , the speculation that the Federal Government had banned the use of "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Government"}], "key": "the federal government", "value": "the Federal Government"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 167, "end": 168, "input": "tokens", "text": "this violates the teachings of Islam . Shehu stressed that the "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}, {"source": {"segment": "content_relaxed", "context": {"start": 179, "end": 180, "input": "tokens", "text": "this violates the teachings of Islam . Shehu stressed that the "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}], "key": "islam", "value": "Islam"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 293, "end": 294, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 295, "end": 298, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 133, "end": 134, "input": "tokens", "text": "as it affects everyone . Shehu , however , admitted that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 145, "end": 146, "input": "tokens", "text": "as it affects everyone . Shehu , however , admitted that "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Presidency - Buhari Has "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 9, "end": 11, "input": "tokens", "text": "Presidency has said that President Muhammadu Buhari has not banned the use "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 21, "end": 23, "input": "tokens", "text": "Presidency has said that President Muhammadu Buhari has not banned the use "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}], "key": "muhammadu buhari", "value": "Muhammadu Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 43, "end": 45, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said this in a "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 55, "end": 57, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said this in a "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}], "key": "garba shehu", "value": "Garba Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 55, "end": 56, "input": "tokens", "text": "statement on Friday . President Buhari had said on Wednesday during "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 109, "end": 110, "input": "tokens", "text": "hijab . He said that Buhari ' s administration would always "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 248, "end": 249, "input": "tokens", "text": "reality . Shehu added that Buhari ' s government would address "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 67, "end": 68, "input": "tokens", "text": "statement on Friday . President Buhari had said on Wednesday during "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 121, "end": 122, "input": "tokens", "text": "hijab . He said that Buhari ' s administration would always "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 260, "end": 261, "input": "tokens", "text": "reality . Shehu added that Buhari ' s government would address "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 144, "end": 146, "input": "tokens", "text": "hijab was being abused by Boko Haram terrorists to carry out suicide "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 156, "end": 158, "input": "tokens", "text": "hijab was being abused by Boko Haram terrorists to carry out suicide "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 169, "end": 170, "input": "tokens", "text": "the teachings of Islam . Shehu stressed that the president would "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_strict", "context": {"start": 245, "end": 246, "input": "tokens", "text": "atrocities was a reality . Shehu added that Buhari ' s "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 181, "end": 182, "input": "tokens", "text": "the teachings of Islam . Shehu stressed that the president would "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 257, "end": 258, "input": "tokens", "text": "atrocities was a reality . Shehu added that Buhari ' s "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 286, "end": 288, "input": "tokens", "text": "solution \" . Copyright 2016 Daily Trust . All rights reserved . "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Daily Trust"}], "key": "daily trust", "value": "Daily Trust"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 330, "end": 331, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}]}, "content_extraction": {"content_relaxed": {"text": "

1 January 2016

Nigeria: Presidency - Buhari Has Not Banned Hijab

By Isiaka Wakili

The Presidency has said that President Muhammadu Buhari has not banned the use of hijab which it describes as Muslim women's dressing symbol of modesty.

The Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said this in a statement on Friday.

President Buhari had said on Wednesday during the presidential media chat that \"Hijab would have to be banned if suicide bombing continues.\"

But his spokesman yesterday, while clarifying the pronouncement, described as unfounded, the speculation that the Federal Government had banned the use of hijab.

He said that Buhari's administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone.

Shehu, however, admitted that hijab was being abused by Boko Haram terrorists to carry out suicide attacks on innocent people.

According to the presidential aide, this violates the teachings of Islam.

Shehu stressed that the president would not take any decision on the issue without due consultation with all the stakeholders.

He said: \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution.\"

He also emphasised that the increasing abuse of the \"hijabby terrorists\" to perpetrate criminal mass murder and other atrocities was a reality.

Shehu added that Buhari's government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution\".

Copyright

2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["1", "january", "2016", "nigeria", ":", "presidency", "-", "buhari", "has", "not", "banned", "hijab", "by", "isiaka", "wakili", "the", "presidency", "has", "said", "that", "president", "muhammadu", "buhari", "has", "not", "banned", "the", "use", "of", "hijab", "which", "it", "describes", "as", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "this", "in", "a", "statement", "on", "friday", ".", "president", "buhari", "had", "said", "on", "wednesday", "during", "the", "presidential", "media", "chat", "that", "\"", "hijab", "would", "have", "to", "be", "banned", "if", "suicide", "bombing", "continues", ".", "\"", "but", "his", "spokesman", "yesterday", ",", "while", "clarifying", "the", "pronouncement", ",", "described", "as", "unfounded", ",", "the", "speculation", "that", "the", "federal", "government", "had", "banned", "the", "use", "of", "hijab", ".", "he", "said", "that", "buhari", "'", "s", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "shehu", ",", "however", ",", "admitted", "that", "hijab", "was", "being", "abused", "by", "boko", "haram", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ".", "according", "to", "the", "presidential", "aide", ",", "this", "violates", "the", "teachings", "of", "islam", ".", "shehu", "stressed", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "he", "said", ":", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ".", "\"", "he", "also", "emphasised", "that", "the", "increasing", "abuse", "of", "the", "\"", "hijabby", "terrorists", "\"", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "was", "a", "reality", ".", "shehu", "added", "that", "buhari", "'", "s", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "\"", ".", "copyright", "2016", "daily", "trust", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["1", "January", "2016", "Nigeria", ":", "Presidency", "-", "Buhari", "Has", "Not", "Banned", "Hijab", "By", "Isiaka", "Wakili", "The", "Presidency", "has", "said", "that", "President", "Muhammadu", "Buhari", "has", "not", "banned", "the", "use", "of", "hijab", "which", "it", "describes", "as", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "The", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "this", "in", "a", "statement", "on", "Friday", ".", "President", "Buhari", "had", "said", "on", "Wednesday", "during", "the", "presidential", "media", "chat", "that", "\"", "Hijab", "would", "have", "to", "be", "banned", "if", "suicide", "bombing", "continues", ".", "\"", "But", "his", "spokesman", "yesterday", ",", "while", "clarifying", "the", "pronouncement", ",", "described", "as", "unfounded", ",", "the", "speculation", "that", "the", "Federal", "Government", "had", "banned", "the", "use", "of", "hijab", ".", "He", "said", "that", "Buhari", "'", "s", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "Shehu", ",", "however", ",", "admitted", "that", "hijab", "was", "being", "abused", "by", "Boko", "Haram", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ".", "According", "to", "the", "presidential", "aide", ",", "this", "violates", "the", "teachings", "of", "Islam", ".", "Shehu", "stressed", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "He", "said", ":", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ".", "\"", "He", "also", "emphasised", "that", "the", "increasing", "abuse", "of", "the", "\"", "hijabby", "terrorists", "\"", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "was", "a", "reality", ".", "Shehu", "added", "that", "Buhari", "'", "s", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "\"", ".", "Copyright", "2016", "Daily", "Trust", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020094.html"}, "content_strict": {"text": "

By Isiaka Wakili

The Presidency has said that President Muhammadu Buhari has not banned the use of hijab which it describes as Muslim women's dressing symbol of modesty.

The Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said this in a statement on Friday.

President Buhari had said on Wednesday during the presidential media chat that \"Hijab would have to be banned if suicide bombing continues.\"

But his spokesman yesterday, while clarifying the pronouncement, described as unfounded, the speculation that the Federal Government had banned the use of hijab.

He said that Buhari's administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone.

Shehu, however, admitted that hijab was being abused by Boko Haram terrorists to carry out suicide attacks on innocent people.

According to the presidential aide, this violates the teachings of Islam.

Shehu stressed that the president would not take any decision on the issue without due consultation with all the stakeholders.

He said: \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution.\"

He also emphasised that the increasing abuse of the \"hijabby terrorists\" to perpetrate criminal mass murder and other atrocities was a reality.

Shehu added that Buhari's government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution\".

", "simple_tokens": ["by", "isiaka", "wakili", "the", "presidency", "has", "said", "that", "president", "muhammadu", "buhari", "has", "not", "banned", "the", "use", "of", "hijab", "which", "it", "describes", "as", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "this", "in", "a", "statement", "on", "friday", ".", "president", "buhari", "had", "said", "on", "wednesday", "during", "the", "presidential", "media", "chat", "that", "\"", "hijab", "would", "have", "to", "be", "banned", "if", "suicide", "bombing", "continues", ".", "\"", "but", "his", "spokesman", "yesterday", ",", "while", "clarifying", "the", "pronouncement", ",", "described", "as", "unfounded", ",", "the", "speculation", "that", "the", "federal", "government", "had", "banned", "the", "use", "of", "hijab", ".", "he", "said", "that", "buhari", "'", "s", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "shehu", ",", "however", ",", "admitted", "that", "hijab", "was", "being", "abused", "by", "boko", "haram", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ".", "according", "to", "the", "presidential", "aide", ",", "this", "violates", "the", "teachings", "of", "islam", ".", "shehu", "stressed", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "he", "said", ":", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ".", "\"", "he", "also", "emphasised", "that", "the", "increasing", "abuse", "of", "the", "\"", "hijabby", "terrorists", "\"", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "was", "a", "reality", ".", "shehu", "added", "that", "buhari", "'", "s", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "\"", "."], "simple_tokens_original_case": ["By", "Isiaka", "Wakili", "The", "Presidency", "has", "said", "that", "President", "Muhammadu", "Buhari", "has", "not", "banned", "the", "use", "of", "hijab", "which", "it", "describes", "as", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "The", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "this", "in", "a", "statement", "on", "Friday", ".", "President", "Buhari", "had", "said", "on", "Wednesday", "during", "the", "presidential", "media", "chat", "that", "\"", "Hijab", "would", "have", "to", "be", "banned", "if", "suicide", "bombing", "continues", ".", "\"", "But", "his", "spokesman", "yesterday", ",", "while", "clarifying", "the", "pronouncement", ",", "described", "as", "unfounded", ",", "the", "speculation", "that", "the", "Federal", "Government", "had", "banned", "the", "use", "of", "hijab", ".", "He", "said", "that", "Buhari", "'", "s", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "as", "it", "affects", "everyone", ".", "Shehu", ",", "however", ",", "admitted", "that", "hijab", "was", "being", "abused", "by", "Boko", "Haram", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ".", "According", "to", "the", "presidential", "aide", ",", "this", "violates", "the", "teachings", "of", "Islam", ".", "Shehu", "stressed", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "He", "said", ":", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ".", "\"", "He", "also", "emphasised", "that", "the", "increasing", "abuse", "of", "the", "\"", "hijabby", "terrorists", "\"", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "was", "a", "reality", ".", "Shehu", "added", "that", "Buhari", "'", "s", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "\"", "."]}, "title": {"text": " Nigeria: Presidency - Buhari Has Not Banned Hijab - allAfrica.com ", "simple_tokens": ["nigeria", ":", "presidency", "-", "buhari", "has", "not", "banned", "hijab", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Presidency", "-", "Buhari", "Has", "Not", "Banned", "Hijab", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:06.247832", "@etk_process_time": 0.5340020656585693, "@etk_start_time": "2018-06-07T17:34:05.713830"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Presidency - Buhari Has Not Banned Hijab - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: Presidency - Buhari Has Not Banned Hijab\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Isiaka Wakili\n \n

\n The Presidency has said that President Muhammadu Buhari has not banned the use of hijab which it describes as Muslim women's dressing symbol of modesty.\n

\n

\n The Senior Special Assistant to the President on Media and Publicity, Garba Shehu, said this in a statement on Friday.\n

\n

\n President Buhari had said on Wednesday during the presidential media chat that \"Hijab would have to be banned if suicide bombing continues.\"\n

\n

\n But his spokesman yesterday, while clarifying the pronouncement, described as unfounded, the speculation that the Federal Government had banned the use of hijab.\n

\n

\n He said that Buhari's administration would always respect the rights of Muslims to protect their modesty and allow religious freedom as it affects everyone.\n

\n

\n Shehu, however, admitted that hijab was being abused by Boko Haram terrorists to carry out suicide attacks on innocent people.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
\n
\n

\n According to the presidential aide, this violates the teachings of Islam.\n

\n

\n Shehu stressed that the president would not take any decision on the issue without due consultation with all the stakeholders.\n

\n

\n He said: \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution.\"\n

\n

\n He also emphasised that the increasing abuse of the \"hijabby terrorists\" to perpetrate criminal mass murder and other atrocities was a reality.\n

\n

\n Shehu added that Buhari's government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution\".\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63", "document_id": "DF4BEB34A1277BB99F3DAA315BB5139502A303716E37039470975E9F494FAD63"} +{"url": "http://www.ce_news_article.org/2016/01/02/201601020099.html", "knowledge_graph": {"group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 19, "end": 20, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing style "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 229, "end": 230, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 31, "end": 32, "input": "tokens", "text": "has banned Hijab , the Muslim women ' s dressing style "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 241, "end": 242, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 104, "end": 105, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 116, "end": 117, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "method": "rearrange_description"}], "key": "description", "value": "

By Tobi Soniyi in Abuja

The Presidency has denied insinuations that the Buhari administration has banned Hijab, the Muslim women's dressing style in which most of the body, including part or all of the face, is covered, said to be a symbol of modesty.

Giving a clarification on the pronouncement of the President during Wednesday's media chat, the Senior Special Assistant to the President on Media and Publicity, Mr Garba Shehu, on Friday in Abuja said the speculation was unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom

While admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which he said violated the teachings of Islam, Shehu explained that the President would not take any decision on the issue without due consultation with all the stakeholders.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said.

According to him, the increasing abuse of the Hijab by terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 358, "end": 359, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 386, "end": 387, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: No Ban On Hijab, Says Presidency - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 3, "input": "tokens", "text": "By Tobi Soniyi in Abuja The Presidency has "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tobi Soniyi"}, {"source": {"segment": "content_relaxed", "context": {"start": 13, "end": 15, "input": "tokens", "text": "Hijab , Says Presidency By Tobi Soniyi in Abuja The Presidency has "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tobi Soniyi"}], "key": "tobi soniyi", "value": "Tobi Soniyi"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 67, "end": 71, "input": "tokens", "text": "' s media chat , the Senior Special Assistant to the President on Media "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}, {"source": {"segment": "content_relaxed", "context": {"start": 79, "end": 83, "input": "tokens", "text": "' s media chat , the Senior Special Assistant to the President on Media "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}], "key": "the senior special assistant", "value": "the Senior Special Assistant"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 79, "end": 82, "input": "tokens", "text": "on Media and Publicity , Mr Garba Shehu , on Friday in Abuja "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mr Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 91, "end": 94, "input": "tokens", "text": "on Media and Publicity , Mr Garba Shehu , on Friday in Abuja "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mr Garba Shehu"}], "key": "mr garba shehu", "value": "Mr Garba Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 139, "end": 140, "input": "tokens", "text": "said violated the teachings of Islam , Shehu explained that the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}, {"source": {"segment": "content_relaxed", "context": {"start": 151, "end": 152, "input": "tokens", "text": "said violated the teachings of Islam , Shehu explained that the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}], "key": "islam", "value": "Islam"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 261, "end": 262, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 263, "end": 266, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 86, "end": 87, "input": "tokens", "text": "Shehu , on Friday in Abuja said the speculation was unfounded "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 98, "end": 99, "input": "tokens", "text": "Shehu , on Friday in Abuja said the speculation was unfounded "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Says Presidency - allAfrica "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}], "person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 12, "end": 13, "input": "tokens", "text": "has denied insinuations that the Buhari administration has banned Hijab , "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 96, "end": 97, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 24, "end": 25, "input": "tokens", "text": "has denied insinuations that the Buhari administration has banned Hijab , "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": "unfounded , and that the Buhari administration would always respect the "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 16, "end": 17, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_strict", "context": {"start": 117, "end": 118, "input": "tokens", "text": "freedom While admitting that the Hijab was being abused by terrorists "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 28, "end": 29, "input": "tokens", "text": "the Buhari administration has banned Hijab , the Muslim women ' "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 129, "end": 130, "input": "tokens", "text": "freedom While admitting that the Hijab was being abused by terrorists "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 141, "end": 142, "input": "tokens", "text": "the teachings of Islam , Shehu explained that the President would "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 153, "end": 154, "input": "tokens", "text": "the teachings of Islam , Shehu explained that the President would "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 9, "input": "tokens", "text": "1 January 2016 Nigeria : No Ban On Hijab , Says Presidency By Tobi "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "No Ban On Hijab"}], "key": "no ban on hijab", "value": "No Ban On Hijab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 298, "end": 299, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}]}, "content_extraction": {"content_relaxed": {"text": "

1 January 2016

Nigeria: No Ban On Hijab, Says Presidency

By Tobi Soniyi in Abuja

The Presidency has denied insinuations that the Buhari administration has banned Hijab, the Muslim women's dressing style in which most of the body, including part or all of the face, is covered, said to be a symbol of modesty.

Giving a clarification on the pronouncement of the President during Wednesday's media chat, the Senior Special Assistant to the President on Media and Publicity, Mr Garba Shehu, on Friday in Abuja said the speculation was unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom

While admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which he said violated the teachings of Islam, Shehu explained that the President would not take any decision on the issue without due consultation with all the stakeholders.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said.

According to him, the increasing abuse of the Hijab by terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

Copyright

2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["1", "january", "2016", "nigeria", ":", "no", "ban", "on", "hijab", ",", "says", "presidency", "by", "tobi", "soniyi", "in", "abuja", "the", "presidency", "has", "denied", "insinuations", "that", "the", "buhari", "administration", "has", "banned", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "style", "in", "which", "most", "of", "the", "body", ",", "including", "part", "or", "all", "of", "the", "face", ",", "is", "covered", ",", "said", "to", "be", "a", "symbol", "of", "modesty", ".", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "during", "wednesday", "'", "s", "media", "chat", ",", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "mr", "garba", "shehu", ",", "on", "friday", "in", "abuja", "said", "the", "speculation", "was", "unfounded", ",", "and", "that", "the", "buhari", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "while", "admitting", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "he", "said", "violated", "the", "teachings", "of", "islam", ",", "shehu", "explained", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "according", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "hijab", "by", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "copyright", "2016", "this", "day", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["1", "January", "2016", "Nigeria", ":", "No", "Ban", "On", "Hijab", ",", "Says", "Presidency", "By", "Tobi", "Soniyi", "in", "Abuja", "The", "Presidency", "has", "denied", "insinuations", "that", "the", "Buhari", "administration", "has", "banned", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "style", "in", "which", "most", "of", "the", "body", ",", "including", "part", "or", "all", "of", "the", "face", ",", "is", "covered", ",", "said", "to", "be", "a", "symbol", "of", "modesty", ".", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "during", "Wednesday", "'", "s", "media", "chat", ",", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Mr", "Garba", "Shehu", ",", "on", "Friday", "in", "Abuja", "said", "the", "speculation", "was", "unfounded", ",", "and", "that", "the", "Buhari", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "While", "admitting", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "he", "said", "violated", "the", "teachings", "of", "Islam", ",", "Shehu", "explained", "that", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "According", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "Hijab", "by", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "Copyright", "2016", "This", "Day", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020099.html"}, "content_strict": {"text": "

By Tobi Soniyi in Abuja

The Presidency has denied insinuations that the Buhari administration has banned Hijab, the Muslim women's dressing style in which most of the body, including part or all of the face, is covered, said to be a symbol of modesty.

Giving a clarification on the pronouncement of the President during Wednesday's media chat, the Senior Special Assistant to the President on Media and Publicity, Mr Garba Shehu, on Friday in Abuja said the speculation was unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom

While admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which he said violated the teachings of Islam, Shehu explained that the President would not take any decision on the issue without due consultation with all the stakeholders.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said.

According to him, the increasing abuse of the Hijab by terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

", "simple_tokens": ["by", "tobi", "soniyi", "in", "abuja", "the", "presidency", "has", "denied", "insinuations", "that", "the", "buhari", "administration", "has", "banned", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "style", "in", "which", "most", "of", "the", "body", ",", "including", "part", "or", "all", "of", "the", "face", ",", "is", "covered", ",", "said", "to", "be", "a", "symbol", "of", "modesty", ".", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "during", "wednesday", "'", "s", "media", "chat", ",", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "mr", "garba", "shehu", ",", "on", "friday", "in", "abuja", "said", "the", "speculation", "was", "unfounded", ",", "and", "that", "the", "buhari", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "while", "admitting", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "he", "said", "violated", "the", "teachings", "of", "islam", ",", "shehu", "explained", "that", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "according", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "hijab", "by", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "."], "simple_tokens_original_case": ["By", "Tobi", "Soniyi", "in", "Abuja", "The", "Presidency", "has", "denied", "insinuations", "that", "the", "Buhari", "administration", "has", "banned", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "style", "in", "which", "most", "of", "the", "body", ",", "including", "part", "or", "all", "of", "the", "face", ",", "is", "covered", ",", "said", "to", "be", "a", "symbol", "of", "modesty", ".", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "during", "Wednesday", "'", "s", "media", "chat", ",", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Mr", "Garba", "Shehu", ",", "on", "Friday", "in", "Abuja", "said", "the", "speculation", "was", "unfounded", ",", "and", "that", "the", "Buhari", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", "While", "admitting", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "he", "said", "violated", "the", "teachings", "of", "Islam", ",", "Shehu", "explained", "that", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "the", "statement", "said", ".", "According", "to", "him", ",", "the", "increasing", "abuse", "of", "the", "Hijab", "by", "terrorists", "to", "perpetrate", "criminal", "mass", "murder", "and", "other", "atrocities", "is", "a", "reality", ",", "and", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "."]}, "title": {"text": " Nigeria: No Ban On Hijab, Says Presidency - allAfrica.com ", "simple_tokens": ["nigeria", ":", "no", "ban", "on", "hijab", ",", "says", "presidency", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "No", "Ban", "On", "Hijab", ",", "Says", "Presidency", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:06.583607", "@etk_process_time": 0.33448290824890137, "@etk_start_time": "2018-06-07T17:34:06.249124"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: No Ban On Hijab, Says Presidency - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: No Ban On Hijab, Says Presidency\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Tobi Soniyi in Abuja\n \n

\n The Presidency has denied insinuations that the Buhari administration has banned Hijab, the Muslim women's dressing style in which most of the body, including part or all of the face, is covered, said to be a symbol of modesty.\n

\n

\n Giving a clarification on the pronouncement of the President during Wednesday's media chat, the Senior Special Assistant to the President on Media and Publicity, Mr Garba Shehu, on Friday in Abuja said the speculation was unfounded, and that the Buhari administration would always respect the rights of Muslims to protect their modesty and allow religious freedom\n

\n

\n While admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which he said violated the teachings of Islam, Shehu explained that the President would not take any decision on the issue without due consultation with all the stakeholders.\n

\n
\n
\n

\n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" the statement said.\n

\n

\n According to him, the increasing abuse of the Hijab by terrorists to perpetrate criminal mass murder and other atrocities is a reality, and that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1", "document_id": "7DD4BA22894BB36475F2A9E2FB9CF5281D9CA82897478B1D92F2B27FE6D49AB1"} +{"url": "http://www.ce_news_article.org/2016/01/02/201601020101.html", "knowledge_graph": {"group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 18, "end": 19, "input": "tokens", "text": "use of Hijab , the Muslim women ' s dressing symbol "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 171, "end": 172, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 10, "end": 11, "input": "tokens", "text": "No Ban On Hijab By Muslim Women - Presidency The Presidency "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 32, "end": 33, "input": "tokens", "text": "use of Hijab , the Muslim women ' s dressing symbol "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 185, "end": 186, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "title", "context": {"start": 7, "end": 8, "input": "tokens", "text": "No Ban On Hijab By Muslim Women - Presidency - allAfrica "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 99, "end": 100, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 113, "end": 114, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "method": "rearrange_description"}], "key": "description", "value": "

The Presidency has dismissed the insinuations that the Federal Government had banned the use of Hijab, the Muslim women's dressing symbol of modesty.

This is contained in a statement issued in Abuja on Friday by the Senior Special Assistant on Media and Publicity to the President, Malam Garba Shehu.

Giving a clarification on the pronouncement of the President on the issue during last Wednesday's Presidential Media Chat, Shehu said that the speculations were unfounded.

He said that the Buhari-led Federal Government would always respect the rights of Muslims to protect their modesty and allow religious freedom.

Shehu said that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violated the teachings of Islam.

He, however, said that Buhari would not take any decision on the issue without due consultation with all the stakeholders.

He said that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" he said.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 331, "end": 332, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 359, "end": 360, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: No Ban On Hijab By Muslim Women - Presidency - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 7, "end": 10, "input": "tokens", "text": "has dismissed the insinuations that the Federal Government had banned the use of "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Government"}, {"source": {"segment": "content_relaxed", "context": {"start": 21, "end": 24, "input": "tokens", "text": "has dismissed the insinuations that the Federal Government had banned the use of "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Government"}], "key": "the federal government", "value": "the Federal Government"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 39, "end": 43, "input": "tokens", "text": "in Abuja on Friday by the Senior Special Assistant on Media and Publicity to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}, {"source": {"segment": "content_relaxed", "context": {"start": 53, "end": 57, "input": "tokens", "text": "in Abuja on Friday by the Senior Special Assistant on Media and Publicity to "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}], "key": "the senior special assistant", "value": "the Senior Special Assistant"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 51, "end": 54, "input": "tokens", "text": "Publicity to the President , Malam Garba Shehu . Giving a clarification on "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Malam Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 65, "end": 68, "input": "tokens", "text": "Publicity to the President , Malam Garba Shehu . Giving a clarification on "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Malam Garba Shehu"}], "key": "malam garba shehu", "value": "Malam Garba Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 72, "end": 75, "input": "tokens", "text": "during last Wednesday ' s Presidential Media Chat , Shehu said that the "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Presidential Media Chat"}, {"source": {"segment": "content_relaxed", "context": {"start": 86, "end": 89, "input": "tokens", "text": "during last Wednesday ' s Presidential Media Chat , Shehu said that the "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Presidential Media Chat"}], "key": "presidential media chat", "value": "Presidential Media Chat"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 133, "end": 134, "input": "tokens", "text": "which violated the teachings of Islam . He , however , "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}, {"source": {"segment": "content_relaxed", "context": {"start": 147, "end": 148, "input": "tokens", "text": "which violated the teachings of Islam . He , however , "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}], "key": "islam", "value": "Islam"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 141, "end": 142, "input": "tokens", "text": ", however , said that Buhari would not take any decision "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 155, "end": 156, "input": "tokens", "text": ", however , said that Buhari would not take any decision "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 228, "end": 229, "input": "tokens", "text": "he said . Copyright 2016 Vanguard . All rights reserved . "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vanguard"}], "key": "vanguard", "value": "Vanguard"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 234, "end": 235, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 236, "end": 239, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 15, "end": 16, "input": "tokens", "text": "had banned the use of Hijab , the Muslim women ' "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 29, "end": 30, "input": "tokens", "text": "had banned the use of Hijab , the Muslim women ' "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "title", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab By Muslim Women - Presidency "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 35, "end": 36, "input": "tokens", "text": "in a statement issued in Abuja on Friday by the Senior "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 49, "end": 50, "input": "tokens", "text": "in a statement issued in Abuja on Friday by the Senior "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 76, "end": 77, "input": "tokens", "text": "s Presidential Media Chat , Shehu said that the speculations were "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_strict", "context": {"start": 109, "end": 110, "input": "tokens", "text": "and allow religious freedom . Shehu said that the Hijab was "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 90, "end": 91, "input": "tokens", "text": "s Presidential Media Chat , Shehu said that the speculations were "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 123, "end": 124, "input": "tokens", "text": "and allow religious freedom . Shehu said that the Hijab was "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 88, "end": 89, "input": "tokens", "text": ". He said that the Buhari - led Federal Government would "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 102, "end": 103, "input": "tokens", "text": ". He said that the Buhari - led Federal Government would "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 113, "end": 114, "input": "tokens", "text": ". Shehu said that the Hijab was being abused by terrorists "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 127, "end": 128, "input": "tokens", "text": ". Shehu said that the Hijab was being abused by terrorists "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 9, "input": "tokens", "text": "1 January 2016 Nigeria : No Ban On Hijab By Muslim Women - Presidency "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "No Ban On Hijab"}], "key": "no ban on hijab", "value": "No Ban On Hijab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 271, "end": 272, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}]}, "content_extraction": {"content_relaxed": {"text": "

1 January 2016

Nigeria: No Ban On Hijab By Muslim Women - Presidency

The Presidency has dismissed the insinuations that the Federal Government had banned the use of Hijab, the Muslim women's dressing symbol of modesty.

This is contained in a statement issued in Abuja on Friday by the Senior Special Assistant on Media and Publicity to the President, Malam Garba Shehu.

Giving a clarification on the pronouncement of the President on the issue during last Wednesday's Presidential Media Chat, Shehu said that the speculations were unfounded.

He said that the Buhari-led Federal Government would always respect the rights of Muslims to protect their modesty and allow religious freedom.

Shehu said that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violated the teachings of Islam.

He, however, said that Buhari would not take any decision on the issue without due consultation with all the stakeholders.

He said that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" he said.

Copyright

2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["1", "january", "2016", "nigeria", ":", "no", "ban", "on", "hijab", "by", "muslim", "women", "-", "presidency", "the", "presidency", "has", "dismissed", "the", "insinuations", "that", "the", "federal", "government", "had", "banned", "the", "use", "of", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "this", "is", "contained", "in", "a", "statement", "issued", "in", "abuja", "on", "friday", "by", "the", "senior", "special", "assistant", "on", "media", "and", "publicity", "to", "the", "president", ",", "malam", "garba", "shehu", ".", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "on", "the", "issue", "during", "last", "wednesday", "'", "s", "presidential", "media", "chat", ",", "shehu", "said", "that", "the", "speculations", "were", "unfounded", ".", "he", "said", "that", "the", "buhari", "-", "led", "federal", "government", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "shehu", "said", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violated", "the", "teachings", "of", "islam", ".", "he", ",", "however", ",", "said", "that", "buhari", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "he", "said", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "he", "said", ".", "copyright", "2016", "vanguard", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["1", "January", "2016", "Nigeria", ":", "No", "Ban", "On", "Hijab", "By", "Muslim", "Women", "-", "Presidency", "The", "Presidency", "has", "dismissed", "the", "insinuations", "that", "the", "Federal", "Government", "had", "banned", "the", "use", "of", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "This", "is", "contained", "in", "a", "statement", "issued", "in", "Abuja", "on", "Friday", "by", "the", "Senior", "Special", "Assistant", "on", "Media", "and", "Publicity", "to", "the", "President", ",", "Malam", "Garba", "Shehu", ".", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "on", "the", "issue", "during", "last", "Wednesday", "'", "s", "Presidential", "Media", "Chat", ",", "Shehu", "said", "that", "the", "speculations", "were", "unfounded", ".", "He", "said", "that", "the", "Buhari", "-", "led", "Federal", "Government", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "Shehu", "said", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violated", "the", "teachings", "of", "Islam", ".", "He", ",", "however", ",", "said", "that", "Buhari", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "He", "said", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "he", "said", ".", "Copyright", "2016", "Vanguard", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020101.html"}, "content_strict": {"text": "

The Presidency has dismissed the insinuations that the Federal Government had banned the use of Hijab, the Muslim women's dressing symbol of modesty.

This is contained in a statement issued in Abuja on Friday by the Senior Special Assistant on Media and Publicity to the President, Malam Garba Shehu.

Giving a clarification on the pronouncement of the President on the issue during last Wednesday's Presidential Media Chat, Shehu said that the speculations were unfounded.

He said that the Buhari-led Federal Government would always respect the rights of Muslims to protect their modesty and allow religious freedom.

Shehu said that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violated the teachings of Islam.

He, however, said that Buhari would not take any decision on the issue without due consultation with all the stakeholders.

He said that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" he said.

", "simple_tokens": ["the", "presidency", "has", "dismissed", "the", "insinuations", "that", "the", "federal", "government", "had", "banned", "the", "use", "of", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "this", "is", "contained", "in", "a", "statement", "issued", "in", "abuja", "on", "friday", "by", "the", "senior", "special", "assistant", "on", "media", "and", "publicity", "to", "the", "president", ",", "malam", "garba", "shehu", ".", "giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "president", "on", "the", "issue", "during", "last", "wednesday", "'", "s", "presidential", "media", "chat", ",", "shehu", "said", "that", "the", "speculations", "were", "unfounded", ".", "he", "said", "that", "the", "buhari", "-", "led", "federal", "government", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "shehu", "said", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violated", "the", "teachings", "of", "islam", ".", "he", ",", "however", ",", "said", "that", "buhari", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "he", "said", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "he", "said", "."], "simple_tokens_original_case": ["The", "Presidency", "has", "dismissed", "the", "insinuations", "that", "the", "Federal", "Government", "had", "banned", "the", "use", "of", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "This", "is", "contained", "in", "a", "statement", "issued", "in", "Abuja", "on", "Friday", "by", "the", "Senior", "Special", "Assistant", "on", "Media", "and", "Publicity", "to", "the", "President", ",", "Malam", "Garba", "Shehu", ".", "Giving", "a", "clarification", "on", "the", "pronouncement", "of", "the", "President", "on", "the", "issue", "during", "last", "Wednesday", "'", "s", "Presidential", "Media", "Chat", ",", "Shehu", "said", "that", "the", "speculations", "were", "unfounded", ".", "He", "said", "that", "the", "Buhari", "-", "led", "Federal", "Government", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "Shehu", "said", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violated", "the", "teachings", "of", "Islam", ".", "He", ",", "however", ",", "said", "that", "Buhari", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "He", "said", "that", "the", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "he", "said", "."]}, "title": {"text": " Nigeria: No Ban On Hijab By Muslim Women - Presidency - allAfrica.com ", "simple_tokens": ["nigeria", ":", "no", "ban", "on", "hijab", "by", "muslim", "women", "-", "presidency", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "No", "Ban", "On", "Hijab", "By", "Muslim", "Women", "-", "Presidency", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:06.927407", "@etk_process_time": 0.3423609733581543, "@etk_start_time": "2018-06-07T17:34:06.585046"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: No Ban On Hijab By Muslim Women - Presidency - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: No Ban On Hijab By Muslim Women - Presidency\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n

\n The Presidency has dismissed the insinuations that the Federal Government had banned the use of Hijab, the Muslim women's dressing symbol of modesty.\n

\n

\n This is contained in a statement issued in Abuja on Friday by the Senior Special Assistant on Media and Publicity to the President, Malam Garba Shehu.\n

\n

\n Giving a clarification on the pronouncement of the President on the issue during last Wednesday's Presidential Media Chat, Shehu said that the speculations were unfounded.\n

\n

\n He said that the Buhari-led Federal Government would always respect the rights of Muslims to protect their modesty and allow religious freedom.\n

\n
\n
\n
\n
\n

\n Shehu said that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violated the teachings of Islam.\n

\n

\n He, however, said that Buhari would not take any decision on the issue without due consultation with all the stakeholders.\n

\n

\n He said that the government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.\n

\n

\n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" he said.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF", "document_id": "9ED43AB0CF1EA5999D4709A36A3F68675F1123C00327F6674AA2D502791CFEBF"} +{"url": "http://www.ce_news_article.org/2016/01/02/201601020108.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 3, "input": "tokens", "text": "President Muhammadu Buhari says his government will do "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 13, "end": 15, "input": "tokens", "text": "Will Rescue Chibok Girls President Muhammadu Buhari says his government will do "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}], "key": "muhammadu buhari", "value": "Muhammadu Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 56, "end": 57, "input": "tokens", "text": "Women In Politics Forum ( WIPF ) . The girls were "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_relaxed", "context": {"start": 68, "end": 69, "input": "tokens", "text": "Women In Politics Forum ( WIPF ) . The girls were "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}], "key": "wipf", "value": "WIPF"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 81, "end": 82, "input": "tokens", "text": "14 , 2014 . President Buhari had Wednesday during the presidential "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 138, "end": 139, "input": "tokens", "text": "\" to his administration . Buhari also disclosed that a committee "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 205, "end": 206, "input": "tokens", "text": "channelled through the committee . Buhari said he had compiled a "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 395, "end": 396, "input": "tokens", "text": "women in his government , Buhari assured that women would \" "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_strict", "context": {"start": 431, "end": 432, "input": "tokens", "text": "against his administration , President Buhari maintained that steps must taken "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 6, "input": "tokens", "text": "1 January 2016 Nigeria : Buhari - I Will Rescue Chibok "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 93, "end": 94, "input": "tokens", "text": "14 , 2014 . President Buhari had Wednesday during the presidential "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 150, "end": 151, "input": "tokens", "text": "\" to his administration . Buhari also disclosed that a committee "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 217, "end": 218, "input": "tokens", "text": "channelled through the committee . Buhari said he had compiled a "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 407, "end": 408, "input": "tokens", "text": "women in his government , Buhari assured that women would \" "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 443, "end": 444, "input": "tokens", "text": "against his administration , President Buhari maintained that steps must taken "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "title", "context": {"start": 2, "end": 3, "input": "tokens", "text": "Nigeria : Buhari - I Will Rescue Chibok "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 156, "end": 157, "input": "tokens", "text": "and resettle the Internally Displaced Persons ( IDPs ) would soon "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Persons"}, {"source": {"segment": "content_relaxed", "context": {"start": 168, "end": 169, "input": "tokens", "text": "and resettle the Internally Displaced Persons ( IDPs ) would soon "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Persons"}], "key": "persons", "value": "Persons"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 189, "end": 191, "input": "tokens", "text": ") , would also include Aliko Dangote , saying local and foreign "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aliko Dangote"}, {"source": {"segment": "content_relaxed", "context": {"start": 201, "end": 203, "input": "tokens", "text": ") , would also include Aliko Dangote , saying local and foreign "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aliko Dangote"}], "key": "aliko dangote", "value": "Aliko Dangote"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 543, "end": 545, "input": "tokens", "text": "political parties and led by Ebere Ifendu of the Labour Party , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ebere Ifendu"}, {"source": {"segment": "content_relaxed", "context": {"start": 555, "end": 557, "input": "tokens", "text": "political parties and led by Ebere Ifendu of the Labour Party , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ebere Ifendu"}], "key": "ebere ifendu", "value": "Ebere Ifendu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 645, "end": 647, "input": "tokens", "text": "new year . Copyright 2016 Daily Trust . All rights reserved . "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Daily Trust"}], "key": "daily trust", "value": "Daily Trust"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 689, "end": 690, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 7, "end": 11, "input": "tokens", "text": "Buhari - I Will Rescue Chibok Girls - allAfrica . com "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chibok Girls - allAfrica"}], "key": "chibok girls - allafrica", "value": "Chibok Girls - allAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "method": "rearrange_description"}], "key": "description", "value": "

President Muhammadu Buhari says his government will do all within its powers in making the best efforts to free the over 200 abducted Chibok schoolgirls from the captivity of the Boko Haram sect.

The president was speaking at the Aso Rock Presidential Villa in Abuja yesterday while receiving him the Women In Politics Forum (WIPF).

The girls were kidnapped from the Government Secondary School, Chibok, Borno State, on April 14, 2014.

President Buhari had Wednesday during the presidential media chat said there was no credible intelligence report on the whereabouts and the condition of the missing girls.

But the president assured Friday that the fight for the return of the abducted schoolgirls was ongoing and \"continues to be a most worrying issue\" to his administration.

Buhari also disclosed that a committee to rehabilitate the infrastructure in the northeast and resettle the Internally Displaced Persons (IDPs) would soon be formally inaugurated.

The president said the committee, to be headed by former Defence Minister General Theophilus Danjuma (rtd), would also include Aliko Dangote, saying local and foreign assistance received will be channelled through the committee.

Buhari said he had compiled a list of damaged infrastructure including schools and bridges and handed them to the leaders of the G7 countries and the United States.

\"I didn't ask for a kobo (in cash). It is up to them to choose what they will undertake. Already, some of them have sent teams to verify our assertions\", he said.

The president lamented the effects of the activities of the Boko Haram terrorist group on women and children who he described as the worst-hit victims of the insurgency.

\"In the north-east, what I saw for myself and on those clips is a source of concern for people with conscience. They (victims) are mostly women and children who are orphaned. Some of them don't even know where they come from. This is the pathetic situation in which the country has found itself\", he said.

While acknowledging the case made by the WIPF for a better representation of women in his government, Buhari assured that women would \"fare well\" in the composition of federal parastatals and their boards in the first quarter of this year.

On the allegation of slowness against his administration, President Buhari maintained that steps must taken with caution in order to avoid mistakes.

\"People say we are slow. We are trying to change the structures put in place by our predecessors in office for 16 years. If we hurry it, we will make mistakes. That will be a disaster\", he said.

The president described the 2016 budget proposal as good for employment and manufacturing, saying \"By the end of the second quarter, the full impact of these positive measures will be felt\".

Earlier, the WIPF, comprising women leaders from 26 registered political parties and led by Ebere Ifendu of the Labour Party, had declared support for the federal government's war against corruption and insecurity.

The forum, which sought laws that would promote gender equity, also urged action on the implementation of the Violence Against Persons Prohibition Act.

A statement by the Senior Special Assistant to the President on Media and Publicity, Mallam Garba Shehu, said the WIPF made the record of being the first organisation to be received by Buhari in the new year.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 749, "end": 750, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 777, "end": 778, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Buhari - I Will Rescue Chibok Girls - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 23, "end": 24, "input": "tokens", "text": "free the over 200 abducted Chibok schoolgirls from the captivity of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chibok"}, {"source": {"segment": "content_relaxed", "context": {"start": 35, "end": 36, "input": "tokens", "text": "free the over 200 abducted Chibok schoolgirls from the captivity of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chibok"}], "key": "chibok", "value": "Chibok"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 29, "end": 31, "input": "tokens", "text": "schoolgirls from the captivity of the Boko Haram sect . The president "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Boko"}, {"source": {"segment": "content_relaxed", "context": {"start": 41, "end": 43, "input": "tokens", "text": "schoolgirls from the captivity of the Boko Haram sect . The president "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Boko"}], "key": "the boko", "value": "the Boko"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 71, "end": 73, "input": "tokens", "text": "Secondary School , Chibok , Borno State , on April 14 , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Borno State"}, {"source": {"segment": "content_relaxed", "context": {"start": 83, "end": 85, "input": "tokens", "text": "Secondary School , Chibok , Borno State , on April 14 , "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Borno State"}], "key": "borno state", "value": "Borno State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 177, "end": 182, "input": "tokens", "text": "to be headed by former Defence Minister General Theophilus Danjuma ( rtd ) , would "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Defence Minister General Theophilus Danjuma"}, {"source": {"segment": "content_relaxed", "context": {"start": 189, "end": 194, "input": "tokens", "text": "to be headed by former Defence Minister General Theophilus Danjuma ( rtd ) , would "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Defence Minister General Theophilus Danjuma"}], "key": "defence minister general theophilus danjuma", "value": "Defence Minister General Theophilus Danjuma"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 286, "end": 289, "input": "tokens", "text": "effects of the activities of the Boko Haram terrorist group on women and "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 298, "end": 301, "input": "tokens", "text": "effects of the activities of the Boko Haram terrorist group on women and "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Boko Haram"}], "key": "the boko haram", "value": "the Boko Haram"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 384, "end": 385, "input": "tokens", "text": "the case made by the WIPF for a better representation of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_strict", "context": {"start": 530, "end": 531, "input": "tokens", "text": "\" . Earlier , the WIPF , comprising women leaders from "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_strict", "context": {"start": 612, "end": 613, "input": "tokens", "text": "Garba Shehu , said the WIPF made the record of being "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_relaxed", "context": {"start": 396, "end": 397, "input": "tokens", "text": "the case made by the WIPF for a better representation of "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_relaxed", "context": {"start": 542, "end": 543, "input": "tokens", "text": "\" . Earlier , the WIPF , comprising women leaders from "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}, {"source": {"segment": "content_relaxed", "context": {"start": 624, "end": 625, "input": "tokens", "text": "Garba Shehu , said the WIPF made the record of being "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "WIPF"}], "key": "wipf", "value": "WIPF"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 546, "end": 549, "input": "tokens", "text": "led by Ebere Ifendu of the Labour Party , had declared support for "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Labour Party"}, {"source": {"segment": "content_relaxed", "context": {"start": 558, "end": 561, "input": "tokens", "text": "led by Ebere Ifendu of the Labour Party , had declared support for "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Labour Party"}], "key": "the labour party", "value": "the Labour Party"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 594, "end": 598, "input": "tokens", "text": "Act . A statement by the Senior Special Assistant to the President on Media "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}, {"source": {"segment": "content_relaxed", "context": {"start": 606, "end": 610, "input": "tokens", "text": "Act . A statement by the Senior Special Assistant to the President on Media "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Senior Special Assistant"}], "key": "the senior special assistant", "value": "the Senior Special Assistant"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 606, "end": 609, "input": "tokens", "text": "on Media and Publicity , Mallam Garba Shehu , said the WIPF made "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mallam Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 618, "end": 621, "input": "tokens", "text": "on Media and Publicity , Mallam Garba Shehu , said the WIPF made "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mallam Garba Shehu"}], "key": "mallam garba shehu", "value": "Mallam Garba Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 652, "end": 653, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 654, "end": 657, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 45, "end": 46, "input": "tokens", "text": "Aso Rock Presidential Villa in Abuja yesterday while receiving him the "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 57, "end": 58, "input": "tokens", "text": "Aso Rock Presidential Villa in Abuja yesterday while receiving him the "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 69, "end": 70, "input": "tokens", "text": "the Government Secondary School , Chibok , Borno State , on "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chibok"}, {"source": {"segment": "content_relaxed", "context": {"start": 81, "end": 82, "input": "tokens", "text": "the Government Secondary School , Chibok , Borno State , on "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chibok"}], "key": "chibok", "value": "Chibok"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 230, "end": 233, "input": "tokens", "text": "of the G7 countries and the United States . \" I didn ' "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 242, "end": 245, "input": "tokens", "text": "of the G7 countries and the United States . \" I didn ' "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}], "key": "the united states", "value": "the United States"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 625, "end": 626, "input": "tokens", "text": "organisation to be received by Buhari in the new year . "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 637, "end": 638, "input": "tokens", "text": "organisation to be received by Buhari in the new year . "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Buhari - I Will "}, "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}]}, "content_extraction": {"content_relaxed": {"text": "

1 January 2016

Nigeria: Buhari - I Will Rescue Chibok Girls

President Muhammadu Buhari says his government will do all within its powers in making the best efforts to free the over 200 abducted Chibok schoolgirls from the captivity of the Boko Haram sect.

The president was speaking at the Aso Rock Presidential Villa in Abuja yesterday while receiving him the Women In Politics Forum (WIPF).

The girls were kidnapped from the Government Secondary School, Chibok, Borno State, on April 14, 2014.

President Buhari had Wednesday during the presidential media chat said there was no credible intelligence report on the whereabouts and the condition of the missing girls.

But the president assured Friday that the fight for the return of the abducted schoolgirls was ongoing and \"continues to be a most worrying issue\" to his administration.

Buhari also disclosed that a committee to rehabilitate the infrastructure in the northeast and resettle the Internally Displaced Persons (IDPs) would soon be formally inaugurated.

The president said the committee, to be headed by former Defence Minister General Theophilus Danjuma (rtd), would also include Aliko Dangote, saying local and foreign assistance received will be channelled through the committee.

Buhari said he had compiled a list of damaged infrastructure including schools and bridges and handed them to the leaders of the G7 countries and the United States.

\"I didn't ask for a kobo (in cash). It is up to them to choose what they will undertake. Already, some of them have sent teams to verify our assertions\", he said.

The president lamented the effects of the activities of the Boko Haram terrorist group on women and children who he described as the worst-hit victims of the insurgency.

\"In the north-east, what I saw for myself and on those clips is a source of concern for people with conscience. They (victims) are mostly women and children who are orphaned. Some of them don't even know where they come from. This is the pathetic situation in which the country has found itself\", he said.

While acknowledging the case made by the WIPF for a better representation of women in his government, Buhari assured that women would \"fare well\" in the composition of federal parastatals and their boards in the first quarter of this year.

On the allegation of slowness against his administration, President Buhari maintained that steps must taken with caution in order to avoid mistakes.

\"People say we are slow. We are trying to change the structures put in place by our predecessors in office for 16 years. If we hurry it, we will make mistakes. That will be a disaster\", he said.

The president described the 2016 budget proposal as good for employment and manufacturing, saying \"By the end of the second quarter, the full impact of these positive measures will be felt\".

Earlier, the WIPF, comprising women leaders from 26 registered political parties and led by Ebere Ifendu of the Labour Party, had declared support for the federal government's war against corruption and insecurity.

The forum, which sought laws that would promote gender equity, also urged action on the implementation of the Violence Against Persons Prohibition Act.

A statement by the Senior Special Assistant to the President on Media and Publicity, Mallam Garba Shehu, said the WIPF made the record of being the first organisation to be received by Buhari in the new year.

Copyright

2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["1", "january", "2016", "nigeria", ":", "buhari", "-", "i", "will", "rescue", "chibok", "girls", "president", "muhammadu", "buhari", "says", "his", "government", "will", "do", "all", "within", "its", "powers", "in", "making", "the", "best", "efforts", "to", "free", "the", "over", "200", "abducted", "chibok", "schoolgirls", "from", "the", "captivity", "of", "the", "boko", "haram", "sect", ".", "the", "president", "was", "speaking", "at", "the", "aso", "rock", "presidential", "villa", "in", "abuja", "yesterday", "while", "receiving", "him", "the", "women", "in", "politics", "forum", "(", "wipf", ")", ".", "the", "girls", "were", "kidnapped", "from", "the", "government", "secondary", "school", ",", "chibok", ",", "borno", "state", ",", "on", "april", "14", ",", "2014", ".", "president", "buhari", "had", "wednesday", "during", "the", "presidential", "media", "chat", "said", "there", "was", "no", "credible", "intelligence", "report", "on", "the", "whereabouts", "and", "the", "condition", "of", "the", "missing", "girls", ".", "but", "the", "president", "assured", "friday", "that", "the", "fight", "for", "the", "return", "of", "the", "abducted", "schoolgirls", "was", "ongoing", "and", "\"", "continues", "to", "be", "a", "most", "worrying", "issue", "\"", "to", "his", "administration", ".", "buhari", "also", "disclosed", "that", "a", "committee", "to", "rehabilitate", "the", "infrastructure", "in", "the", "northeast", "and", "resettle", "the", "internally", "displaced", "persons", "(", "idps", ")", "would", "soon", "be", "formally", "inaugurated", ".", "the", "president", "said", "the", "committee", ",", "to", "be", "headed", "by", "former", "defence", "minister", "general", "theophilus", "danjuma", "(", "rtd", ")", ",", "would", "also", "include", "aliko", "dangote", ",", "saying", "local", "and", "foreign", "assistance", "received", "will", "be", "channelled", "through", "the", "committee", ".", "buhari", "said", "he", "had", "compiled", "a", "list", "of", "damaged", "infrastructure", "including", "schools", "and", "bridges", "and", "handed", "them", "to", "the", "leaders", "of", "the", "g7", "countries", "and", "the", "united", "states", ".", "\"", "i", "didn", "'", "t", "ask", "for", "a", "kobo", "(", "in", "cash", ")", ".", "it", "is", "up", "to", "them", "to", "choose", "what", "they", "will", "undertake", ".", "already", ",", "some", "of", "them", "have", "sent", "teams", "to", "verify", "our", "assertions", "\"", ",", "he", "said", ".", "the", "president", "lamented", "the", "effects", "of", "the", "activities", "of", "the", "boko", "haram", "terrorist", "group", "on", "women", "and", "children", "who", "he", "described", "as", "the", "worst", "-", "hit", "victims", "of", "the", "insurgency", ".", "\"", "in", "the", "north", "-", "east", ",", "what", "i", "saw", "for", "myself", "and", "on", "those", "clips", "is", "a", "source", "of", "concern", "for", "people", "with", "conscience", ".", "they", "(", "victims", ")", "are", "mostly", "women", "and", "children", "who", "are", "orphaned", ".", "some", "of", "them", "don", "'", "t", "even", "know", "where", "they", "come", "from", ".", "this", "is", "the", "pathetic", "situation", "in", "which", "the", "country", "has", "found", "itself", "\"", ",", "he", "said", ".", "while", "acknowledging", "the", "case", "made", "by", "the", "wipf", "for", "a", "better", "representation", "of", "women", "in", "his", "government", ",", "buhari", "assured", "that", "women", "would", "\"", "fare", "well", "\"", "in", "the", "composition", "of", "federal", "parastatals", "and", "their", "boards", "in", "the", "first", "quarter", "of", "this", "year", ".", "on", "the", "allegation", "of", "slowness", "against", "his", "administration", ",", "president", "buhari", "maintained", "that", "steps", "must", "taken", "with", "caution", "in", "order", "to", "avoid", "mistakes", ".", "\"", "people", "say", "we", "are", "slow", ".", "we", "are", "trying", "to", "change", "the", "structures", "put", "in", "place", "by", "our", "predecessors", "in", "office", "for", "16", "years", ".", "if", "we", "hurry", "it", ",", "we", "will", "make", "mistakes", ".", "that", "will", "be", "a", "disaster", "\"", ",", "he", "said", ".", "the", "president", "described", "the", "2016", "budget", "proposal", "as", "good", "for", "employment", "and", "manufacturing", ",", "saying", "\"", "by", "the", "end", "of", "the", "second", "quarter", ",", "the", "full", "impact", "of", "these", "positive", "measures", "will", "be", "felt", "\"", ".", "earlier", ",", "the", "wipf", ",", "comprising", "women", "leaders", "from", "26", "registered", "political", "parties", "and", "led", "by", "ebere", "ifendu", "of", "the", "labour", "party", ",", "had", "declared", "support", "for", "the", "federal", "government", "'", "s", "war", "against", "corruption", "and", "insecurity", ".", "the", "forum", ",", "which", "sought", "laws", "that", "would", "promote", "gender", "equity", ",", "also", "urged", "action", "on", "the", "implementation", "of", "the", "violence", "against", "persons", "prohibition", "act", ".", "a", "statement", "by", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "mallam", "garba", "shehu", ",", "said", "the", "wipf", "made", "the", "record", "of", "being", "the", "first", "organisation", "to", "be", "received", "by", "buhari", "in", "the", "new", "year", ".", "copyright", "2016", "daily", "trust", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["1", "January", "2016", "Nigeria", ":", "Buhari", "-", "I", "Will", "Rescue", "Chibok", "Girls", "President", "Muhammadu", "Buhari", "says", "his", "government", "will", "do", "all", "within", "its", "powers", "in", "making", "the", "best", "efforts", "to", "free", "the", "over", "200", "abducted", "Chibok", "schoolgirls", "from", "the", "captivity", "of", "the", "Boko", "Haram", "sect", ".", "The", "president", "was", "speaking", "at", "the", "Aso", "Rock", "Presidential", "Villa", "in", "Abuja", "yesterday", "while", "receiving", "him", "the", "Women", "In", "Politics", "Forum", "(", "WIPF", ")", ".", "The", "girls", "were", "kidnapped", "from", "the", "Government", "Secondary", "School", ",", "Chibok", ",", "Borno", "State", ",", "on", "April", "14", ",", "2014", ".", "President", "Buhari", "had", "Wednesday", "during", "the", "presidential", "media", "chat", "said", "there", "was", "no", "credible", "intelligence", "report", "on", "the", "whereabouts", "and", "the", "condition", "of", "the", "missing", "girls", ".", "But", "the", "president", "assured", "Friday", "that", "the", "fight", "for", "the", "return", "of", "the", "abducted", "schoolgirls", "was", "ongoing", "and", "\"", "continues", "to", "be", "a", "most", "worrying", "issue", "\"", "to", "his", "administration", ".", "Buhari", "also", "disclosed", "that", "a", "committee", "to", "rehabilitate", "the", "infrastructure", "in", "the", "northeast", "and", "resettle", "the", "Internally", "Displaced", "Persons", "(", "IDPs", ")", "would", "soon", "be", "formally", "inaugurated", ".", "The", "president", "said", "the", "committee", ",", "to", "be", "headed", "by", "former", "Defence", "Minister", "General", "Theophilus", "Danjuma", "(", "rtd", ")", ",", "would", "also", "include", "Aliko", "Dangote", ",", "saying", "local", "and", "foreign", "assistance", "received", "will", "be", "channelled", "through", "the", "committee", ".", "Buhari", "said", "he", "had", "compiled", "a", "list", "of", "damaged", "infrastructure", "including", "schools", "and", "bridges", "and", "handed", "them", "to", "the", "leaders", "of", "the", "G7", "countries", "and", "the", "United", "States", ".", "\"", "I", "didn", "'", "t", "ask", "for", "a", "kobo", "(", "in", "cash", ")", ".", "It", "is", "up", "to", "them", "to", "choose", "what", "they", "will", "undertake", ".", "Already", ",", "some", "of", "them", "have", "sent", "teams", "to", "verify", "our", "assertions", "\"", ",", "he", "said", ".", "The", "president", "lamented", "the", "effects", "of", "the", "activities", "of", "the", "Boko", "Haram", "terrorist", "group", "on", "women", "and", "children", "who", "he", "described", "as", "the", "worst", "-", "hit", "victims", "of", "the", "insurgency", ".", "\"", "In", "the", "north", "-", "east", ",", "what", "I", "saw", "for", "myself", "and", "on", "those", "clips", "is", "a", "source", "of", "concern", "for", "people", "with", "conscience", ".", "They", "(", "victims", ")", "are", "mostly", "women", "and", "children", "who", "are", "orphaned", ".", "Some", "of", "them", "don", "'", "t", "even", "know", "where", "they", "come", "from", ".", "This", "is", "the", "pathetic", "situation", "in", "which", "the", "country", "has", "found", "itself", "\"", ",", "he", "said", ".", "While", "acknowledging", "the", "case", "made", "by", "the", "WIPF", "for", "a", "better", "representation", "of", "women", "in", "his", "government", ",", "Buhari", "assured", "that", "women", "would", "\"", "fare", "well", "\"", "in", "the", "composition", "of", "federal", "parastatals", "and", "their", "boards", "in", "the", "first", "quarter", "of", "this", "year", ".", "On", "the", "allegation", "of", "slowness", "against", "his", "administration", ",", "President", "Buhari", "maintained", "that", "steps", "must", "taken", "with", "caution", "in", "order", "to", "avoid", "mistakes", ".", "\"", "People", "say", "we", "are", "slow", ".", "We", "are", "trying", "to", "change", "the", "structures", "put", "in", "place", "by", "our", "predecessors", "in", "office", "for", "16", "years", ".", "If", "we", "hurry", "it", ",", "we", "will", "make", "mistakes", ".", "That", "will", "be", "a", "disaster", "\"", ",", "he", "said", ".", "The", "president", "described", "the", "2016", "budget", "proposal", "as", "good", "for", "employment", "and", "manufacturing", ",", "saying", "\"", "By", "the", "end", "of", "the", "second", "quarter", ",", "the", "full", "impact", "of", "these", "positive", "measures", "will", "be", "felt", "\"", ".", "Earlier", ",", "the", "WIPF", ",", "comprising", "women", "leaders", "from", "26", "registered", "political", "parties", "and", "led", "by", "Ebere", "Ifendu", "of", "the", "Labour", "Party", ",", "had", "declared", "support", "for", "the", "federal", "government", "'", "s", "war", "against", "corruption", "and", "insecurity", ".", "The", "forum", ",", "which", "sought", "laws", "that", "would", "promote", "gender", "equity", ",", "also", "urged", "action", "on", "the", "implementation", "of", "the", "Violence", "Against", "Persons", "Prohibition", "Act", ".", "A", "statement", "by", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Mallam", "Garba", "Shehu", ",", "said", "the", "WIPF", "made", "the", "record", "of", "being", "the", "first", "organisation", "to", "be", "received", "by", "Buhari", "in", "the", "new", "year", ".", "Copyright", "2016", "Daily", "Trust", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020108.html"}, "content_strict": {"text": "

President Muhammadu Buhari says his government will do all within its powers in making the best efforts to free the over 200 abducted Chibok schoolgirls from the captivity of the Boko Haram sect.

The president was speaking at the Aso Rock Presidential Villa in Abuja yesterday while receiving him the Women In Politics Forum (WIPF).

The girls were kidnapped from the Government Secondary School, Chibok, Borno State, on April 14, 2014.

President Buhari had Wednesday during the presidential media chat said there was no credible intelligence report on the whereabouts and the condition of the missing girls.

But the president assured Friday that the fight for the return of the abducted schoolgirls was ongoing and \"continues to be a most worrying issue\" to his administration.

Buhari also disclosed that a committee to rehabilitate the infrastructure in the northeast and resettle the Internally Displaced Persons (IDPs) would soon be formally inaugurated.

The president said the committee, to be headed by former Defence Minister General Theophilus Danjuma (rtd), would also include Aliko Dangote, saying local and foreign assistance received will be channelled through the committee.

Buhari said he had compiled a list of damaged infrastructure including schools and bridges and handed them to the leaders of the G7 countries and the United States.

\"I didn't ask for a kobo (in cash). It is up to them to choose what they will undertake. Already, some of them have sent teams to verify our assertions\", he said.

The president lamented the effects of the activities of the Boko Haram terrorist group on women and children who he described as the worst-hit victims of the insurgency.

\"In the north-east, what I saw for myself and on those clips is a source of concern for people with conscience. They (victims) are mostly women and children who are orphaned. Some of them don't even know where they come from. This is the pathetic situation in which the country has found itself\", he said.

While acknowledging the case made by the WIPF for a better representation of women in his government, Buhari assured that women would \"fare well\" in the composition of federal parastatals and their boards in the first quarter of this year.

On the allegation of slowness against his administration, President Buhari maintained that steps must taken with caution in order to avoid mistakes.

\"People say we are slow. We are trying to change the structures put in place by our predecessors in office for 16 years. If we hurry it, we will make mistakes. That will be a disaster\", he said.

The president described the 2016 budget proposal as good for employment and manufacturing, saying \"By the end of the second quarter, the full impact of these positive measures will be felt\".

Earlier, the WIPF, comprising women leaders from 26 registered political parties and led by Ebere Ifendu of the Labour Party, had declared support for the federal government's war against corruption and insecurity.

The forum, which sought laws that would promote gender equity, also urged action on the implementation of the Violence Against Persons Prohibition Act.

A statement by the Senior Special Assistant to the President on Media and Publicity, Mallam Garba Shehu, said the WIPF made the record of being the first organisation to be received by Buhari in the new year.

", "simple_tokens": ["president", "muhammadu", "buhari", "says", "his", "government", "will", "do", "all", "within", "its", "powers", "in", "making", "the", "best", "efforts", "to", "free", "the", "over", "200", "abducted", "chibok", "schoolgirls", "from", "the", "captivity", "of", "the", "boko", "haram", "sect", ".", "the", "president", "was", "speaking", "at", "the", "aso", "rock", "presidential", "villa", "in", "abuja", "yesterday", "while", "receiving", "him", "the", "women", "in", "politics", "forum", "(", "wipf", ")", ".", "the", "girls", "were", "kidnapped", "from", "the", "government", "secondary", "school", ",", "chibok", ",", "borno", "state", ",", "on", "april", "14", ",", "2014", ".", "president", "buhari", "had", "wednesday", "during", "the", "presidential", "media", "chat", "said", "there", "was", "no", "credible", "intelligence", "report", "on", "the", "whereabouts", "and", "the", "condition", "of", "the", "missing", "girls", ".", "but", "the", "president", "assured", "friday", "that", "the", "fight", "for", "the", "return", "of", "the", "abducted", "schoolgirls", "was", "ongoing", "and", "\"", "continues", "to", "be", "a", "most", "worrying", "issue", "\"", "to", "his", "administration", ".", "buhari", "also", "disclosed", "that", "a", "committee", "to", "rehabilitate", "the", "infrastructure", "in", "the", "northeast", "and", "resettle", "the", "internally", "displaced", "persons", "(", "idps", ")", "would", "soon", "be", "formally", "inaugurated", ".", "the", "president", "said", "the", "committee", ",", "to", "be", "headed", "by", "former", "defence", "minister", "general", "theophilus", "danjuma", "(", "rtd", ")", ",", "would", "also", "include", "aliko", "dangote", ",", "saying", "local", "and", "foreign", "assistance", "received", "will", "be", "channelled", "through", "the", "committee", ".", "buhari", "said", "he", "had", "compiled", "a", "list", "of", "damaged", "infrastructure", "including", "schools", "and", "bridges", "and", "handed", "them", "to", "the", "leaders", "of", "the", "g7", "countries", "and", "the", "united", "states", ".", "\"", "i", "didn", "'", "t", "ask", "for", "a", "kobo", "(", "in", "cash", ")", ".", "it", "is", "up", "to", "them", "to", "choose", "what", "they", "will", "undertake", ".", "already", ",", "some", "of", "them", "have", "sent", "teams", "to", "verify", "our", "assertions", "\"", ",", "he", "said", ".", "the", "president", "lamented", "the", "effects", "of", "the", "activities", "of", "the", "boko", "haram", "terrorist", "group", "on", "women", "and", "children", "who", "he", "described", "as", "the", "worst", "-", "hit", "victims", "of", "the", "insurgency", ".", "\"", "in", "the", "north", "-", "east", ",", "what", "i", "saw", "for", "myself", "and", "on", "those", "clips", "is", "a", "source", "of", "concern", "for", "people", "with", "conscience", ".", "they", "(", "victims", ")", "are", "mostly", "women", "and", "children", "who", "are", "orphaned", ".", "some", "of", "them", "don", "'", "t", "even", "know", "where", "they", "come", "from", ".", "this", "is", "the", "pathetic", "situation", "in", "which", "the", "country", "has", "found", "itself", "\"", ",", "he", "said", ".", "while", "acknowledging", "the", "case", "made", "by", "the", "wipf", "for", "a", "better", "representation", "of", "women", "in", "his", "government", ",", "buhari", "assured", "that", "women", "would", "\"", "fare", "well", "\"", "in", "the", "composition", "of", "federal", "parastatals", "and", "their", "boards", "in", "the", "first", "quarter", "of", "this", "year", ".", "on", "the", "allegation", "of", "slowness", "against", "his", "administration", ",", "president", "buhari", "maintained", "that", "steps", "must", "taken", "with", "caution", "in", "order", "to", "avoid", "mistakes", ".", "\"", "people", "say", "we", "are", "slow", ".", "we", "are", "trying", "to", "change", "the", "structures", "put", "in", "place", "by", "our", "predecessors", "in", "office", "for", "16", "years", ".", "if", "we", "hurry", "it", ",", "we", "will", "make", "mistakes", ".", "that", "will", "be", "a", "disaster", "\"", ",", "he", "said", ".", "the", "president", "described", "the", "2016", "budget", "proposal", "as", "good", "for", "employment", "and", "manufacturing", ",", "saying", "\"", "by", "the", "end", "of", "the", "second", "quarter", ",", "the", "full", "impact", "of", "these", "positive", "measures", "will", "be", "felt", "\"", ".", "earlier", ",", "the", "wipf", ",", "comprising", "women", "leaders", "from", "26", "registered", "political", "parties", "and", "led", "by", "ebere", "ifendu", "of", "the", "labour", "party", ",", "had", "declared", "support", "for", "the", "federal", "government", "'", "s", "war", "against", "corruption", "and", "insecurity", ".", "the", "forum", ",", "which", "sought", "laws", "that", "would", "promote", "gender", "equity", ",", "also", "urged", "action", "on", "the", "implementation", "of", "the", "violence", "against", "persons", "prohibition", "act", ".", "a", "statement", "by", "the", "senior", "special", "assistant", "to", "the", "president", "on", "media", "and", "publicity", ",", "mallam", "garba", "shehu", ",", "said", "the", "wipf", "made", "the", "record", "of", "being", "the", "first", "organisation", "to", "be", "received", "by", "buhari", "in", "the", "new", "year", "."], "simple_tokens_original_case": ["President", "Muhammadu", "Buhari", "says", "his", "government", "will", "do", "all", "within", "its", "powers", "in", "making", "the", "best", "efforts", "to", "free", "the", "over", "200", "abducted", "Chibok", "schoolgirls", "from", "the", "captivity", "of", "the", "Boko", "Haram", "sect", ".", "The", "president", "was", "speaking", "at", "the", "Aso", "Rock", "Presidential", "Villa", "in", "Abuja", "yesterday", "while", "receiving", "him", "the", "Women", "In", "Politics", "Forum", "(", "WIPF", ")", ".", "The", "girls", "were", "kidnapped", "from", "the", "Government", "Secondary", "School", ",", "Chibok", ",", "Borno", "State", ",", "on", "April", "14", ",", "2014", ".", "President", "Buhari", "had", "Wednesday", "during", "the", "presidential", "media", "chat", "said", "there", "was", "no", "credible", "intelligence", "report", "on", "the", "whereabouts", "and", "the", "condition", "of", "the", "missing", "girls", ".", "But", "the", "president", "assured", "Friday", "that", "the", "fight", "for", "the", "return", "of", "the", "abducted", "schoolgirls", "was", "ongoing", "and", "\"", "continues", "to", "be", "a", "most", "worrying", "issue", "\"", "to", "his", "administration", ".", "Buhari", "also", "disclosed", "that", "a", "committee", "to", "rehabilitate", "the", "infrastructure", "in", "the", "northeast", "and", "resettle", "the", "Internally", "Displaced", "Persons", "(", "IDPs", ")", "would", "soon", "be", "formally", "inaugurated", ".", "The", "president", "said", "the", "committee", ",", "to", "be", "headed", "by", "former", "Defence", "Minister", "General", "Theophilus", "Danjuma", "(", "rtd", ")", ",", "would", "also", "include", "Aliko", "Dangote", ",", "saying", "local", "and", "foreign", "assistance", "received", "will", "be", "channelled", "through", "the", "committee", ".", "Buhari", "said", "he", "had", "compiled", "a", "list", "of", "damaged", "infrastructure", "including", "schools", "and", "bridges", "and", "handed", "them", "to", "the", "leaders", "of", "the", "G7", "countries", "and", "the", "United", "States", ".", "\"", "I", "didn", "'", "t", "ask", "for", "a", "kobo", "(", "in", "cash", ")", ".", "It", "is", "up", "to", "them", "to", "choose", "what", "they", "will", "undertake", ".", "Already", ",", "some", "of", "them", "have", "sent", "teams", "to", "verify", "our", "assertions", "\"", ",", "he", "said", ".", "The", "president", "lamented", "the", "effects", "of", "the", "activities", "of", "the", "Boko", "Haram", "terrorist", "group", "on", "women", "and", "children", "who", "he", "described", "as", "the", "worst", "-", "hit", "victims", "of", "the", "insurgency", ".", "\"", "In", "the", "north", "-", "east", ",", "what", "I", "saw", "for", "myself", "and", "on", "those", "clips", "is", "a", "source", "of", "concern", "for", "people", "with", "conscience", ".", "They", "(", "victims", ")", "are", "mostly", "women", "and", "children", "who", "are", "orphaned", ".", "Some", "of", "them", "don", "'", "t", "even", "know", "where", "they", "come", "from", ".", "This", "is", "the", "pathetic", "situation", "in", "which", "the", "country", "has", "found", "itself", "\"", ",", "he", "said", ".", "While", "acknowledging", "the", "case", "made", "by", "the", "WIPF", "for", "a", "better", "representation", "of", "women", "in", "his", "government", ",", "Buhari", "assured", "that", "women", "would", "\"", "fare", "well", "\"", "in", "the", "composition", "of", "federal", "parastatals", "and", "their", "boards", "in", "the", "first", "quarter", "of", "this", "year", ".", "On", "the", "allegation", "of", "slowness", "against", "his", "administration", ",", "President", "Buhari", "maintained", "that", "steps", "must", "taken", "with", "caution", "in", "order", "to", "avoid", "mistakes", ".", "\"", "People", "say", "we", "are", "slow", ".", "We", "are", "trying", "to", "change", "the", "structures", "put", "in", "place", "by", "our", "predecessors", "in", "office", "for", "16", "years", ".", "If", "we", "hurry", "it", ",", "we", "will", "make", "mistakes", ".", "That", "will", "be", "a", "disaster", "\"", ",", "he", "said", ".", "The", "president", "described", "the", "2016", "budget", "proposal", "as", "good", "for", "employment", "and", "manufacturing", ",", "saying", "\"", "By", "the", "end", "of", "the", "second", "quarter", ",", "the", "full", "impact", "of", "these", "positive", "measures", "will", "be", "felt", "\"", ".", "Earlier", ",", "the", "WIPF", ",", "comprising", "women", "leaders", "from", "26", "registered", "political", "parties", "and", "led", "by", "Ebere", "Ifendu", "of", "the", "Labour", "Party", ",", "had", "declared", "support", "for", "the", "federal", "government", "'", "s", "war", "against", "corruption", "and", "insecurity", ".", "The", "forum", ",", "which", "sought", "laws", "that", "would", "promote", "gender", "equity", ",", "also", "urged", "action", "on", "the", "implementation", "of", "the", "Violence", "Against", "Persons", "Prohibition", "Act", ".", "A", "statement", "by", "the", "Senior", "Special", "Assistant", "to", "the", "President", "on", "Media", "and", "Publicity", ",", "Mallam", "Garba", "Shehu", ",", "said", "the", "WIPF", "made", "the", "record", "of", "being", "the", "first", "organisation", "to", "be", "received", "by", "Buhari", "in", "the", "new", "year", "."]}, "title": {"text": " Nigeria: Buhari - I Will Rescue Chibok Girls - allAfrica.com ", "simple_tokens": ["nigeria", ":", "buhari", "-", "i", "will", "rescue", "chibok", "girls", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Buhari", "-", "I", "Will", "Rescue", "Chibok", "Girls", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:07.511239", "@etk_process_time": 0.582388162612915, "@etk_start_time": "2018-06-07T17:34:06.928851"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Buhari - I Will Rescue Chibok Girls - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Nigeria: Buhari - I Will Rescue Chibok Girls\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n

\n President Muhammadu Buhari says his government will do all within its powers in making the best efforts to free the over 200 abducted Chibok schoolgirls from the captivity of the Boko Haram sect.\n

\n

\n The president was speaking at the Aso Rock Presidential Villa in Abuja yesterday while receiving him the Women In Politics Forum (WIPF).\n

\n

\n The girls were kidnapped from the Government Secondary School, Chibok, Borno State, on April 14, 2014.\n

\n

\n President Buhari had Wednesday during the presidential media chat said there was no credible intelligence report on the whereabouts and the condition of the missing girls.\n

\n

\n But the president assured Friday that the fight for the return of the abducted schoolgirls was ongoing and \"continues to be a most worrying issue\" to his administration.\n

\n

\n Buhari also disclosed that a committee to rehabilitate the infrastructure in the northeast and resettle the Internally Displaced Persons (IDPs) would soon be formally inaugurated.\n

\n

\n The president said the committee, to be headed by former Defence Minister General Theophilus Danjuma (rtd), would also include Aliko Dangote, saying local and foreign assistance received will be channelled through the committee.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n Buhari said he had compiled a list of damaged infrastructure including schools and bridges and handed them to the leaders of the G7 countries and the United States.\n

\n

\n \"I didn't ask for a kobo (in cash). It is up to them to choose what they will undertake. Already, some of them have sent teams to verify our assertions\", he said.\n

\n
\n
\n
\n
\n

\n The president lamented the effects of the activities of the Boko Haram terrorist group on women and children who he described as the worst-hit victims of the insurgency.\n

\n

\n \"In the north-east, what I saw for myself and on those clips is a source of concern for people with conscience. They (victims) are mostly women and children who are orphaned. Some of them don't even know where they come from. This is the pathetic situation in which the country has found itself\", he said.\n

\n

\n While acknowledging the case made by the WIPF for a better representation of women in his government, Buhari assured that women would \"fare well\" in the composition of federal parastatals and their boards in the first quarter of this year.\n

\n

\n On the allegation of slowness against his administration, President Buhari maintained that steps must taken with caution in order to avoid mistakes.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n \"People say we are slow. We are trying to change the structures put in place by our predecessors in office for 16 years. If we hurry it, we will make mistakes. That will be a disaster\", he said.\n

\n

\n The president described the 2016 budget proposal as good for employment and manufacturing, saying \"By the end of the second quarter, the full impact of these positive measures will be felt\".\n

\n

\n Earlier, the WIPF, comprising women leaders from 26 registered political parties and led by Ebere Ifendu of the Labour Party, had declared support for the federal government's war against corruption and insecurity.\n

\n

\n The forum, which sought laws that would promote gender equity, also urged action on the implementation of the Violence Against Persons Prohibition Act.\n

\n

\n A statement by the Senior Special Assistant to the President on Media and Publicity, Mallam Garba Shehu, said the WIPF made the record of being the first organisation to be received by Buhari in the new year.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Daily Trust. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C", "document_id": "6494ECCEEC5D4953001353AA05016565D0CE79A87249110B772833CAD1C8AD6C"} +{"url": "http://www.ce_news_article.org/2016/01/02/201601020123.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 18, "end": 20, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 73, "end": 75, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_strict", "context": {"start": 276, "end": 278, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \" "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 31, "end": 33, "input": "tokens", "text": "- metre tall statue of Jesus Christ carved from white marble , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 86, "end": 88, "input": "tokens", "text": "the African tallest statue of Jesus Christ weighing 8 . 5 metres "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}, {"source": {"segment": "content_relaxed", "context": {"start": 289, "end": 291, "input": "tokens", "text": "constantly remind us of what Jesus Christ stands for us . \" "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus Christ"}], "key": "jesus christ", "value": "Jesus Christ"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 63, "end": 65, "input": "tokens", "text": "Diocese , Most Rev . Augustine Ukwuoma on Friday unveiled the African "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Ukwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 76, "end": 78, "input": "tokens", "text": "Diocese , Most Rev . Augustine Ukwuoma on Friday unveiled the African "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Ukwuoma"}], "key": "augustine ukwuoma", "value": "Augustine Ukwuoma"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 110, "end": 113, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . Ukwuoma "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ramesses ii Abusimbel"}, {"source": {"segment": "content_relaxed", "context": {"start": 123, "end": 126, "input": "tokens", "text": "metres ( 66 foot ) Ramesses ii Abusimbel statue in Egypt . Ukwuoma "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ramesses ii Abusimbel"}], "key": "ramesses ii abusimbel", "value": "Ramesses ii Abusimbel"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 117, "end": 119, "input": "tokens", "text": "Abusimbel statue in Egypt . Ukwuoma Performed the ceremony shortly after a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma Performed"}, {"source": {"segment": "content_relaxed", "context": {"start": 130, "end": 132, "input": "tokens", "text": "Abusimbel statue in Egypt . Ukwuoma Performed the ceremony shortly after a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma Performed"}], "key": "ukwuoma performed", "value": "Ukwuoma Performed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 137, "end": 139, "input": "tokens", "text": "Diocese , Most Rev . Gregory Ochiagha , and more than 100 "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gregory Ochiagha"}, {"source": {"segment": "content_relaxed", "context": {"start": 150, "end": 152, "input": "tokens", "text": "Diocese , Most Rev . Gregory Ochiagha , and more than 100 "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gregory Ochiagha"}], "key": "gregory ochiagha", "value": "Gregory Ochiagha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 146, "end": 147, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_strict", "context": {"start": 184, "end": 185, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_relaxed", "context": {"start": 159, "end": 160, "input": "tokens", "text": "more than 100 priests at St . Aloysius Parish Abajah compound "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}, {"source": {"segment": "content_relaxed", "context": {"start": 197, "end": 198, "input": "tokens", "text": "seating capacity parish church at St . Aloysius in the year "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "St"}], "key": "st", "value": "St"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 166, "end": 168, "input": "tokens", "text": "NAN ) reports that Chief Obinna Onuoha , who donated the Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 376, "end": 378, "input": "tokens", "text": "love and unity . Chief Obinna Onuoha , the Managing Director of "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 179, "end": 181, "input": "tokens", "text": "NAN ) reports that Chief Obinna Onuoha , who donated the Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 389, "end": 391, "input": "tokens", "text": "love and unity . Chief Obinna Onuoha , the Managing Director of "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna Onuoha"}], "key": "obinna onuoha", "value": "Obinna Onuoha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 172, "end": 173, "input": "tokens", "text": "Onuoha , who donated the Jesus statue had constructed 2 , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}, {"source": {"segment": "content_relaxed", "context": {"start": 185, "end": 186, "input": "tokens", "text": "Onuoha , who donated the Jesus statue had constructed 2 , "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}], "key": "jesus", "value": "Jesus"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 217, "end": 218, "input": "tokens", "text": "parents of Obinna , Chief Geoffrey , and Lolo Justina Onuoha "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Geoffrey"}, {"source": {"segment": "content_relaxed", "context": {"start": 230, "end": 231, "input": "tokens", "text": "parents of Obinna , Chief Geoffrey , and Lolo Justina Onuoha "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Geoffrey"}], "key": "geoffrey", "value": "Geoffrey"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 235, "end": 236, "input": "tokens", "text": "as magnificent , commended the Onuoha family for the gift and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_strict", "context": {"start": 487, "end": 488, "input": "tokens", "text": ", \" he said . Onuoha , who did not mention "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 248, "end": 249, "input": "tokens", "text": "as magnificent , commended the Onuoha family for the gift and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 500, "end": 501, "input": "tokens", "text": ", \" he said . Onuoha , who did not mention "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Onuoha"}], "key": "onuoha", "value": "Onuoha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 301, "end": 302, "input": "tokens", "text": "to Jesus , \" the Bishop said . Speaking on the "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop"}, {"source": {"segment": "content_relaxed", "context": {"start": 314, "end": 315, "input": "tokens", "text": "to Jesus , \" the Bishop said . Speaking on the "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop"}], "key": "bishop", "value": "Bishop"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 384, "end": 386, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Petroleum Ltd"}, {"source": {"segment": "content_relaxed", "context": {"start": 397, "end": 399, "input": "tokens", "text": "the Managing Director of Premier Petroleum Ltd . , and the donor "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Petroleum Ltd"}], "key": "petroleum ltd", "value": "Petroleum Ltd"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 7, "input": "tokens", "text": "2 January 2016 Nigeria : Bishop Ukwuoma Unveils Tallest Jesus Statue in "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop Ukwuoma"}, {"source": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Bishop Ukwuoma Unveils Tallest Jesus Statue in "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bishop Ukwuoma"}], "key": "bishop ukwuoma", "value": "Bishop Ukwuoma"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 578, "end": 579, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "method": "rearrange_description"}], "key": "description", "value": "

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

The Bishop of Orlu Catholic Diocese, Most Rev. Augustine Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo.

The statue made of marble is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt.

Ukwuoma Performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Most Rev. Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday.

The News Agency of Nigeria (NAN) reports that Chief Obinna Onuoha, who donated the Jesus statue had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012.

NAN further reports that the unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Obinna, Chief Geoffrey, and Lolo Justina Onuoha.

Ukwuoma, who described the statue as magnificent, commended the Onuoha family for the gift and their benevolence to the church.

\"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us.

\"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said.

Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society.

\"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity.

Chief Obinna Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said that he constructed the statue to fulfill a vow he made to God in the year 1997.

\"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith.

\"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said.

Onuoha, who did not mention the cost of the statue, added, \"it took about three years to construct and erect the Jesus De Saviour statue at Abajah.\"

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 34, "end": 35, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 47, "end": 48, "input": "tokens", "text": "biggest of its kind in Africa . Standing barefoot with arms "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "title", "context": {"start": 9, "end": 10, "input": "tokens", "text": "Unveils Tallest Jesus Statue in Africa - allAfrica . com "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 638, "end": 639, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 666, "end": 667, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Bishop Ukwuoma Unveils Tallest Jesus Statue in Africa - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Photo : Premium Times The Catholic Church in Nigeria "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}, {"source": {"segment": "content_relaxed", "context": {"start": 15, "end": 17, "input": "tokens", "text": "Statue in Africa Photo : Premium Times The Catholic Church in Nigeria "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Premium Times"}], "key": "premium times", "value": "Premium Times"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 7, "input": "tokens", "text": "Photo : Premium Times The Catholic Church in Nigeria has unveiled a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}, {"source": {"segment": "content_relaxed", "context": {"start": 17, "end": 20, "input": "tokens", "text": "Africa Photo : Premium Times The Catholic Church in Nigeria has unveiled a "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Catholic Church"}], "key": "the catholic church", "value": "The Catholic Church"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 42, "end": 47, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}, {"source": {"segment": "content_relaxed", "context": {"start": 55, "end": 60, "input": "tokens", "text": "barefoot with arms outstretched , the \" Jesus de Greatest \" statue weighs 40 tonnes "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the \" Jesus de Greatest"}], "key": "the \" jesus de greatest", "value": "the \" Jesus de Greatest"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 53, "end": 59, "input": "tokens", "text": "statue weighs 40 tonnes . The Bishop of Orlu Catholic Diocese , Most Rev . Augustine "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bishop of Orlu Catholic Diocese"}, {"source": {"segment": "content_relaxed", "context": {"start": 66, "end": 72, "input": "tokens", "text": "statue weighs 40 tonnes . The Bishop of Orlu Catholic Diocese , Most Rev . Augustine "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bishop of Orlu Catholic Diocese"}], "key": "the bishop of orlu catholic diocese", "value": "The Bishop of Orlu Catholic Diocese"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 87, "end": 90, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Catholic Parish"}, {"source": {"segment": "content_relaxed", "context": {"start": 100, "end": 103, "input": "tokens", "text": "ft ) at St . Aloysius Catholic Parish , Abajah , Imo . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Catholic Parish"}], "key": "aloysius catholic parish", "value": "Aloysius Catholic Parish"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 93, "end": 94, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . The statue made of "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo"}, {"source": {"segment": "content_relaxed", "context": {"start": 106, "end": 107, "input": "tokens", "text": "Catholic Parish , Abajah , Imo . The statue made of "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Imo"}], "key": "imo", "value": "Imo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 127, "end": 131, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Most Rev "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bishop Emeritus of"}, {"source": {"segment": "content_relaxed", "context": {"start": 140, "end": 144, "input": "tokens", "text": "after a mass attended by the Bishop Emeritus of Orlu Diocese , Most Rev "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bishop Emeritus of"}], "key": "the bishop emeritus of", "value": "the Bishop Emeritus of"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 148, "end": 151, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . The "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Parish Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 161, "end": 164, "input": "tokens", "text": "100 priests at St . Aloysius Parish Abajah compound on Friday . The "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aloysius Parish Abajah"}], "key": "aloysius parish abajah", "value": "Aloysius Parish Abajah"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 155, "end": 158, "input": "tokens", "text": "Abajah compound on Friday . The News Agency of Nigeria ( NAN ) "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The News Agency"}, {"source": {"segment": "content_relaxed", "context": {"start": 168, "end": 171, "input": "tokens", "text": "Abajah compound on Friday . The News Agency of Nigeria ( NAN ) "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The News Agency"}], "key": "the news agency", "value": "The News Agency"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 161, "end": 162, "input": "tokens", "text": "News Agency of Nigeria ( NAN ) reports that Chief Obinna "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}, {"source": {"segment": "content_strict", "context": {"start": 192, "end": 193, "input": "tokens", "text": "in the year 2012 . NAN further reports that the unveiling "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}, {"source": {"segment": "content_relaxed", "context": {"start": 174, "end": 175, "input": "tokens", "text": "News Agency of Nigeria ( NAN ) reports that Chief Obinna "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}, {"source": {"segment": "content_relaxed", "context": {"start": 205, "end": 206, "input": "tokens", "text": "in the year 2012 . NAN further reports that the unveiling "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NAN"}], "key": "nan", "value": "NAN"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 214, "end": 215, "input": "tokens", "text": "ceremony of the parents of Obinna , Chief Geoffrey , and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna"}, {"source": {"segment": "content_relaxed", "context": {"start": 227, "end": 228, "input": "tokens", "text": "ceremony of the parents of Obinna , Chief Geoffrey , and "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obinna"}], "key": "obinna", "value": "Obinna"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 220, "end": 223, "input": "tokens", "text": ", Chief Geoffrey , and Lolo Justina Onuoha . Ukwuoma , who described "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lolo Justina Onuoha"}, {"source": {"segment": "content_relaxed", "context": {"start": 233, "end": 236, "input": "tokens", "text": ", Chief Geoffrey , and Lolo Justina Onuoha . Ukwuoma , who described "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lolo Justina Onuoha"}], "key": "lolo justina onuoha", "value": "Lolo Justina Onuoha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 440, "end": 441, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}, {"source": {"segment": "content_relaxed", "context": {"start": 453, "end": 454, "input": "tokens", "text": "Christian and a Catholic and Jesus statue represents my faith . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jesus"}], "key": "jesus", "value": "Jesus"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 511, "end": 515, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Jesus De Saviour"}, {"source": {"segment": "content_relaxed", "context": {"start": 524, "end": 528, "input": "tokens", "text": "years to construct and erect the Jesus De Saviour statue at Abajah . \" "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Jesus De Saviour"}], "key": "the jesus de saviour", "value": "the Jesus De Saviour"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 535, "end": 536, "input": "tokens", "text": "Abajah . \" Copyright 2016 Vanguard . All rights reserved . "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vanguard"}], "key": "vanguard", "value": "Vanguard"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 541, "end": 542, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 543, "end": 546, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 8, "end": 9, "input": "tokens", "text": "Times The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 159, "end": 160, "input": "tokens", "text": ". The News Agency of Nigeria ( NAN ) reports that "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 21, "end": 22, "input": "tokens", "text": "Times The Catholic Church in Nigeria has unveiled a nine - "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 172, "end": 173, "input": "tokens", "text": ". The News Agency of Nigeria ( NAN ) reports that "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bishop Ukwuoma Unveils Tallest "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 91, "end": 92, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . The statue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_strict", "context": {"start": 517, "end": 518, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 104, "end": 105, "input": "tokens", "text": ". Aloysius Catholic Parish , Abajah , Imo . The statue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}, {"source": {"segment": "content_relaxed", "context": {"start": 530, "end": 531, "input": "tokens", "text": "Jesus De Saviour statue at Abajah . \" Copyright 2016 Vanguard "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abajah"}], "key": "abajah", "value": "Abajah"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 115, "end": 116, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . Ukwuoma Performed the ceremony "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}, {"source": {"segment": "content_relaxed", "context": {"start": 128, "end": 129, "input": "tokens", "text": "Ramesses ii Abusimbel statue in Egypt . Ukwuoma Performed the ceremony "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}], "key": "egypt", "value": "Egypt"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 224, "end": 225, "input": "tokens", "text": "and Lolo Justina Onuoha . Ukwuoma , who described the statue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}, {"source": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": "and Lolo Justina Onuoha . Ukwuoma , who described the statue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ukwuoma"}], "key": "ukwuoma", "value": "Ukwuoma"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 69, "end": 70, "input": "tokens", "text": "Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 82, "end": 83, "input": "tokens", "text": "Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}], "key": "african", "value": "African"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 255, "end": 256, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_strict", "context": {"start": 435, "end": 436, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 268, "end": 269, "input": "tokens", "text": "is a great symbol of Christian faith , and I pray "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}, {"source": {"segment": "content_relaxed", "context": {"start": 448, "end": 449, "input": "tokens", "text": "world , I am a Christian and a Catholic and Jesus "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Christian"}], "key": "christian", "value": "Christian"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 264, "end": 265, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholics"}, {"source": {"segment": "content_relaxed", "context": {"start": 277, "end": 278, "input": "tokens", "text": "I pray that for the Catholics that the statue will continue "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholics"}], "key": "catholics", "value": "Catholics"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 438, "end": 439, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}, {"source": {"segment": "content_relaxed", "context": {"start": 451, "end": 452, "input": "tokens", "text": "am a Christian and a Catholic and Jesus statue represents my "}, "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Catholic"}], "key": "catholic", "value": "Catholic"}]}, "content_extraction": {"content_relaxed": {"text": "

2 January 2016

Nigeria: Bishop Ukwuoma Unveils Tallest Jesus Statue in Africa

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

The Bishop of Orlu Catholic Diocese, Most Rev. Augustine Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo.

The statue made of marble is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt.

Ukwuoma Performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Most Rev. Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday.

The News Agency of Nigeria (NAN) reports that Chief Obinna Onuoha, who donated the Jesus statue had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012.

NAN further reports that the unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Obinna, Chief Geoffrey, and Lolo Justina Onuoha.

Ukwuoma, who described the statue as magnificent, commended the Onuoha family for the gift and their benevolence to the church.

\"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us.

\"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said.

Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society.

\"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity.

Chief Obinna Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said that he constructed the statue to fulfill a vow he made to God in the year 1997.

\"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith.

\"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said.

Onuoha, who did not mention the cost of the statue, added, \"it took about three years to construct and erect the Jesus De Saviour statue at Abajah.\"

Copyright

2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["2", "january", "2016", "nigeria", ":", "bishop", "ukwuoma", "unveils", "tallest", "jesus", "statue", "in", "africa", "photo", ":", "premium", "times", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "the", "bishop", "of", "orlu", "catholic", "diocese", ",", "most", "rev", ".", "augustine", "ukwuoma", "on", "friday", "unveiled", "the", "african", "tallest", "statue", "of", "jesus", "christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "st", ".", "aloysius", "catholic", "parish", ",", "abajah", ",", "imo", ".", "the", "statue", "made", "of", "marble", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "ramesses", "ii", "abusimbel", "statue", "in", "egypt", ".", "ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "bishop", "emeritus", "of", "orlu", "diocese", ",", "most", "rev", ".", "gregory", "ochiagha", ",", "and", "more", "than", "100", "priests", "at", "st", ".", "aloysius", "parish", "abajah", "compound", "on", "friday", ".", "the", "news", "agency", "of", "nigeria", "(", "nan", ")", "reports", "that", "chief", "obinna", "onuoha", ",", "who", "donated", "the", "jesus", "statue", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "st", ".", "aloysius", "in", "the", "year", "2012", ".", "nan", "further", "reports", "that", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "obinna", ",", "chief", "geoffrey", ",", "and", "lolo", "justina", "onuoha", ".", "ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\"", "this", "statue", "is", "a", "great", "symbol", "of", "christian", "faith", ",", "and", "i", "pray", "that", "for", "the", "catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "jesus", "christ", "stands", "for", "us", ".", "\"", "for", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "jesus", ",", "\"", "the", "bishop", "said", ".", "speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\"", "god", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "god", "'", "s", "peace", ",", "love", "and", "unity", ".", "chief", "obinna", "onuoha", ",", "the", "managing", "director", "of", "premier", "petroleum", "ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "that", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "god", "in", "the", "year", "1997", ".", "\"", "asking", "why", "i", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "i", "came", "to", "this", "world", ",", "i", "am", "a", "christian", "and", "a", "catholic", "and", "jesus", "statue", "represents", "my", "faith", ".", "\"", "i", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "i", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "jesus", "de", "saviour", "statue", "at", "abajah", ".", "\"", "copyright", "2016", "vanguard", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["2", "January", "2016", "Nigeria", ":", "Bishop", "Ukwuoma", "Unveils", "Tallest", "Jesus", "Statue", "in", "Africa", "Photo", ":", "Premium", "Times", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "The", "Bishop", "of", "Orlu", "Catholic", "Diocese", ",", "Most", "Rev", ".", "Augustine", "Ukwuoma", "on", "Friday", "unveiled", "the", "African", "tallest", "statue", "of", "Jesus", "Christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "St", ".", "Aloysius", "Catholic", "Parish", ",", "Abajah", ",", "Imo", ".", "The", "statue", "made", "of", "marble", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "Ramesses", "ii", "Abusimbel", "statue", "in", "Egypt", ".", "Ukwuoma", "Performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "Bishop", "Emeritus", "of", "Orlu", "Diocese", ",", "Most", "Rev", ".", "Gregory", "Ochiagha", ",", "and", "more", "than", "100", "priests", "at", "St", ".", "Aloysius", "Parish", "Abajah", "compound", "on", "Friday", ".", "The", "News", "Agency", "of", "Nigeria", "(", "NAN", ")", "reports", "that", "Chief", "Obinna", "Onuoha", ",", "who", "donated", "the", "Jesus", "statue", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "St", ".", "Aloysius", "in", "the", "year", "2012", ".", "NAN", "further", "reports", "that", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "Obinna", ",", "Chief", "Geoffrey", ",", "and", "Lolo", "Justina", "Onuoha", ".", "Ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "Onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\"", "This", "statue", "is", "a", "great", "symbol", "of", "Christian", "faith", ",", "and", "I", "pray", "that", "for", "the", "Catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "Jesus", "Christ", "stands", "for", "us", ".", "\"", "For", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "Jesus", ",", "\"", "the", "Bishop", "said", ".", "Speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\"", "God", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "God", "'", "s", "peace", ",", "love", "and", "unity", ".", "Chief", "Obinna", "Onuoha", ",", "the", "Managing", "Director", "of", "Premier", "Petroleum", "Ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "that", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "God", "in", "the", "year", "1997", ".", "\"", "Asking", "why", "I", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "I", "came", "to", "this", "world", ",", "I", "am", "a", "Christian", "and", "a", "Catholic", "and", "Jesus", "statue", "represents", "my", "faith", ".", "\"", "I", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "I", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "Onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "Jesus", "De", "Saviour", "statue", "at", "Abajah", ".", "\"", "Copyright", "2016", "Vanguard", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020123.html"}, "content_strict": {"text": "

Photo:

Premium Times

The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.

The Bishop of Orlu Catholic Diocese, Most Rev. Augustine Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo.

The statue made of marble is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt.

Ukwuoma Performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Most Rev. Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday.

The News Agency of Nigeria (NAN) reports that Chief Obinna Onuoha, who donated the Jesus statue had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012.

NAN further reports that the unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Obinna, Chief Geoffrey, and Lolo Justina Onuoha.

Ukwuoma, who described the statue as magnificent, commended the Onuoha family for the gift and their benevolence to the church.

\"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us.

\"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said.

Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society.

\"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity.

Chief Obinna Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said that he constructed the statue to fulfill a vow he made to God in the year 1997.

\"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith.

\"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said.

Onuoha, who did not mention the cost of the statue, added, \"it took about three years to construct and erect the Jesus De Saviour statue at Abajah.\"

", "simple_tokens": ["photo", ":", "premium", "times", "the", "catholic", "church", "in", "nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "jesus", "christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "africa", ".", "standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "jesus", "de", "greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "the", "bishop", "of", "orlu", "catholic", "diocese", ",", "most", "rev", ".", "augustine", "ukwuoma", "on", "friday", "unveiled", "the", "african", "tallest", "statue", "of", "jesus", "christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "st", ".", "aloysius", "catholic", "parish", ",", "abajah", ",", "imo", ".", "the", "statue", "made", "of", "marble", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "ramesses", "ii", "abusimbel", "statue", "in", "egypt", ".", "ukwuoma", "performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "bishop", "emeritus", "of", "orlu", "diocese", ",", "most", "rev", ".", "gregory", "ochiagha", ",", "and", "more", "than", "100", "priests", "at", "st", ".", "aloysius", "parish", "abajah", "compound", "on", "friday", ".", "the", "news", "agency", "of", "nigeria", "(", "nan", ")", "reports", "that", "chief", "obinna", "onuoha", ",", "who", "donated", "the", "jesus", "statue", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "st", ".", "aloysius", "in", "the", "year", "2012", ".", "nan", "further", "reports", "that", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "obinna", ",", "chief", "geoffrey", ",", "and", "lolo", "justina", "onuoha", ".", "ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\"", "this", "statue", "is", "a", "great", "symbol", "of", "christian", "faith", ",", "and", "i", "pray", "that", "for", "the", "catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "jesus", "christ", "stands", "for", "us", ".", "\"", "for", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "jesus", ",", "\"", "the", "bishop", "said", ".", "speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\"", "god", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "god", "'", "s", "peace", ",", "love", "and", "unity", ".", "chief", "obinna", "onuoha", ",", "the", "managing", "director", "of", "premier", "petroleum", "ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "that", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "god", "in", "the", "year", "1997", ".", "\"", "asking", "why", "i", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "i", "came", "to", "this", "world", ",", "i", "am", "a", "christian", "and", "a", "catholic", "and", "jesus", "statue", "represents", "my", "faith", ".", "\"", "i", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "i", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "jesus", "de", "saviour", "statue", "at", "abajah", ".", "\""], "simple_tokens_original_case": ["Photo", ":", "Premium", "Times", "The", "Catholic", "Church", "in", "Nigeria", "has", "unveiled", "a", "nine", "-", "metre", "tall", "statue", "of", "Jesus", "Christ", "carved", "from", "white", "marble", ",", "thought", "to", "be", "the", "biggest", "of", "its", "kind", "in", "Africa", ".", "Standing", "barefoot", "with", "arms", "outstretched", ",", "the", "\"", "Jesus", "de", "Greatest", "\"", "statue", "weighs", "40", "tonnes", ".", "The", "Bishop", "of", "Orlu", "Catholic", "Diocese", ",", "Most", "Rev", ".", "Augustine", "Ukwuoma", "on", "Friday", "unveiled", "the", "African", "tallest", "statue", "of", "Jesus", "Christ", "weighing", "8", ".", "5", "metres", "(", "28", "ft", ")", "at", "St", ".", "Aloysius", "Catholic", "Parish", ",", "Abajah", ",", "Imo", ".", "The", "statue", "made", "of", "marble", "is", "bigger", "than", "the", "20", "metres", "(", "66", "foot", ")", "Ramesses", "ii", "Abusimbel", "statue", "in", "Egypt", ".", "Ukwuoma", "Performed", "the", "ceremony", "shortly", "after", "a", "mass", "attended", "by", "the", "Bishop", "Emeritus", "of", "Orlu", "Diocese", ",", "Most", "Rev", ".", "Gregory", "Ochiagha", ",", "and", "more", "than", "100", "priests", "at", "St", ".", "Aloysius", "Parish", "Abajah", "compound", "on", "Friday", ".", "The", "News", "Agency", "of", "Nigeria", "(", "NAN", ")", "reports", "that", "Chief", "Obinna", "Onuoha", ",", "who", "donated", "the", "Jesus", "statue", "had", "constructed", "2", ",", "000", "seating", "capacity", "parish", "church", "at", "St", ".", "Aloysius", "in", "the", "year", "2012", ".", "NAN", "further", "reports", "that", "the", "unveiling", "of", "the", "statue", "was", "used", "to", "mark", "the", "wedding", "golden", "jubilee", "ceremony", "of", "the", "parents", "of", "Obinna", ",", "Chief", "Geoffrey", ",", "and", "Lolo", "Justina", "Onuoha", ".", "Ukwuoma", ",", "who", "described", "the", "statue", "as", "magnificent", ",", "commended", "the", "Onuoha", "family", "for", "the", "gift", "and", "their", "benevolence", "to", "the", "church", ".", "\"", "This", "statue", "is", "a", "great", "symbol", "of", "Christian", "faith", ",", "and", "I", "pray", "that", "for", "the", "Catholics", "that", "the", "statue", "will", "continue", "to", "constantly", "remind", "us", "of", "what", "Jesus", "Christ", "stands", "for", "us", ".", "\"", "For", "other", "passersby", ",", "looking", "at", "the", "statue", "will", "also", "bring", "them", "closer", "to", "Jesus", ",", "\"", "the", "Bishop", "said", ".", "Speaking", "on", "the", "golden", "jubilee", ",", "the", "cleric", "used", "the", "medium", "to", "remind", "marital", "couples", "on", "the", "need", "to", "see", "marriage", "as", "a", "vocation", "through", "which", "they", "could", "positively", "impact", "on", "the", "society", ".", "\"", "God", "did", "not", "call", "any", "of", "us", "clergy", "and", "religious", "to", "be", "fathers", "and", "mothers", ",", "but", "those", "called", "into", "this", "vocation", "must", "use", "it", "to", "reflect", "God", "'", "s", "peace", ",", "love", "and", "unity", ".", "Chief", "Obinna", "Onuoha", ",", "the", "Managing", "Director", "of", "Premier", "Petroleum", "Ltd", ".", ",", "and", "the", "donor", "of", "the", "statue", ",", "said", "that", "he", "constructed", "the", "statue", "to", "fulfill", "a", "vow", "he", "made", "to", "God", "in", "the", "year", "1997", ".", "\"", "Asking", "why", "I", "constructed", "this", "statue", "is", "like", "asking", "how", "do", "I", "came", "to", "this", "world", ",", "I", "am", "a", "Christian", "and", "a", "Catholic", "and", "Jesus", "statue", "represents", "my", "faith", ".", "\"", "I", "believe", "we", "are", "here", "on", "earth", "for", "different", "purposes", "and", "each", "person", "moves", "with", "his", "/", "her", "instincts", ",", "and", "I", "was", "motivated", "to", "do", "this", "to", "build", "up", "the", "faith", "of", "this", "community", ",", "\"", "he", "said", ".", "Onuoha", ",", "who", "did", "not", "mention", "the", "cost", "of", "the", "statue", ",", "added", ",", "\"", "it", "took", "about", "three", "years", "to", "construct", "and", "erect", "the", "Jesus", "De", "Saviour", "statue", "at", "Abajah", ".", "\""]}, "title": {"text": " Nigeria: Bishop Ukwuoma Unveils Tallest Jesus Statue in Africa - allAfrica.com ", "simple_tokens": ["nigeria", ":", "bishop", "ukwuoma", "unveils", "tallest", "jesus", "statue", "in", "africa", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Bishop", "Ukwuoma", "Unveils", "Tallest", "Jesus", "Statue", "in", "Africa", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:08.052440", "@etk_process_time": 0.5391349792480469, "@etk_start_time": "2018-06-07T17:34:07.513305"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Bishop Ukwuoma Unveils Tallest Jesus Statue in Africa - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Nigeria: Bishop Ukwuoma Unveils Tallest Jesus Statue in Africa\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n \n \n Photo:\n \n Premium Times\n \n \n
\n
\n The Catholic Church in Nigeria has unveiled a nine-metre tall statue of Jesus Christ carved from white marble, thought to be the biggest of its kind in Africa. Standing barefoot with arms outstretched, the \"Jesus de Greatest\" statue weighs 40 tonnes.\n
\n
\n

\n The Bishop of Orlu Catholic Diocese, Most Rev. Augustine Ukwuoma on Friday unveiled the African tallest statue of Jesus Christ weighing 8.5 metres (28 ft) at St. Aloysius Catholic Parish, Abajah, Imo.\n

\n

\n The statue made of marble is bigger than the 20 metres (66 foot) Ramesses ii Abusimbel statue in Egypt.\n

\n

\n Ukwuoma Performed the ceremony shortly after a mass attended by the Bishop Emeritus of Orlu Diocese, Most Rev. Gregory Ochiagha, and more than 100 priests at St. Aloysius Parish Abajah compound on Friday.\n

\n

\n The News Agency of Nigeria (NAN) reports that Chief Obinna Onuoha, who donated the Jesus statue had constructed 2, 000 seating capacity parish church at St. Aloysius in the year 2012.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n NAN further reports that the unveiling of the statue was used to mark the wedding golden jubilee ceremony of the parents of Obinna, Chief Geoffrey, and Lolo Justina Onuoha.\n

\n

\n Ukwuoma, who described the statue as magnificent, commended the Onuoha family for the gift and their benevolence to the church.\n

\n

\n \"This statue is a great symbol of Christian faith, and I pray that for the Catholics that the statue will continue to constantly remind us of what Jesus Christ stands for us.\n

\n
\n
\n
\n
\n

\n \"For other passersby, looking at the statue will also bring them closer to Jesus,\" the Bishop said.\n

\n

\n Speaking on the golden jubilee, the cleric used the medium to remind marital couples on the need to see marriage as a vocation through which they could positively impact on the society.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n \"God did not call any of us clergy and religious to be fathers and mothers, but those called into this vocation must use it to reflect God's peace, love and unity.\n

\n

\n Chief Obinna Onuoha, the Managing Director of Premier Petroleum Ltd., and the donor of the statue, said that he constructed the statue to fulfill a vow he made to God in the year 1997.\n

\n

\n \"Asking why I constructed this statue is like asking how do I came to this world, I am a Christian and a Catholic and Jesus statue represents my faith.\n

\n

\n \"I believe we are here on earth for different purposes and each person moves with his/her instincts, and I was motivated to do this to build up the faith of this community,\" he said.\n

\n

\n Onuoha, who did not mention the cost of the statue, added, \"it took about three years to construct and erect the Jesus De Saviour statue at Abajah.\"\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24", "document_id": "70BB40A8F7500CFFBE720B9EC4303ECE5124D062D0757AD6EC69747DBBCC8A24"} +{"url": "http://www.ce_news_article.org/2016/01/02/201601020124.html", "knowledge_graph": {"group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 26, "end": 27, "input": "tokens", "text": "ban on Hijab , the Muslim women ' s dressing symbol "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 201, "end": 202, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 38, "end": 39, "input": "tokens", "text": "ban on Hijab , the Muslim women ' s dressing symbol "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 213, "end": 214, "input": "tokens", "text": "security challenge in consultations with Muslim leaders with a view to "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 80, "end": 81, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 92, "end": 93, "input": "tokens", "text": "always respect the rights of Muslims to protect their modesty and "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "method": "rearrange_description"}], "key": "description", "value": "

By Mohammed Abubakar

Abuja \u2014 THE Presidency has denied insinuations and rumours that the President Muhammadu Buhari administration was considering a ban on Hijab, the Muslim women's dressing symbol of modesty.

Giving a clarification on Buhari's pronouncement during the Presidential Media Chat on Wednesday, his Senior Special Assistant on Media and Publicity, Garba Shehu, said the speculations were unfounded. He addded that the administration would always respect the rights of Muslims to protect their modesty and allow religious freedom.

Shehu, while admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, however said the President would not take any decision on the issue without due consultation with all the stakeholders.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" Shehu said.

He added that the increasing abuse of the Hijab by terrorists to perpetrate criminal activities and other atrocities is a reality, but that government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 330, "end": 331, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 358, "end": 359, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: No Ban On Hijab, Presidency Clarifies - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 44, "end": 48, "input": "tokens", "text": "Buhari ' s pronouncement during the Presidential Media Chat on Wednesday , his Senior "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Presidential Media Chat"}, {"source": {"segment": "content_relaxed", "context": {"start": 56, "end": 60, "input": "tokens", "text": "Buhari ' s pronouncement during the Presidential Media Chat on Wednesday , his Senior "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Presidential Media Chat"}], "key": "the presidential media chat", "value": "the Presidential Media Chat"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 116, "end": 117, "input": "tokens", "text": "which violates the teachings of Islam , however said the President "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}, {"source": {"segment": "content_relaxed", "context": {"start": 128, "end": 129, "input": "tokens", "text": "which violates the teachings of Islam , however said the President "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islam"}], "key": "islam", "value": "Islam"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 227, "end": 228, "input": "tokens", "text": "solution . Copyright 2016 The Guardian . All rights reserved . "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Guardian"}], "key": "guardian", "value": "Guardian"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 233, "end": 234, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 235, "end": 238, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 7, "end": 11, "input": "tokens", "text": "No Ban On Hijab , Presidency Clarifies - allAfrica . com "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Presidency Clarifies - allAfrica"}], "key": "presidency clarifies - allafrica", "value": "Presidency Clarifies - allAfrica"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 23, "end": 24, "input": "tokens", "text": "was considering a ban on Hijab , the Muslim women ' "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 35, "end": 36, "input": "tokens", "text": "was considering a ban on Hijab , the Muslim women ' "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "title", "context": {"start": 5, "end": 6, "input": "tokens", "text": "Nigeria : No Ban On Hijab , Presidency Clarifies - allAfrica "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : No Ban On Hijab "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 4, "input": "tokens", "text": "By Mohammed Abubakar Abuja \u2014 THE Presidency has denied "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mohammed Abubakar Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 13, "end": 16, "input": "tokens", "text": "Hijab , Presidency Clarifies By Mohammed Abubakar Abuja \u2014 THE Presidency has denied "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mohammed Abubakar Abuja"}], "key": "mohammed abubakar abuja", "value": "Mohammed Abubakar Abuja"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 15, "end": 17, "input": "tokens", "text": "and rumours that the President Muhammadu Buhari administration was considering a ban "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 27, "end": 29, "input": "tokens", "text": "and rumours that the President Muhammadu Buhari administration was considering a ban "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}], "key": "muhammadu buhari", "value": "Muhammadu Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 39, "end": 40, "input": "tokens", "text": ". Giving a clarification on Buhari ' s pronouncement during the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 51, "end": 52, "input": "tokens", "text": ". Giving a clarification on Buhari ' s pronouncement during the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Buhari"}], "key": "buhari", "value": "Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 60, "end": 62, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 72, "end": 74, "input": "tokens", "text": "on Media and Publicity , Garba Shehu , said the speculations were "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Garba Shehu"}], "key": "garba shehu", "value": "Garba Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 90, "end": 91, "input": "tokens", "text": "and allow religious freedom . Shehu , while admitting that the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_strict", "context": {"start": 165, "end": 166, "input": "tokens", "text": "by the constitution , \" Shehu said . He added that "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 102, "end": 103, "input": "tokens", "text": "and allow religious freedom . Shehu , while admitting that the "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}, {"source": {"segment": "content_relaxed", "context": {"start": 177, "end": 178, "input": "tokens", "text": "by the constitution , \" Shehu said . He added that "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Shehu"}], "key": "shehu", "value": "Shehu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 96, "end": 97, "input": "tokens", "text": ", while admitting that the Hijab was being abused by terrorists "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}, {"source": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": ", while admitting that the Hijab was being abused by terrorists "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Hijab"}], "key": "hijab", "value": "Hijab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 9, "input": "tokens", "text": "2 January 2016 Nigeria : No Ban On Hijab , Presidency Clarifies By Mohammed "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "No Ban On Hijab"}], "key": "no ban on hijab", "value": "No Ban On Hijab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 270, "end": 271, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}]}, "content_extraction": {"content_relaxed": {"text": "

2 January 2016

Nigeria: No Ban On Hijab, Presidency Clarifies

By Mohammed Abubakar

Abuja \u2014 THE Presidency has denied insinuations and rumours that the President Muhammadu Buhari administration was considering a ban on Hijab, the Muslim women's dressing symbol of modesty.

Giving a clarification on Buhari's pronouncement during the Presidential Media Chat on Wednesday, his Senior Special Assistant on Media and Publicity, Garba Shehu, said the speculations were unfounded. He addded that the administration would always respect the rights of Muslims to protect their modesty and allow religious freedom.

Shehu, while admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, however said the President would not take any decision on the issue without due consultation with all the stakeholders.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" Shehu said.

He added that the increasing abuse of the Hijab by terrorists to perpetrate criminal activities and other atrocities is a reality, but that government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

Copyright

2016 The Guardian. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["2", "january", "2016", "nigeria", ":", "no", "ban", "on", "hijab", ",", "presidency", "clarifies", "by", "mohammed", "abubakar", "abuja", "\u2014", "the", "presidency", "has", "denied", "insinuations", "and", "rumours", "that", "the", "president", "muhammadu", "buhari", "administration", "was", "considering", "a", "ban", "on", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "giving", "a", "clarification", "on", "buhari", "'", "s", "pronouncement", "during", "the", "presidential", "media", "chat", "on", "wednesday", ",", "his", "senior", "special", "assistant", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "the", "speculations", "were", "unfounded", ".", "he", "addded", "that", "the", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "shehu", ",", "while", "admitting", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "islam", ",", "however", "said", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "shehu", "said", ".", "he", "added", "that", "the", "increasing", "abuse", "of", "the", "hijab", "by", "terrorists", "to", "perpetrate", "criminal", "activities", "and", "other", "atrocities", "is", "a", "reality", ",", "but", "that", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "copyright", "2016", "the", "guardian", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u2014", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["2", "January", "2016", "Nigeria", ":", "No", "Ban", "On", "Hijab", ",", "Presidency", "Clarifies", "By", "Mohammed", "Abubakar", "Abuja", "\u2014", "THE", "Presidency", "has", "denied", "insinuations", "and", "rumours", "that", "the", "President", "Muhammadu", "Buhari", "administration", "was", "considering", "a", "ban", "on", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "Giving", "a", "clarification", "on", "Buhari", "'", "s", "pronouncement", "during", "the", "Presidential", "Media", "Chat", "on", "Wednesday", ",", "his", "Senior", "Special", "Assistant", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "the", "speculations", "were", "unfounded", ".", "He", "addded", "that", "the", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "Shehu", ",", "while", "admitting", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "Islam", ",", "however", "said", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "Shehu", "said", ".", "He", "added", "that", "the", "increasing", "abuse", "of", "the", "Hijab", "by", "terrorists", "to", "perpetrate", "criminal", "activities", "and", "other", "atrocities", "is", "a", "reality", ",", "but", "that", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", ".", "Copyright", "2016", "The", "Guardian", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u2014", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/02/201601020124.html"}, "content_strict": {"text": "

By Mohammed Abubakar

Abuja \u2014 THE Presidency has denied insinuations and rumours that the President Muhammadu Buhari administration was considering a ban on Hijab, the Muslim women's dressing symbol of modesty.

Giving a clarification on Buhari's pronouncement during the Presidential Media Chat on Wednesday, his Senior Special Assistant on Media and Publicity, Garba Shehu, said the speculations were unfounded. He addded that the administration would always respect the rights of Muslims to protect their modesty and allow religious freedom.

Shehu, while admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, however said the President would not take any decision on the issue without due consultation with all the stakeholders.

\"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" Shehu said.

He added that the increasing abuse of the Hijab by terrorists to perpetrate criminal activities and other atrocities is a reality, but that government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.

", "simple_tokens": ["by", "mohammed", "abubakar", "abuja", "\u2014", "the", "presidency", "has", "denied", "insinuations", "and", "rumours", "that", "the", "president", "muhammadu", "buhari", "administration", "was", "considering", "a", "ban", "on", "hijab", ",", "the", "muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "giving", "a", "clarification", "on", "buhari", "'", "s", "pronouncement", "during", "the", "presidential", "media", "chat", "on", "wednesday", ",", "his", "senior", "special", "assistant", "on", "media", "and", "publicity", ",", "garba", "shehu", ",", "said", "the", "speculations", "were", "unfounded", ".", "he", "addded", "that", "the", "administration", "would", "always", "respect", "the", "rights", "of", "muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "shehu", ",", "while", "admitting", "that", "the", "hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "islam", ",", "however", "said", "the", "president", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "shehu", "said", ".", "he", "added", "that", "the", "increasing", "abuse", "of", "the", "hijab", "by", "terrorists", "to", "perpetrate", "criminal", "activities", "and", "other", "atrocities", "is", "a", "reality", ",", "but", "that", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "."], "simple_tokens_original_case": ["By", "Mohammed", "Abubakar", "Abuja", "\u2014", "THE", "Presidency", "has", "denied", "insinuations", "and", "rumours", "that", "the", "President", "Muhammadu", "Buhari", "administration", "was", "considering", "a", "ban", "on", "Hijab", ",", "the", "Muslim", "women", "'", "s", "dressing", "symbol", "of", "modesty", ".", "Giving", "a", "clarification", "on", "Buhari", "'", "s", "pronouncement", "during", "the", "Presidential", "Media", "Chat", "on", "Wednesday", ",", "his", "Senior", "Special", "Assistant", "on", "Media", "and", "Publicity", ",", "Garba", "Shehu", ",", "said", "the", "speculations", "were", "unfounded", ".", "He", "addded", "that", "the", "administration", "would", "always", "respect", "the", "rights", "of", "Muslims", "to", "protect", "their", "modesty", "and", "allow", "religious", "freedom", ".", "Shehu", ",", "while", "admitting", "that", "the", "Hijab", "was", "being", "abused", "by", "terrorists", "to", "carry", "out", "suicide", "attacks", "on", "innocent", "people", ",", "which", "violates", "the", "teachings", "of", "Islam", ",", "however", "said", "the", "President", "would", "not", "take", "any", "decision", "on", "the", "issue", "without", "due", "consultation", "with", "all", "the", "stakeholders", ".", "\"", "Everything", "will", "be", "done", "to", "balance", "national", "security", "requirements", "with", "the", "rights", "and", "obligations", "of", "citizens", "under", "their", "religions", "as", "protected", "by", "the", "constitution", ",", "\"", "Shehu", "said", ".", "He", "added", "that", "the", "increasing", "abuse", "of", "the", "Hijab", "by", "terrorists", "to", "perpetrate", "criminal", "activities", "and", "other", "atrocities", "is", "a", "reality", ",", "but", "that", "government", "would", "address", "the", "security", "challenge", "in", "consultations", "with", "Muslim", "leaders", "with", "a", "view", "to", "finding", "a", "workable", "solution", "."]}, "title": {"text": " Nigeria: No Ban On Hijab, Presidency Clarifies - allAfrica.com ", "simple_tokens": ["nigeria", ":", "no", "ban", "on", "hijab", ",", "presidency", "clarifies", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "No", "Ban", "On", "Hijab", ",", "Presidency", "Clarifies", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:08.250831", "@etk_process_time": 0.19441699981689453, "@etk_start_time": "2018-06-07T17:34:08.056414"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: No Ban On Hijab, Presidency Clarifies - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Nigeria: No Ban On Hijab, Presidency Clarifies\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Mohammed Abubakar\n \n

\n Abuja — THE Presidency has denied insinuations and rumours that the President Muhammadu Buhari administration was considering a ban on Hijab, the Muslim women's dressing symbol of modesty.\n

\n

\n Giving a clarification on Buhari's pronouncement during the Presidential Media Chat on Wednesday, his Senior Special Assistant on Media and Publicity, Garba Shehu, said the speculations were unfounded. He addded that the administration would always respect the rights of Muslims to protect their modesty and allow religious freedom.\n

\n

\n Shehu, while admitting that the Hijab was being abused by terrorists to carry out suicide attacks on innocent people, which violates the teachings of Islam, however said the President would not take any decision on the issue without due consultation with all the stakeholders.\n

\n
\n
\n

\n \"Everything will be done to balance national security requirements with the rights and obligations of citizens under their religions as protected by the constitution,\" Shehu said.\n

\n

\n He added that the increasing abuse of the Hijab by terrorists to perpetrate criminal activities and other atrocities is a reality, but that government would address the security challenge in consultations with Muslim leaders with a view to finding a workable solution.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 The Guardian. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27", "document_id": "6B5E7CB979821598EC1CB8F5935CF8FAD2EC336AA50D70C68FDEAA5BA7AECE27"} +{"url": "http://www.ce_news_article.org/2016/01/03/201601030077.html", "knowledge_graph": {"product": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 258, "end": 259, "input": "tokens", "text": "a strict version of the Sharia . The organization has carried "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sharia"}, {"source": {"segment": "content_relaxed", "context": {"start": 277, "end": 278, "input": "tokens", "text": "a strict version of the Sharia . The organization has carried "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sharia"}], "key": "sharia", "value": "Sharia"}], "person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 4, "end": 7, "input": "tokens", "text": "Somalian terror group , al - Shabab , has used clips of "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Shabab"}, {"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 8, "input": "tokens", "text": "2 January 2016 Africa : Al - Shabab Uses Trump ' s Anti "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Al - Shabab"}, {"source": {"segment": "content_relaxed", "context": {"start": 23, "end": 26, "input": "tokens", "text": "Supporters Somalian terror group , al - Shabab , has used clips of "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Shabab"}, {"source": {"segment": "title", "context": {"start": 2, "end": 5, "input": "tokens", "text": "Africa : Al - Shabab Uses Trump ' s Anti "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Al - Shabab"}], "key": "al - shabab", "value": "al - Shabab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 15, "end": 17, "input": "tokens", "text": "clips of US presidential candidate Donald Trump in its propaganda film . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Donald Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 34, "end": 36, "input": "tokens", "text": "clips of US presidential candidate Donald Trump in its propaganda film . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Donald Trump"}], "key": "donald trump", "value": "Donald Trump"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 22, "end": 23, "input": "tokens", "text": "in its propaganda film . Trump courted controversy in December when "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_strict", "context": {"start": 67, "end": 68, "input": "tokens", "text": "terrorists used a clip from Trump ' s December speech , "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_strict", "context": {"start": 97, "end": 98, "input": "tokens", "text": ". Many American politicians condemned Trump ' s statement and said "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_strict", "context": {"start": 125, "end": 126, "input": "tokens", "text": "have done exactly that . Trump ' s clip in the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 9, "end": 10, "input": "tokens", "text": ": Al - Shabab Uses Trump ' s Anti - Muslim "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 41, "end": 42, "input": "tokens", "text": "in its propaganda film . Trump courted controversy in December when "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 86, "end": 87, "input": "tokens", "text": "terrorists used a clip from Trump ' s December speech , "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 116, "end": 117, "input": "tokens", "text": ". Many American politicians condemned Trump ' s statement and said "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "content_relaxed", "context": {"start": 144, "end": 145, "input": "tokens", "text": "have done exactly that . Trump ' s clip in the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}, {"source": {"segment": "title", "context": {"start": 6, "end": 7, "input": "tokens", "text": ": Al - Shabab Uses Trump ' s Anti - Muslim "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trump"}], "key": "trump", "value": "Trump"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 51, "end": 54, "input": "tokens", "text": "distributed on Twitter by the al - Kataib Media Foundation , an Islamist "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Kataib"}, {"source": {"segment": "content_relaxed", "context": {"start": 70, "end": 73, "input": "tokens", "text": "distributed on Twitter by the al - Kataib Media Foundation , an Islamist "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Kataib"}], "key": "al - kataib", "value": "al - Kataib"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 144, "end": 148, "input": "tokens", "text": "between clips of militant leader Anwar al - Awlaki saying that Muslims would face "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Anwar al - Awlaki"}, {"source": {"segment": "content_relaxed", "context": {"start": 163, "end": 167, "input": "tokens", "text": "between clips of militant leader Anwar al - Awlaki saying that Muslims would face "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Anwar al - Awlaki"}], "key": "anwar al - awlaki", "value": "Anwar al - Awlaki"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 218, "end": 220, "input": "tokens", "text": "the African - American activist Malcolm X , who was killed in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Malcolm X"}, {"source": {"segment": "content_relaxed", "context": {"start": 237, "end": 239, "input": "tokens", "text": "the African - American activist Malcolm X , who was killed in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Malcolm X"}], "key": "malcolm x", "value": "Malcolm X"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 345, "end": 346, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 14, "end": 18, "input": "tokens", "text": "Anti - Muslim Tirade to Woo Supporters - allAfrica . com "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Woo Supporters - allAfrica"}], "key": "woo supporters - allafrica", "value": "Woo Supporters - allAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "method": "rearrange_description"}], "key": "description", "value": "

Somalian terror group, al-Shabab, has used clips of US presidential candidate Donald Trump in its propaganda film. Trump courted controversy in December when he demanded that all Muslims be barred from entering the US.

The al-Shabab video was distributed on Twitter by the al-Kataib Media Foundation, an Islamist organization.

The terrorists used a clip from Trump's December speech, where he made calls for the United States to bar Muslims from entering the country as his supporters cheered. Many American politicians condemned Trump's statement and said his views could be used as propaganda by militant organizations.

The al-Shabab seemed to have done exactly that. Trump's clip in the 51-minute-long film was sandwiched between clips of militant leader Anwar al-Awlaki saying that Muslims would face a choice between leaving for Islamic countries or staying at home to fight the West, SITE monitoring reported. Al-Awlaki was killed in a drone strike in Yemen in 2011.

The video, confirmed to be genuine by experts, has footage of the US police using force against black people as well as speeches of the African-American activist Malcolm X, who was killed in 1965.

The al-Shabab, an affiliate of the al-Qaida, seeks to overthrow Somalia's government and impose an Islamic regime following a strict version of the Sharia. The organization has carried out many attacks in Kenya and Ethiopia.

mg/se (Reuters, dpa)

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 167, "end": 168, "input": "tokens", "text": "at home to fight the West , SITE monitoring reported . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "West"}, {"source": {"segment": "content_relaxed", "context": {"start": 186, "end": 187, "input": "tokens", "text": "at home to fight the West , SITE monitoring reported . "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "West"}], "key": "west", "value": "West"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 405, "end": 406, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 433, "end": 434, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "method": "rearrange_title"}], "key": "title", "value": " Africa: Al-Shabab Uses Trump's Anti-Muslim Tirade to Woo Supporters - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 173, "end": 176, "input": "tokens", "text": ", SITE monitoring reported . Al - Awlaki was killed in a drone "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Al - Awlaki"}, {"source": {"segment": "content_relaxed", "context": {"start": 192, "end": 195, "input": "tokens", "text": ", SITE monitoring reported . Al - Awlaki was killed in a drone "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Al - Awlaki"}], "key": "al - awlaki", "value": "Al - Awlaki"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 236, "end": 239, "input": "tokens", "text": ", an affiliate of the al - Qaida , seeks to overthrow Somalia "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Qaida"}, {"source": {"segment": "content_relaxed", "context": {"start": 255, "end": 258, "input": "tokens", "text": ", an affiliate of the al - Qaida , seeks to overthrow Somalia "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al - Qaida"}], "key": "al - qaida", "value": "al - Qaida"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 276, "end": 277, "input": "tokens", "text": ". mg / se ( Reuters , dpa ) "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Reuters"}, {"source": {"segment": "content_relaxed", "context": {"start": 295, "end": 296, "input": "tokens", "text": ". mg / se ( Reuters , dpa ) Copyright 2016 "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Reuters"}], "key": "reuters", "value": "Reuters"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 12, "end": 16, "input": "tokens", "text": "Shabab Uses Trump ' s Anti - Muslim Tirade to Woo Supporters Somalian terror "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Anti - Muslim Tirade"}, {"source": {"segment": "title", "context": {"start": 9, "end": 13, "input": "tokens", "text": "Shabab Uses Trump ' s Anti - Muslim Tirade to Woo Supporters - allAfrica "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Anti - Muslim Tirade"}], "key": "anti - muslim tirade", "value": "Anti - Muslim Tirade"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 17, "end": 20, "input": "tokens", "text": "Anti - Muslim Tirade to Woo Supporters Somalian terror group , al - "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Woo Supporters Somalian"}], "key": "woo supporters somalian", "value": "Woo Supporters Somalian"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 308, "end": 309, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 310, "end": 313, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 12, "end": 13, "input": "tokens", "text": ", has used clips of US presidential candidate Donald Trump in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_strict", "context": {"start": 38, "end": 39, "input": "tokens", "text": "be barred from entering the US . The al - Shabab "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_strict", "context": {"start": 201, "end": 202, "input": "tokens", "text": ", has footage of the US police using force against black "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_relaxed", "context": {"start": 31, "end": 32, "input": "tokens", "text": ", has used clips of US presidential candidate Donald Trump in "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_relaxed", "context": {"start": 57, "end": 58, "input": "tokens", "text": "be barred from entering the US . The al - Shabab "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_relaxed", "context": {"start": 220, "end": 221, "input": "tokens", "text": ", has footage of the US police using force against black "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}], "key": "us", "value": "US"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 78, "end": 81, "input": "tokens", "text": "where he made calls for the United States to bar Muslims from entering "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 97, "end": 100, "input": "tokens", "text": "where he made calls for the United States to bar Muslims from entering "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}], "key": "the united states", "value": "the United States"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 183, "end": 184, "input": "tokens", "text": "in a drone strike in Yemen in 2011 . The video "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yemen"}, {"source": {"segment": "content_relaxed", "context": {"start": 202, "end": 203, "input": "tokens", "text": "in a drone strike in Yemen in 2011 . The video "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yemen"}], "key": "yemen", "value": "Yemen"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 243, "end": 244, "input": "tokens", "text": "Qaida , seeks to overthrow Somalia ' s government and impose "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}, {"source": {"segment": "content_relaxed", "context": {"start": 262, "end": 263, "input": "tokens", "text": "Qaida , seeks to overthrow Somalia ' s government and impose "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}], "key": "somalia", "value": "Somalia"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 268, "end": 269, "input": "tokens", "text": "carried out many attacks in Kenya and Ethiopia . mg / "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kenya"}, {"source": {"segment": "content_relaxed", "context": {"start": 287, "end": 288, "input": "tokens", "text": "carried out many attacks in Kenya and Ethiopia . mg / "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kenya"}], "key": "kenya", "value": "Kenya"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 270, "end": 271, "input": "tokens", "text": "many attacks in Kenya and Ethiopia . mg / se ( "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ethiopia"}, {"source": {"segment": "content_relaxed", "context": {"start": 289, "end": 290, "input": "tokens", "text": "many attacks in Kenya and Ethiopia . mg / se ( "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ethiopia"}], "key": "ethiopia", "value": "Ethiopia"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 32, "end": 33, "input": "tokens", "text": "when he demanded that all Muslims be barred from entering the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_strict", "context": {"start": 83, "end": 84, "input": "tokens", "text": "the United States to bar Muslims from entering the country as "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_strict", "context": {"start": 150, "end": 151, "input": "tokens", "text": "al - Awlaki saying that Muslims would face a choice between "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 51, "end": 52, "input": "tokens", "text": "when he demanded that all Muslims be barred from entering the "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 102, "end": 103, "input": "tokens", "text": "the United States to bar Muslims from entering the country as "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}, {"source": {"segment": "content_relaxed", "context": {"start": 169, "end": 170, "input": "tokens", "text": "al - Awlaki saying that Muslims would face a choice between "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslims"}], "key": "muslims", "value": "Muslims"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 58, "end": 59, "input": "tokens", "text": "Kataib Media Foundation , an Islamist organization . The terrorists used "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}, {"source": {"segment": "content_relaxed", "context": {"start": 77, "end": 78, "input": "tokens", "text": "Kataib Media Foundation , an Islamist organization . The terrorists used "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamist"}], "key": "islamist", "value": "Islamist"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 93, "end": 95, "input": "tokens", "text": "as his supporters cheered . Many American politicians condemned Trump ' s "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Many American"}, {"source": {"segment": "content_relaxed", "context": {"start": 112, "end": 114, "input": "tokens", "text": "as his supporters cheered . Many American politicians condemned Trump ' s "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Many American"}], "key": "many american", "value": "Many American"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 158, "end": 159, "input": "tokens", "text": "a choice between leaving for Islamic countries or staying at home "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamic"}, {"source": {"segment": "content_strict", "context": {"start": 250, "end": 251, "input": "tokens", "text": "s government and impose an Islamic regime following a strict version "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamic"}, {"source": {"segment": "content_relaxed", "context": {"start": 177, "end": 178, "input": "tokens", "text": "a choice between leaving for Islamic countries or staying at home "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamic"}, {"source": {"segment": "content_relaxed", "context": {"start": 269, "end": 270, "input": "tokens", "text": "s government and impose an Islamic regime following a strict version "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Islamic"}], "key": "islamic", "value": "Islamic"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 214, "end": 215, "input": "tokens", "text": "well as speeches of the African - American activist Malcolm X "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 233, "end": 234, "input": "tokens", "text": "well as speeches of the African - American activist Malcolm X "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}], "key": "african", "value": "African"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 216, "end": 217, "input": "tokens", "text": "speeches of the African - American activist Malcolm X , who "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_relaxed", "context": {"start": 235, "end": 236, "input": "tokens", "text": "speeches of the African - American activist Malcolm X , who "}, "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}], "key": "american", "value": "American"}]}, "content_extraction": {"content_relaxed": {"text": "

2 January 2016

Africa: Al-Shabab Uses Trump's Anti-Muslim Tirade to Woo Supporters

Somalian terror group, al-Shabab, has used clips of US presidential candidate Donald Trump in its propaganda film. Trump courted controversy in December when he demanded that all Muslims be barred from entering the US.

The al-Shabab video was distributed on Twitter by the al-Kataib Media Foundation, an Islamist organization.

The terrorists used a clip from Trump's December speech, where he made calls for the United States to bar Muslims from entering the country as his supporters cheered. Many American politicians condemned Trump's statement and said his views could be used as propaganda by militant organizations.

The al-Shabab seemed to have done exactly that. Trump's clip in the 51-minute-long film was sandwiched between clips of militant leader Anwar al-Awlaki saying that Muslims would face a choice between leaving for Islamic countries or staying at home to fight the West, SITE monitoring reported. Al-Awlaki was killed in a drone strike in Yemen in 2011.

The video, confirmed to be genuine by experts, has footage of the US police using force against black people as well as speeches of the African-American activist Malcolm X, who was killed in 1965.

The al-Shabab, an affiliate of the al-Qaida, seeks to overthrow Somalia's government and impose an Islamic regime following a strict version of the Sharia. The organization has carried out many attacks in Kenya and Ethiopia.

mg/se (Reuters, dpa)

Copyright

2016 Deutsche Welle. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["2", "january", "2016", "africa", ":", "al", "-", "shabab", "uses", "trump", "'", "s", "anti", "-", "muslim", "tirade", "to", "woo", "supporters", "somalian", "terror", "group", ",", "al", "-", "shabab", ",", "has", "used", "clips", "of", "us", "presidential", "candidate", "donald", "trump", "in", "its", "propaganda", "film", ".", "trump", "courted", "controversy", "in", "december", "when", "he", "demanded", "that", "all", "muslims", "be", "barred", "from", "entering", "the", "us", ".", "the", "al", "-", "shabab", "video", "was", "distributed", "on", "twitter", "by", "the", "al", "-", "kataib", "media", "foundation", ",", "an", "islamist", "organization", ".", "the", "terrorists", "used", "a", "clip", "from", "trump", "'", "s", "december", "speech", ",", "where", "he", "made", "calls", "for", "the", "united", "states", "to", "bar", "muslims", "from", "entering", "the", "country", "as", "his", "supporters", "cheered", ".", "many", "american", "politicians", "condemned", "trump", "'", "s", "statement", "and", "said", "his", "views", "could", "be", "used", "as", "propaganda", "by", "militant", "organizations", ".", "the", "al", "-", "shabab", "seemed", "to", "have", "done", "exactly", "that", ".", "trump", "'", "s", "clip", "in", "the", "51", "-", "minute", "-", "long", "film", "was", "sandwiched", "between", "clips", "of", "militant", "leader", "anwar", "al", "-", "awlaki", "saying", "that", "muslims", "would", "face", "a", "choice", "between", "leaving", "for", "islamic", "countries", "or", "staying", "at", "home", "to", "fight", "the", "west", ",", "site", "monitoring", "reported", ".", "al", "-", "awlaki", "was", "killed", "in", "a", "drone", "strike", "in", "yemen", "in", "2011", ".", "the", "video", ",", "confirmed", "to", "be", "genuine", "by", "experts", ",", "has", "footage", "of", "the", "us", "police", "using", "force", "against", "black", "people", "as", "well", "as", "speeches", "of", "the", "african", "-", "american", "activist", "malcolm", "x", ",", "who", "was", "killed", "in", "1965", ".", "the", "al", "-", "shabab", ",", "an", "affiliate", "of", "the", "al", "-", "qaida", ",", "seeks", "to", "overthrow", "somalia", "'", "s", "government", "and", "impose", "an", "islamic", "regime", "following", "a", "strict", "version", "of", "the", "sharia", ".", "the", "organization", "has", "carried", "out", "many", "attacks", "in", "kenya", "and", "ethiopia", ".", "mg", "/", "se", "(", "reuters", ",", "dpa", ")", "copyright", "2016", "deutsche", "welle", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["2", "January", "2016", "Africa", ":", "Al", "-", "Shabab", "Uses", "Trump", "'", "s", "Anti", "-", "Muslim", "Tirade", "to", "Woo", "Supporters", "Somalian", "terror", "group", ",", "al", "-", "Shabab", ",", "has", "used", "clips", "of", "US", "presidential", "candidate", "Donald", "Trump", "in", "its", "propaganda", "film", ".", "Trump", "courted", "controversy", "in", "December", "when", "he", "demanded", "that", "all", "Muslims", "be", "barred", "from", "entering", "the", "US", ".", "The", "al", "-", "Shabab", "video", "was", "distributed", "on", "Twitter", "by", "the", "al", "-", "Kataib", "Media", "Foundation", ",", "an", "Islamist", "organization", ".", "The", "terrorists", "used", "a", "clip", "from", "Trump", "'", "s", "December", "speech", ",", "where", "he", "made", "calls", "for", "the", "United", "States", "to", "bar", "Muslims", "from", "entering", "the", "country", "as", "his", "supporters", "cheered", ".", "Many", "American", "politicians", "condemned", "Trump", "'", "s", "statement", "and", "said", "his", "views", "could", "be", "used", "as", "propaganda", "by", "militant", "organizations", ".", "The", "al", "-", "Shabab", "seemed", "to", "have", "done", "exactly", "that", ".", "Trump", "'", "s", "clip", "in", "the", "51", "-", "minute", "-", "long", "film", "was", "sandwiched", "between", "clips", "of", "militant", "leader", "Anwar", "al", "-", "Awlaki", "saying", "that", "Muslims", "would", "face", "a", "choice", "between", "leaving", "for", "Islamic", "countries", "or", "staying", "at", "home", "to", "fight", "the", "West", ",", "SITE", "monitoring", "reported", ".", "Al", "-", "Awlaki", "was", "killed", "in", "a", "drone", "strike", "in", "Yemen", "in", "2011", ".", "The", "video", ",", "confirmed", "to", "be", "genuine", "by", "experts", ",", "has", "footage", "of", "the", "US", "police", "using", "force", "against", "black", "people", "as", "well", "as", "speeches", "of", "the", "African", "-", "American", "activist", "Malcolm", "X", ",", "who", "was", "killed", "in", "1965", ".", "The", "al", "-", "Shabab", ",", "an", "affiliate", "of", "the", "al", "-", "Qaida", ",", "seeks", "to", "overthrow", "Somalia", "'", "s", "government", "and", "impose", "an", "Islamic", "regime", "following", "a", "strict", "version", "of", "the", "Sharia", ".", "The", "organization", "has", "carried", "out", "many", "attacks", "in", "Kenya", "and", "Ethiopia", ".", "mg", "/", "se", "(", "Reuters", ",", "dpa", ")", "Copyright", "2016", "Deutsche", "Welle", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/03/201601030077.html"}, "content_strict": {"text": "

Somalian terror group, al-Shabab, has used clips of US presidential candidate Donald Trump in its propaganda film. Trump courted controversy in December when he demanded that all Muslims be barred from entering the US.

The al-Shabab video was distributed on Twitter by the al-Kataib Media Foundation, an Islamist organization.

The terrorists used a clip from Trump's December speech, where he made calls for the United States to bar Muslims from entering the country as his supporters cheered. Many American politicians condemned Trump's statement and said his views could be used as propaganda by militant organizations.

The al-Shabab seemed to have done exactly that. Trump's clip in the 51-minute-long film was sandwiched between clips of militant leader Anwar al-Awlaki saying that Muslims would face a choice between leaving for Islamic countries or staying at home to fight the West, SITE monitoring reported. Al-Awlaki was killed in a drone strike in Yemen in 2011.

The video, confirmed to be genuine by experts, has footage of the US police using force against black people as well as speeches of the African-American activist Malcolm X, who was killed in 1965.

The al-Shabab, an affiliate of the al-Qaida, seeks to overthrow Somalia's government and impose an Islamic regime following a strict version of the Sharia. The organization has carried out many attacks in Kenya and Ethiopia.

mg/se (Reuters, dpa)

", "simple_tokens": ["somalian", "terror", "group", ",", "al", "-", "shabab", ",", "has", "used", "clips", "of", "us", "presidential", "candidate", "donald", "trump", "in", "its", "propaganda", "film", ".", "trump", "courted", "controversy", "in", "december", "when", "he", "demanded", "that", "all", "muslims", "be", "barred", "from", "entering", "the", "us", ".", "the", "al", "-", "shabab", "video", "was", "distributed", "on", "twitter", "by", "the", "al", "-", "kataib", "media", "foundation", ",", "an", "islamist", "organization", ".", "the", "terrorists", "used", "a", "clip", "from", "trump", "'", "s", "december", "speech", ",", "where", "he", "made", "calls", "for", "the", "united", "states", "to", "bar", "muslims", "from", "entering", "the", "country", "as", "his", "supporters", "cheered", ".", "many", "american", "politicians", "condemned", "trump", "'", "s", "statement", "and", "said", "his", "views", "could", "be", "used", "as", "propaganda", "by", "militant", "organizations", ".", "the", "al", "-", "shabab", "seemed", "to", "have", "done", "exactly", "that", ".", "trump", "'", "s", "clip", "in", "the", "51", "-", "minute", "-", "long", "film", "was", "sandwiched", "between", "clips", "of", "militant", "leader", "anwar", "al", "-", "awlaki", "saying", "that", "muslims", "would", "face", "a", "choice", "between", "leaving", "for", "islamic", "countries", "or", "staying", "at", "home", "to", "fight", "the", "west", ",", "site", "monitoring", "reported", ".", "al", "-", "awlaki", "was", "killed", "in", "a", "drone", "strike", "in", "yemen", "in", "2011", ".", "the", "video", ",", "confirmed", "to", "be", "genuine", "by", "experts", ",", "has", "footage", "of", "the", "us", "police", "using", "force", "against", "black", "people", "as", "well", "as", "speeches", "of", "the", "african", "-", "american", "activist", "malcolm", "x", ",", "who", "was", "killed", "in", "1965", ".", "the", "al", "-", "shabab", ",", "an", "affiliate", "of", "the", "al", "-", "qaida", ",", "seeks", "to", "overthrow", "somalia", "'", "s", "government", "and", "impose", "an", "islamic", "regime", "following", "a", "strict", "version", "of", "the", "sharia", ".", "the", "organization", "has", "carried", "out", "many", "attacks", "in", "kenya", "and", "ethiopia", ".", "mg", "/", "se", "(", "reuters", ",", "dpa", ")"], "simple_tokens_original_case": ["Somalian", "terror", "group", ",", "al", "-", "Shabab", ",", "has", "used", "clips", "of", "US", "presidential", "candidate", "Donald", "Trump", "in", "its", "propaganda", "film", ".", "Trump", "courted", "controversy", "in", "December", "when", "he", "demanded", "that", "all", "Muslims", "be", "barred", "from", "entering", "the", "US", ".", "The", "al", "-", "Shabab", "video", "was", "distributed", "on", "Twitter", "by", "the", "al", "-", "Kataib", "Media", "Foundation", ",", "an", "Islamist", "organization", ".", "The", "terrorists", "used", "a", "clip", "from", "Trump", "'", "s", "December", "speech", ",", "where", "he", "made", "calls", "for", "the", "United", "States", "to", "bar", "Muslims", "from", "entering", "the", "country", "as", "his", "supporters", "cheered", ".", "Many", "American", "politicians", "condemned", "Trump", "'", "s", "statement", "and", "said", "his", "views", "could", "be", "used", "as", "propaganda", "by", "militant", "organizations", ".", "The", "al", "-", "Shabab", "seemed", "to", "have", "done", "exactly", "that", ".", "Trump", "'", "s", "clip", "in", "the", "51", "-", "minute", "-", "long", "film", "was", "sandwiched", "between", "clips", "of", "militant", "leader", "Anwar", "al", "-", "Awlaki", "saying", "that", "Muslims", "would", "face", "a", "choice", "between", "leaving", "for", "Islamic", "countries", "or", "staying", "at", "home", "to", "fight", "the", "West", ",", "SITE", "monitoring", "reported", ".", "Al", "-", "Awlaki", "was", "killed", "in", "a", "drone", "strike", "in", "Yemen", "in", "2011", ".", "The", "video", ",", "confirmed", "to", "be", "genuine", "by", "experts", ",", "has", "footage", "of", "the", "US", "police", "using", "force", "against", "black", "people", "as", "well", "as", "speeches", "of", "the", "African", "-", "American", "activist", "Malcolm", "X", ",", "who", "was", "killed", "in", "1965", ".", "The", "al", "-", "Shabab", ",", "an", "affiliate", "of", "the", "al", "-", "Qaida", ",", "seeks", "to", "overthrow", "Somalia", "'", "s", "government", "and", "impose", "an", "Islamic", "regime", "following", "a", "strict", "version", "of", "the", "Sharia", ".", "The", "organization", "has", "carried", "out", "many", "attacks", "in", "Kenya", "and", "Ethiopia", ".", "mg", "/", "se", "(", "Reuters", ",", "dpa", ")"]}, "title": {"text": " Africa: Al-Shabab Uses Trump's Anti-Muslim Tirade to Woo Supporters - allAfrica.com ", "simple_tokens": ["africa", ":", "al", "-", "shabab", "uses", "trump", "'", "s", "anti", "-", "muslim", "tirade", "to", "woo", "supporters", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Africa", ":", "Al", "-", "Shabab", "Uses", "Trump", "'", "s", "Anti", "-", "Muslim", "Tirade", "to", "Woo", "Supporters", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:08.635666", "@etk_process_time": 0.3834199905395508, "@etk_start_time": "2018-06-07T17:34:08.252246"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Africa: Al-Shabab Uses Trump's Anti-Muslim Tirade to Woo Supporters - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 2 January 2016\n
\n \n \n

\n Africa: Al-Shabab Uses Trump's Anti-Muslim Tirade to Woo Supporters\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n

\n \n Somalian terror group, al-Shabab, has used clips of US presidential candidate Donald Trump in its propaganda film. Trump courted controversy in December when he demanded that all Muslims be barred from entering the US.\n \n

\n

\n The al-Shabab video was distributed on Twitter by the al-Kataib Media Foundation, an Islamist organization.\n

\n

\n The terrorists used a clip from Trump's December speech, where he made calls for the United States to bar Muslims from entering the country as his supporters cheered. Many American politicians condemned Trump's statement and said his views could be used as propaganda by militant organizations.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n The al-Shabab seemed to have done exactly that. Trump's clip in the 51-minute-long film was sandwiched between clips of militant leader Anwar al-Awlaki saying that Muslims would face a choice between leaving for Islamic countries or staying at home to fight the West, SITE monitoring reported. Al-Awlaki was killed in a drone strike in Yemen in 2011.\n

\n
\n
\n
\n
\n

\n The video, confirmed to be genuine by experts, has footage of the US police using force against black people as well as speeches of the African-American activist Malcolm X, who was killed in 1965.\n

\n

\n The al-Shabab, an affiliate of the al-Qaida, seeks to overthrow Somalia's government and impose an Islamic regime following a strict version of the Sharia. The organization has carried out many attacks in Kenya and Ethiopia.\n

\n

\n \n mg/se (Reuters, dpa)\n \n

\n
\n
\n
\n \n
\n
\n
\n
\n
\n \n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Deutsche Welle. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B", "document_id": "6CED6C87515B6E193B4F1BE80D14DE14235F5BFD2DFEABD80FEA9CA9CD67B34B"} +{"url": "http://www.ce_news_article.org/2016/01/03/201601030144.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 0, "end": 2, "input": "tokens", "text": " Mikel Obi posted a fine display on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel Obi"}], "key": "mikel obi", "value": "Mikel Obi"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 29, "end": 31, "input": "tokens", "text": "Park . Chelsea ' s Obi Mikel , Willian , Zouma and "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obi Mikel"}, {"source": {"segment": "content_relaxed", "context": {"start": 45, "end": 47, "input": "tokens", "text": "Park . Chelsea ' s Obi Mikel , Willian , Zouma and "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obi Mikel"}], "key": "obi mikel", "value": "Obi Mikel"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 48, "end": 50, "input": "tokens", "text": "the match . Photograph : Dylan Martinez / Reuters The win was "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dylan Martinez"}, {"source": {"segment": "content_relaxed", "context": {"start": 64, "end": 66, "input": "tokens", "text": "the match . Photograph : Dylan Martinez / Reuters The win was "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dylan Martinez"}], "key": "dylan martinez", "value": "Dylan Martinez"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 55, "end": 57, "input": "tokens", "text": "/ Reuters The win was Guus Hiddink ' s first of his "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Guus Hiddink"}, {"source": {"segment": "content_relaxed", "context": {"start": 71, "end": 73, "input": "tokens", "text": "/ Reuters The win was Guus Hiddink ' s first of his "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Guus Hiddink"}], "key": "guus hiddink", "value": "Guus Hiddink"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 86, "end": 87, "input": "tokens", "text": "the move that led to Oscar ' s opening goal in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar"}, {"source": {"segment": "content_strict", "context": {"start": 228, "end": 229, "input": "tokens", "text": "cut the ball back for Oscar to slide a simple finish "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar"}, {"source": {"segment": "content_relaxed", "context": {"start": 102, "end": 103, "input": "tokens", "text": "the move that led to Oscar ' s opening goal in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar"}, {"source": {"segment": "content_relaxed", "context": {"start": 244, "end": 245, "input": "tokens", "text": "cut the ball back for Oscar to slide a simple finish "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar"}], "key": "oscar", "value": "Oscar"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 96, "end": 97, "input": "tokens", "text": "in the first half . Mikel had 96 % pass accuracy "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel"}, {"source": {"segment": "content_relaxed", "context": {"start": 112, "end": 113, "input": "tokens", "text": "in the first half . Mikel had 96 % pass accuracy "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel"}], "key": "mikel", "value": "Mikel"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 147, "end": 149, "input": "tokens", "text": "from Oscar , Willian and Diego Costa ensured that they got 2016 "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Diego Costa"}, {"source": {"segment": "content_strict", "context": {"start": 213, "end": 215, "input": "tokens", "text": "Fabregas ' s pass sent Diego Costa through down the right channel "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Diego Costa"}, {"source": {"segment": "content_relaxed", "context": {"start": 163, "end": 165, "input": "tokens", "text": "from Oscar , Willian and Diego Costa ensured that they got 2016 "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Diego Costa"}, {"source": {"segment": "content_relaxed", "context": {"start": 229, "end": 231, "input": "tokens", "text": "Fabregas ' s pass sent Diego Costa through down the right channel "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Diego Costa"}], "key": "diego costa", "value": "Diego Costa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 163, "end": 165, "input": "tokens", "text": "start in the first Premier League London derby of the year . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "League London"}, {"source": {"segment": "content_relaxed", "context": {"start": 179, "end": 181, "input": "tokens", "text": "start in the first Premier League London derby of the year . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "League London"}], "key": "league london", "value": "League London"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 170, "end": 172, "input": "tokens", "text": "derby of the year . Eden Hazard was forced off early with "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Eden Hazard"}, {"source": {"segment": "content_relaxed", "context": {"start": 186, "end": 188, "input": "tokens", "text": "derby of the year . Eden Hazard was forced off early with "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Eden Hazard"}], "key": "eden hazard", "value": "Eden Hazard"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 207, "end": 209, "input": "tokens", "text": "mark , however , as Cesc Fabregas ' s pass sent Diego "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cesc Fabregas"}, {"source": {"segment": "content_relaxed", "context": {"start": 223, "end": 225, "input": "tokens", "text": "mark , however , as Cesc Fabregas ' s pass sent Diego "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cesc Fabregas"}], "key": "cesc fabregas", "value": "Cesc Fabregas"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 7, "input": "tokens", "text": "3 January 2016 Nigeria : Mikel Shines As Chelsea Beat Palace to "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel Shines"}, {"source": {"segment": "title", "context": {"start": 2, "end": 4, "input": "tokens", "text": "Nigeria : Mikel Shines As Chelsea Beat Palace to "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel Shines"}], "key": "mikel shines", "value": "Mikel Shines"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 300, "end": 301, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 11, "end": 15, "input": "tokens", "text": "Beat Palace to Give Hiddink First Win - allAfrica . com "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "First Win - allAfrica"}], "key": "first win - allafrica", "value": "First Win - allAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "method": "rearrange_description"}], "key": "description", "value": "

Mikel Obi posted a fine display on Sunday, as Chelsea defeated Crystal Palace 3-0 in a Premier League clash at Selhurst Park.

Chelsea's Obi Mikel, Willian, Zouma and Ivanovic applaud fans at the end of the match. Photograph: Dylan Martinez/Reuters

The win was Guus Hiddink's first of his second spell in charge of Chelsea.

Super Eagles star Mikel was solid in the Chelsea midfield and started the move that led to Oscar's opening goal in the first half.

Mikel had 96% pass accuracy, won three tackles, had two blocks and one interception and was one of Chelsea's outstanding players.

The Blues went into the match on a seven-game winless streak on the road, but goals from Oscar, Willian and Diego Costa ensured that they got 2016 off to an encouraging start in the first Premier League London derby of the year.

Eden Hazard was forced off early with an injury but that did not stop Chelsea from putting up a dominant performance.

Chelsea took the lead shortly before the half-hour mark, however, as Cesc Fabregas's pass sent Diego Costa through down the right channel and the striker cut the ball back for Oscar to slide a simple finish into an unguarded net.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 360, "end": 361, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 388, "end": 389, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Mikel Shines As Chelsea Beat Palace to Give Hiddink First Win - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 10, "end": 11, "input": "tokens", "text": "display on Sunday , as Chelsea defeated Crystal Palace 3 - "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 26, "end": 27, "input": "tokens", "text": "clash at Selhurst Park . Chelsea ' s Obi Mikel , "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 67, "end": 68, "input": "tokens", "text": "second spell in charge of Chelsea . Super Eagles star Mikel "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 77, "end": 78, "input": "tokens", "text": "Mikel was solid in the Chelsea midfield and started the move "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 117, "end": 118, "input": "tokens", "text": "interception and was one of Chelsea ' s outstanding players . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 184, "end": 185, "input": "tokens", "text": "but that did not stop Chelsea from putting up a dominant "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_strict", "context": {"start": 192, "end": 193, "input": "tokens", "text": "up a dominant performance . Chelsea took the lead shortly before "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 26, "end": 27, "input": "tokens", "text": "display on Sunday , as Chelsea defeated Crystal Palace 3 - "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 42, "end": 43, "input": "tokens", "text": "clash at Selhurst Park . Chelsea ' s Obi Mikel , "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 83, "end": 84, "input": "tokens", "text": "second spell in charge of Chelsea . Super Eagles star Mikel "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 93, "end": 94, "input": "tokens", "text": "Mikel was solid in the Chelsea midfield and started the move "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 133, "end": 134, "input": "tokens", "text": "interception and was one of Chelsea ' s outstanding players . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 200, "end": 201, "input": "tokens", "text": "but that did not stop Chelsea from putting up a dominant "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}, {"source": {"segment": "content_relaxed", "context": {"start": 208, "end": 209, "input": "tokens", "text": "up a dominant performance . Chelsea took the lead shortly before "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chelsea"}], "key": "chelsea", "value": "Chelsea"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 12, "end": 14, "input": "tokens", "text": "Sunday , as Chelsea defeated Crystal Palace 3 - 0 in a "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Crystal Palace"}, {"source": {"segment": "content_relaxed", "context": {"start": 28, "end": 30, "input": "tokens", "text": "Sunday , as Chelsea defeated Crystal Palace 3 - 0 in a "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Crystal Palace"}], "key": "crystal palace", "value": "Crystal Palace"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 51, "end": 52, "input": "tokens", "text": "Photograph : Dylan Martinez / Reuters The win was Guus Hiddink "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Reuters"}, {"source": {"segment": "content_relaxed", "context": {"start": 67, "end": 68, "input": "tokens", "text": "Photograph : Dylan Martinez / Reuters The win was Guus Hiddink "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Reuters"}], "key": "reuters", "value": "Reuters"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 69, "end": 71, "input": "tokens", "text": "in charge of Chelsea . Super Eagles star Mikel was solid in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Super Eagles"}, {"source": {"segment": "content_relaxed", "context": {"start": 85, "end": 87, "input": "tokens", "text": "in charge of Chelsea . Super Eagles star Mikel was solid in "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Super Eagles"}], "key": "super eagles", "value": "Super Eagles"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 72, "end": 73, "input": "tokens", "text": "Chelsea . Super Eagles star Mikel was solid in the Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel"}, {"source": {"segment": "content_relaxed", "context": {"start": 88, "end": 89, "input": "tokens", "text": "Chelsea . Super Eagles star Mikel was solid in the Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mikel"}], "key": "mikel", "value": "Mikel"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 124, "end": 125, "input": "tokens", "text": "s outstanding players . The Blues went into the match on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blues"}, {"source": {"segment": "content_relaxed", "context": {"start": 140, "end": 141, "input": "tokens", "text": "s outstanding players . The Blues went into the match on "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blues"}], "key": "blues", "value": "Blues"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 257, "end": 258, "input": "tokens", "text": "unguarded net . Copyright 2016 Vanguard . All rights reserved . "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vanguard"}], "key": "vanguard", "value": "Vanguard"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 263, "end": 264, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 265, "end": 268, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 32, "end": 33, "input": "tokens", "text": "' s Obi Mikel , Willian , Zouma and Ivanovic applaud "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Willian"}, {"source": {"segment": "content_relaxed", "context": {"start": 48, "end": 49, "input": "tokens", "text": "' s Obi Mikel , Willian , Zouma and Ivanovic applaud "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Willian"}], "key": "willian", "value": "Willian"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 34, "end": 35, "input": "tokens", "text": "Obi Mikel , Willian , Zouma and Ivanovic applaud fans at "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zouma"}, {"source": {"segment": "content_relaxed", "context": {"start": 50, "end": 51, "input": "tokens", "text": "Obi Mikel , Willian , Zouma and Ivanovic applaud fans at "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zouma"}], "key": "zouma", "value": "Zouma"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 36, "end": 37, "input": "tokens", "text": ", Willian , Zouma and Ivanovic applaud fans at the end "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivanovic"}, {"source": {"segment": "content_relaxed", "context": {"start": 52, "end": 53, "input": "tokens", "text": ", Willian , Zouma and Ivanovic applaud fans at the end "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivanovic"}], "key": "ivanovic", "value": "Ivanovic"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 143, "end": 146, "input": "tokens", "text": "road , but goals from Oscar , Willian and Diego Costa ensured that "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar , Willian"}, {"source": {"segment": "content_relaxed", "context": {"start": 159, "end": 162, "input": "tokens", "text": "road , but goals from Oscar , Willian and Diego Costa ensured that "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Oscar , Willian"}], "key": "oscar , willian", "value": "Oscar , Willian"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 3, "end": 4, "input": "tokens", "text": "3 January 2016 Nigeria : Mikel Shines As Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Mikel Shines As Chelsea "}, "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}]}, "content_extraction": {"content_relaxed": {"text": "

3 January 2016

Nigeria: Mikel Shines As Chelsea Beat Palace to Give Hiddink First Win

Mikel Obi posted a fine display on Sunday, as Chelsea defeated Crystal Palace 3-0 in a Premier League clash at Selhurst Park.

Chelsea's Obi Mikel, Willian, Zouma and Ivanovic applaud fans at the end of the match. Photograph: Dylan Martinez/Reuters

The win was Guus Hiddink's first of his second spell in charge of Chelsea.

Super Eagles star Mikel was solid in the Chelsea midfield and started the move that led to Oscar's opening goal in the first half.

Mikel had 96% pass accuracy, won three tackles, had two blocks and one interception and was one of Chelsea's outstanding players.

The Blues went into the match on a seven-game winless streak on the road, but goals from Oscar, Willian and Diego Costa ensured that they got 2016 off to an encouraging start in the first Premier League London derby of the year.

Eden Hazard was forced off early with an injury but that did not stop Chelsea from putting up a dominant performance.

Chelsea took the lead shortly before the half-hour mark, however, as Cesc Fabregas's pass sent Diego Costa through down the right channel and the striker cut the ball back for Oscar to slide a simple finish into an unguarded net.

Copyright

2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["3", "january", "2016", "nigeria", ":", "mikel", "shines", "as", "chelsea", "beat", "palace", "to", "give", "hiddink", "first", "win", "mikel", "obi", "posted", "a", "fine", "display", "on", "sunday", ",", "as", "chelsea", "defeated", "crystal", "palace", "3", "-", "0", "in", "a", "premier", "league", "clash", "at", "selhurst", "park", ".", "chelsea", "'", "s", "obi", "mikel", ",", "willian", ",", "zouma", "and", "ivanovic", "applaud", "fans", "at", "the", "end", "of", "the", "match", ".", "photograph", ":", "dylan", "martinez", "/", "reuters", "the", "win", "was", "guus", "hiddink", "'", "s", "first", "of", "his", "second", "spell", "in", "charge", "of", "chelsea", ".", "super", "eagles", "star", "mikel", "was", "solid", "in", "the", "chelsea", "midfield", "and", "started", "the", "move", "that", "led", "to", "oscar", "'", "s", "opening", "goal", "in", "the", "first", "half", ".", "mikel", "had", "96", "%", "pass", "accuracy", ",", "won", "three", "tackles", ",", "had", "two", "blocks", "and", "one", "interception", "and", "was", "one", "of", "chelsea", "'", "s", "outstanding", "players", ".", "the", "blues", "went", "into", "the", "match", "on", "a", "seven", "-", "game", "winless", "streak", "on", "the", "road", ",", "but", "goals", "from", "oscar", ",", "willian", "and", "diego", "costa", "ensured", "that", "they", "got", "2016", "off", "to", "an", "encouraging", "start", "in", "the", "first", "premier", "league", "london", "derby", "of", "the", "year", ".", "eden", "hazard", "was", "forced", "off", "early", "with", "an", "injury", "but", "that", "did", "not", "stop", "chelsea", "from", "putting", "up", "a", "dominant", "performance", ".", "chelsea", "took", "the", "lead", "shortly", "before", "the", "half", "-", "hour", "mark", ",", "however", ",", "as", "cesc", "fabregas", "'", "s", "pass", "sent", "diego", "costa", "through", "down", "the", "right", "channel", "and", "the", "striker", "cut", "the", "ball", "back", "for", "oscar", "to", "slide", "a", "simple", "finish", "into", "an", "unguarded", "net", ".", "copyright", "2016", "vanguard", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["3", "January", "2016", "Nigeria", ":", "Mikel", "Shines", "As", "Chelsea", "Beat", "Palace", "to", "Give", "Hiddink", "First", "Win", "Mikel", "Obi", "posted", "a", "fine", "display", "on", "Sunday", ",", "as", "Chelsea", "defeated", "Crystal", "Palace", "3", "-", "0", "in", "a", "Premier", "League", "clash", "at", "Selhurst", "Park", ".", "Chelsea", "'", "s", "Obi", "Mikel", ",", "Willian", ",", "Zouma", "and", "Ivanovic", "applaud", "fans", "at", "the", "end", "of", "the", "match", ".", "Photograph", ":", "Dylan", "Martinez", "/", "Reuters", "The", "win", "was", "Guus", "Hiddink", "'", "s", "first", "of", "his", "second", "spell", "in", "charge", "of", "Chelsea", ".", "Super", "Eagles", "star", "Mikel", "was", "solid", "in", "the", "Chelsea", "midfield", "and", "started", "the", "move", "that", "led", "to", "Oscar", "'", "s", "opening", "goal", "in", "the", "first", "half", ".", "Mikel", "had", "96", "%", "pass", "accuracy", ",", "won", "three", "tackles", ",", "had", "two", "blocks", "and", "one", "interception", "and", "was", "one", "of", "Chelsea", "'", "s", "outstanding", "players", ".", "The", "Blues", "went", "into", "the", "match", "on", "a", "seven", "-", "game", "winless", "streak", "on", "the", "road", ",", "but", "goals", "from", "Oscar", ",", "Willian", "and", "Diego", "Costa", "ensured", "that", "they", "got", "2016", "off", "to", "an", "encouraging", "start", "in", "the", "first", "Premier", "League", "London", "derby", "of", "the", "year", ".", "Eden", "Hazard", "was", "forced", "off", "early", "with", "an", "injury", "but", "that", "did", "not", "stop", "Chelsea", "from", "putting", "up", "a", "dominant", "performance", ".", "Chelsea", "took", "the", "lead", "shortly", "before", "the", "half", "-", "hour", "mark", ",", "however", ",", "as", "Cesc", "Fabregas", "'", "s", "pass", "sent", "Diego", "Costa", "through", "down", "the", "right", "channel", "and", "the", "striker", "cut", "the", "ball", "back", "for", "Oscar", "to", "slide", "a", "simple", "finish", "into", "an", "unguarded", "net", ".", "Copyright", "2016", "Vanguard", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/03/201601030144.html"}, "content_strict": {"text": "

Mikel Obi posted a fine display on Sunday, as Chelsea defeated Crystal Palace 3-0 in a Premier League clash at Selhurst Park.

Chelsea's Obi Mikel, Willian, Zouma and Ivanovic applaud fans at the end of the match. Photograph: Dylan Martinez/Reuters

The win was Guus Hiddink's first of his second spell in charge of Chelsea.

Super Eagles star Mikel was solid in the Chelsea midfield and started the move that led to Oscar's opening goal in the first half.

Mikel had 96% pass accuracy, won three tackles, had two blocks and one interception and was one of Chelsea's outstanding players.

The Blues went into the match on a seven-game winless streak on the road, but goals from Oscar, Willian and Diego Costa ensured that they got 2016 off to an encouraging start in the first Premier League London derby of the year.

Eden Hazard was forced off early with an injury but that did not stop Chelsea from putting up a dominant performance.

Chelsea took the lead shortly before the half-hour mark, however, as Cesc Fabregas's pass sent Diego Costa through down the right channel and the striker cut the ball back for Oscar to slide a simple finish into an unguarded net.

", "simple_tokens": ["mikel", "obi", "posted", "a", "fine", "display", "on", "sunday", ",", "as", "chelsea", "defeated", "crystal", "palace", "3", "-", "0", "in", "a", "premier", "league", "clash", "at", "selhurst", "park", ".", "chelsea", "'", "s", "obi", "mikel", ",", "willian", ",", "zouma", "and", "ivanovic", "applaud", "fans", "at", "the", "end", "of", "the", "match", ".", "photograph", ":", "dylan", "martinez", "/", "reuters", "the", "win", "was", "guus", "hiddink", "'", "s", "first", "of", "his", "second", "spell", "in", "charge", "of", "chelsea", ".", "super", "eagles", "star", "mikel", "was", "solid", "in", "the", "chelsea", "midfield", "and", "started", "the", "move", "that", "led", "to", "oscar", "'", "s", "opening", "goal", "in", "the", "first", "half", ".", "mikel", "had", "96", "%", "pass", "accuracy", ",", "won", "three", "tackles", ",", "had", "two", "blocks", "and", "one", "interception", "and", "was", "one", "of", "chelsea", "'", "s", "outstanding", "players", ".", "the", "blues", "went", "into", "the", "match", "on", "a", "seven", "-", "game", "winless", "streak", "on", "the", "road", ",", "but", "goals", "from", "oscar", ",", "willian", "and", "diego", "costa", "ensured", "that", "they", "got", "2016", "off", "to", "an", "encouraging", "start", "in", "the", "first", "premier", "league", "london", "derby", "of", "the", "year", ".", "eden", "hazard", "was", "forced", "off", "early", "with", "an", "injury", "but", "that", "did", "not", "stop", "chelsea", "from", "putting", "up", "a", "dominant", "performance", ".", "chelsea", "took", "the", "lead", "shortly", "before", "the", "half", "-", "hour", "mark", ",", "however", ",", "as", "cesc", "fabregas", "'", "s", "pass", "sent", "diego", "costa", "through", "down", "the", "right", "channel", "and", "the", "striker", "cut", "the", "ball", "back", "for", "oscar", "to", "slide", "a", "simple", "finish", "into", "an", "unguarded", "net", "."], "simple_tokens_original_case": ["Mikel", "Obi", "posted", "a", "fine", "display", "on", "Sunday", ",", "as", "Chelsea", "defeated", "Crystal", "Palace", "3", "-", "0", "in", "a", "Premier", "League", "clash", "at", "Selhurst", "Park", ".", "Chelsea", "'", "s", "Obi", "Mikel", ",", "Willian", ",", "Zouma", "and", "Ivanovic", "applaud", "fans", "at", "the", "end", "of", "the", "match", ".", "Photograph", ":", "Dylan", "Martinez", "/", "Reuters", "The", "win", "was", "Guus", "Hiddink", "'", "s", "first", "of", "his", "second", "spell", "in", "charge", "of", "Chelsea", ".", "Super", "Eagles", "star", "Mikel", "was", "solid", "in", "the", "Chelsea", "midfield", "and", "started", "the", "move", "that", "led", "to", "Oscar", "'", "s", "opening", "goal", "in", "the", "first", "half", ".", "Mikel", "had", "96", "%", "pass", "accuracy", ",", "won", "three", "tackles", ",", "had", "two", "blocks", "and", "one", "interception", "and", "was", "one", "of", "Chelsea", "'", "s", "outstanding", "players", ".", "The", "Blues", "went", "into", "the", "match", "on", "a", "seven", "-", "game", "winless", "streak", "on", "the", "road", ",", "but", "goals", "from", "Oscar", ",", "Willian", "and", "Diego", "Costa", "ensured", "that", "they", "got", "2016", "off", "to", "an", "encouraging", "start", "in", "the", "first", "Premier", "League", "London", "derby", "of", "the", "year", ".", "Eden", "Hazard", "was", "forced", "off", "early", "with", "an", "injury", "but", "that", "did", "not", "stop", "Chelsea", "from", "putting", "up", "a", "dominant", "performance", ".", "Chelsea", "took", "the", "lead", "shortly", "before", "the", "half", "-", "hour", "mark", ",", "however", ",", "as", "Cesc", "Fabregas", "'", "s", "pass", "sent", "Diego", "Costa", "through", "down", "the", "right", "channel", "and", "the", "striker", "cut", "the", "ball", "back", "for", "Oscar", "to", "slide", "a", "simple", "finish", "into", "an", "unguarded", "net", "."]}, "title": {"text": " Nigeria: Mikel Shines As Chelsea Beat Palace to Give Hiddink First Win - allAfrica.com ", "simple_tokens": ["nigeria", ":", "mikel", "shines", "as", "chelsea", "beat", "palace", "to", "give", "hiddink", "first", "win", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Mikel", "Shines", "As", "Chelsea", "Beat", "Palace", "to", "Give", "Hiddink", "First", "Win", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:08.988827", "@etk_process_time": 0.3512899875640869, "@etk_start_time": "2018-06-07T17:34:08.637537"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Mikel Shines As Chelsea Beat Palace to Give Hiddink First Win - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 3 January 2016\n
\n \n \n

\n Nigeria: Mikel Shines As Chelsea Beat Palace to Give Hiddink First Win\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n

\n Mikel Obi posted a fine display on Sunday, as Chelsea defeated Crystal Palace 3-0 in a Premier League clash at Selhurst Park.\n

\n

\n Chelsea's Obi Mikel, Willian, Zouma and Ivanovic applaud fans at the end of the match. Photograph: Dylan Martinez/Reuters\n

\n

\n The win was Guus Hiddink's first of his second spell in charge of Chelsea.\n

\n

\n Super Eagles star Mikel was solid in the Chelsea midfield and started the move that led to Oscar's opening goal in the first half.\n

\n
\n
\n
\n
\n

\n Mikel had 96% pass accuracy, won three tackles, had two blocks and one interception and was one of Chelsea's outstanding players.\n

\n

\n The Blues went into the match on a seven-game winless streak on the road, but goals from Oscar, Willian and Diego Costa ensured that they got 2016 off to an encouraging start in the first Premier League London derby of the year.\n

\n

\n Eden Hazard was forced off early with an injury but that did not stop Chelsea from putting up a dominant performance.\n

\n

\n Chelsea took the lead shortly before the half-hour mark, however, as Cesc Fabregas's pass sent Diego Costa through down the right channel and the striker cut the ball back for Oscar to slide a simple finish into an unguarded net.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Vanguard. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1", "document_id": "BCFDA48A5A932ED7F9F5312DF1A68C54D23A953B263C80BD104725990255CBF1"} +{"url": "http://www.ce_news_article.org/2016/01/03/201601030145.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 3, "input": "tokens", "text": "By Madelaine Meier The year 2015 will go "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Madelaine Meier"}, {"source": {"segment": "content_relaxed", "context": {"start": 17, "end": 19, "input": "tokens", "text": "Way to Democracy ? By Madelaine Meier The year 2015 will go "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Madelaine Meier"}], "key": "madelaine meier", "value": "Madelaine Meier"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 83, "end": 85, "input": "tokens", "text": "In this case it was Goodluck Jonathan handing over power to Muhammadu "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 99, "end": 101, "input": "tokens", "text": "In this case it was Goodluck Jonathan handing over power to Muhammadu "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}], "key": "goodluck jonathan", "value": "Goodluck Jonathan"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 97, "end": 99, "input": "tokens", "text": "Six months later it was Burkina Faso ' s turn to elect "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}, {"source": {"segment": "content_relaxed", "context": {"start": 113, "end": 115, "input": "tokens", "text": "Six months later it was Burkina Faso ' s turn to elect "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}], "key": "burkina faso", "value": "Burkina Faso"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 136, "end": 138, "input": "tokens", "text": "the past three decades under Blaise Compaore ' s rule when the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blaise Compaore"}, {"source": {"segment": "content_relaxed", "context": {"start": 152, "end": 154, "input": "tokens", "text": "the past three decades under Blaise Compaore ' s rule when the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blaise Compaore"}], "key": "blaise compaore", "value": "Blaise Compaore"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 155, "end": 157, "input": "tokens", "text": "Burundi violence erupted over President Pierre Nkuruziza ' s third term bid "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pierre Nkuruziza"}, {"source": {"segment": "content_relaxed", "context": {"start": 171, "end": 173, "input": "tokens", "text": "Burundi violence erupted over President Pierre Nkuruziza ' s third term bid "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pierre Nkuruziza"}], "key": "pierre nkuruziza", "value": "Pierre Nkuruziza"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 229, "end": 230, "input": "tokens", "text": "opposition and rights activists . Nkuruziza was again elected in July "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nkuruziza"}, {"source": {"segment": "content_relaxed", "context": {"start": 245, "end": 246, "input": "tokens", "text": "opposition and rights activists . Nkuruziza was again elected in July "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nkuruziza"}], "key": "nkuruziza", "value": "Nkuruziza"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 302, "end": 304, "input": "tokens", "text": "African politics , \" said Jakkie Cilliers , executive director of the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jakkie Cilliers"}, {"source": {"segment": "content_relaxed", "context": {"start": 318, "end": 320, "input": "tokens", "text": "African politics , \" said Jakkie Cilliers , executive director of the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jakkie Cilliers"}], "key": "jakkie cilliers", "value": "Jakkie Cilliers"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 394, "end": 396, "input": "tokens", "text": "The most thrilling election according Ulf Engel , a professor of African "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ulf Engel"}, {"source": {"segment": "content_relaxed", "context": {"start": 410, "end": 412, "input": "tokens", "text": "The most thrilling election according Ulf Engel , a professor of African "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ulf Engel"}], "key": "ulf engel", "value": "Ulf Engel"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 419, "end": 421, "input": "tokens", "text": ". Unlike Zimbabwe ' s Robert Mugabe and Uganda ' s Yoweri "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Robert Mugabe"}, {"source": {"segment": "content_relaxed", "context": {"start": 435, "end": 437, "input": "tokens", "text": ". Unlike Zimbabwe ' s Robert Mugabe and Uganda ' s Yoweri "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Robert Mugabe"}], "key": "robert mugabe", "value": "Robert Mugabe"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 425, "end": 427, "input": "tokens", "text": "Mugabe and Uganda ' s Yoweri Museveni who are still clinging on "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yoweri Museveni"}, {"source": {"segment": "content_relaxed", "context": {"start": 441, "end": 443, "input": "tokens", "text": "Mugabe and Uganda ' s Yoweri Museveni who are still clinging on "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yoweri Museveni"}], "key": "yoweri museveni", "value": "Yoweri Museveni"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 436, "end": 438, "input": "tokens", "text": "on to power , President Jakaya Kikwete did not run for presidency "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jakaya Kikwete"}, {"source": {"segment": "content_relaxed", "context": {"start": 452, "end": 454, "input": "tokens", "text": "on to power , President Jakaya Kikwete did not run for presidency "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jakaya Kikwete"}], "key": "jakaya kikwete", "value": "Jakaya Kikwete"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 472, "end": 475, "input": "tokens", "text": "neck race between the ruling Chama Cha Mapinduzi ( CCM ) party and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chama Cha Mapinduzi"}, {"source": {"segment": "content_relaxed", "context": {"start": 488, "end": 491, "input": "tokens", "text": "neck race between the ruling Chama Cha Mapinduzi ( CCM ) party and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Chama Cha Mapinduzi"}], "key": "chama cha mapinduzi", "value": "Chama Cha Mapinduzi"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 511, "end": 512, "input": "tokens", "text": "through smoothly , \" said Engel . Nevertheless John Magufuli - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Engel"}, {"source": {"segment": "content_relaxed", "context": {"start": 527, "end": 528, "input": "tokens", "text": "through smoothly , \" said Engel . Nevertheless John Magufuli - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Engel"}], "key": "engel", "value": "Engel"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 514, "end": 518, "input": "tokens", "text": "\" said Engel . Nevertheless John Magufuli - the ruling party ' s candidate "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Magufuli - the"}, {"source": {"segment": "content_relaxed", "context": {"start": 530, "end": 534, "input": "tokens", "text": "\" said Engel . Nevertheless John Magufuli - the ruling party ' s candidate "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Magufuli - the"}], "key": "john magufuli - the", "value": "John Magufuli - the"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 792, "end": 795, "input": "tokens", "text": "elect new leaders . President Sassou - Nguesso lately set the course for "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sassou - Nguesso"}, {"source": {"segment": "content_relaxed", "context": {"start": 808, "end": 811, "input": "tokens", "text": "elect new leaders . President Sassou - Nguesso lately set the course for "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sassou - Nguesso"}], "key": "sassou - nguesso", "value": "Sassou - Nguesso"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 852, "end": 854, "input": "tokens", "text": "a lot suggests that President Joseph Kabila will not abide by the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Joseph Kabila"}, {"source": {"segment": "content_relaxed", "context": {"start": 868, "end": 870, "input": "tokens", "text": "a lot suggests that President Joseph Kabila will not abide by the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Joseph Kabila"}], "key": "joseph kabila", "value": "Joseph Kabila"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 891, "end": 893, "input": "tokens", "text": ". Rwanda ' s leader Paul Kagame should also leave office in "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Paul Kagame"}, {"source": {"segment": "content_relaxed", "context": {"start": 907, "end": 909, "input": "tokens", "text": ". Rwanda ' s leader Paul Kagame should also leave office in "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Paul Kagame"}], "key": "paul kagame", "value": "Paul Kagame"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 982, "end": 983, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "method": "rearrange_description"}], "key": "description", "value": "

By Madelaine Meier

The year 2015 will go down in history as one of elections in Africa. Overall there were thirteen of them. According to observers, eligible voters realized the importance and civic duty to take part in the elections.

For the first time in Nigeria's history, a sitting president was defeated and accepted the outcome of the election. He later willingly handed over power to his main rival. In this case it was Goodluck Jonathan handing over power to Muhammadu Buhari.

Six months later it was Burkina Faso's turn to elect its new leader. Voters endured long queues at polling stations to elect a new leader, knowing that this time their vote counted, unlike in the past three decades under Blaise Compaore's rule when the results were long certain.

Elsewhere in Burundi violence erupted over President Pierre Nkuruziza's third term bid in office. Like was the case in 2014 in Burkina Faso, citizens and human rights activists protested in Burundi against their president's thirst for power as he, with the help of the state apparatus went ahead and run for a third term. His government violently crushed the protests and systematically embarked on a crackdown of the opposition and rights activists. Nkuruziza was again elected in July - many of his critics have since fled the country.

In the constitutions of many African countries, the presidential term is restricted to two, like in Burundi. This does not always hold. \"So this contradiction between leaders seeking their third term and protesters and voters standing against that, is certainly an interesting new trend in African politics,\" said Jakkie Cilliers, executive director of the Institute for Security Studies (ISS) in Pretoria.

However Cilliers also told DW that this varies from one country to another. \"Previously voters accepted that leaders have an inevitable right to stay in power for almost as long as they want to. And that certainly is changing,\" he said. Elections are no longer an easy way for the government to secure its power. Voters have become activists.

Voters' choice

The most thrilling election according Ulf Engel, a professor of African Studies at the University of Leipzig, was the one held in Tanzania. Unlike Zimbabwe's Robert Mugabe and Uganda's Yoweri Museveni who are still clinging on to power, President Jakaya Kikwete did not run for presidency after the end of his two terms. He made way for a new president.

Observers had predicted a neck-and-neck race between the ruling Chama Cha Mapinduzi (CCM) party and the opposition. But the results in the end did not quite turn out as expected. \"The ruling party was worried that would sail through smoothly,\" said Engel. Nevertheless John Magufuli - the ruling party's candidate - won the election. Cilliers agrees that Tanzania is a good example, of increasing pressure on the rulers. \"For the first time there was a relative sense of unease amongst the ruling CCM-party, that it may really face a challenge.\"

Hard times for election fraud

For Sudan, Togo, Guinea-Conakry and Ivory Coast, leaders remained in power. In Ethiopia the ruling government obtained 100 percent according to official results. Every country has its own dynamics and its own political traditions. But developments like in Burkina Faso or in Tanzania show that voters are becoming increasingly critical and want to make themselves heard.

The advancement in technology has also eased the voting exercise. For example in Nigeria, Ivory Coast and Tanzania voters were issued with biometric cards that contained all data from finger prints and personal details.

\"It's no longer as easy as it was in the past to manipulate elections and to staff ballot boxes. The electronic voting and the standards that the international community have brought to bear on elections have changed practices and reduced the ability of governing parties and leaders to manipulate the results,\" said Cilliers.

A technology that prevents misuse of power has not yet been invented. The New Year therefore, compared to the year 2015, is not promising much. In the Democratic Republic of Congo and in neighboring Congo-Brazzaville voters will head to the polls to elect new leaders.

President Sassou-Nguesso lately set the course for his re-election. He changed the constitution making it possible for him to run for a third term. This was then passed in a disputed referendum. There were protests against the referendum which led to deaths and casualties.

In the DRC, a lot suggests that President Joseph Kabila will not abide by the constitution and step down after his two terms. Recently he fired seven politicians in his coalition, after they asked him to abide by the constitution. Rwanda's leader Paul Kagame should also leave office in 2017, but has announced his intention to get re-elected for a third term after parliament amended the constitution.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 16, "end": 17, "input": "tokens", "text": "as one of elections in Africa . Overall there were thirteen "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 32, "end": 33, "input": "tokens", "text": "as one of elections in Africa . Overall there were thirteen "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Africa ' s Election Year 2015 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 1042, "end": 1043, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 1070, "end": 1071, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "method": "rearrange_title"}], "key": "title", "value": " Africa's Election Year 2015 - a Long Way to Democracy? - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 89, "end": 91, "input": "tokens", "text": "Jonathan handing over power to Muhammadu Buhari . Six months later it "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}, {"source": {"segment": "content_relaxed", "context": {"start": 105, "end": 107, "input": "tokens", "text": "Jonathan handing over power to Muhammadu Buhari . Six months later it "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muhammadu Buhari"}], "key": "muhammadu buhari", "value": "Muhammadu Buhari"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 308, "end": 313, "input": "tokens", "text": "Cilliers , executive director of the Institute for Security Studies ( ISS ) in Pretoria "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Institute for Security Studies"}, {"source": {"segment": "content_relaxed", "context": {"start": 324, "end": 329, "input": "tokens", "text": "Cilliers , executive director of the Institute for Security Studies ( ISS ) in Pretoria "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Institute for Security Studies"}], "key": "the institute for security studies", "value": "the Institute for Security Studies"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 314, "end": 315, "input": "tokens", "text": "Institute for Security Studies ( ISS ) in Pretoria . However "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "ISS"}, {"source": {"segment": "content_relaxed", "context": {"start": 330, "end": 331, "input": "tokens", "text": "Institute for Security Studies ( ISS ) in Pretoria . However "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "ISS"}], "key": "iss", "value": "ISS"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 320, "end": 321, "input": "tokens", "text": ") in Pretoria . However Cilliers also told DW that this "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cilliers"}, {"source": {"segment": "content_strict", "context": {"start": 737, "end": 738, "input": "tokens", "text": "the results , \" said Cilliers . A technology that prevents "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cilliers"}, {"source": {"segment": "content_relaxed", "context": {"start": 336, "end": 337, "input": "tokens", "text": ") in Pretoria . However Cilliers also told DW that this "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cilliers"}, {"source": {"segment": "content_relaxed", "context": {"start": 753, "end": 754, "input": "tokens", "text": "the results , \" said Cilliers . A technology that prevents "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cilliers"}], "key": "cilliers", "value": "Cilliers"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 323, "end": 324, "input": "tokens", "text": ". However Cilliers also told DW that this varies from one "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DW"}, {"source": {"segment": "content_relaxed", "context": {"start": 339, "end": 340, "input": "tokens", "text": ". However Cilliers also told DW that this varies from one "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DW"}], "key": "dw", "value": "DW"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 400, "end": 402, "input": "tokens", "text": "Engel , a professor of African Studies at the University of Leipzig "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African Studies"}, {"source": {"segment": "content_relaxed", "context": {"start": 416, "end": 418, "input": "tokens", "text": "Engel , a professor of African Studies at the University of Leipzig "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African Studies"}], "key": "african studies", "value": "African Studies"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 403, "end": 407, "input": "tokens", "text": "professor of African Studies at the University of Leipzig , was the one held "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the University of Leipzig"}, {"source": {"segment": "content_relaxed", "context": {"start": 419, "end": 423, "input": "tokens", "text": "professor of African Studies at the University of Leipzig , was the one held "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the University of Leipzig"}], "key": "the university of leipzig", "value": "the University of Leipzig"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 476, "end": 477, "input": "tokens", "text": "ruling Chama Cha Mapinduzi ( CCM ) party and the opposition "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CCM"}, {"source": {"segment": "content_relaxed", "context": {"start": 492, "end": 493, "input": "tokens", "text": "ruling Chama Cha Mapinduzi ( CCM ) party and the opposition "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CCM"}], "key": "ccm", "value": "CCM"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 559, "end": 562, "input": "tokens", "text": "of unease amongst the ruling CCM - party , that it may really "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CCM - party"}, {"source": {"segment": "content_relaxed", "context": {"start": 575, "end": 578, "input": "tokens", "text": "of unease amongst the ruling CCM - party , that it may really "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CCM - party"}], "key": "ccm - party", "value": "CCM - party"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 582, "end": 585, "input": "tokens", "text": "For Sudan , Togo , Guinea - Conakry and Ivory Coast , leaders "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Guinea - Conakry"}, {"source": {"segment": "content_relaxed", "context": {"start": 598, "end": 601, "input": "tokens", "text": "For Sudan , Togo , Guinea - Conakry and Ivory Coast , leaders "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Guinea - Conakry"}], "key": "guinea - conakry", "value": "Guinea - Conakry"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 752, "end": 755, "input": "tokens", "text": "not yet been invented . The New Year therefore , compared to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The New Year"}, {"source": {"segment": "content_relaxed", "context": {"start": 768, "end": 771, "input": "tokens", "text": "not yet been invented . The New Year therefore , compared to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The New Year"}], "key": "the new year", "value": "The New Year"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 845, "end": 846, "input": "tokens", "text": "and casualties . In the DRC , a lot suggests that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_relaxed", "context": {"start": 861, "end": 862, "input": "tokens", "text": "and casualties . In the DRC , a lot suggests that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}], "key": "drc", "value": "DRC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 945, "end": 946, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 947, "end": 950, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 49, "end": 50, "input": "tokens", "text": "For the first time in Nigeria ' s history , a "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 656, "end": 657, "input": "tokens", "text": "exercise . For example in Nigeria , Ivory Coast and Tanzania "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 65, "end": 66, "input": "tokens", "text": "For the first time in Nigeria ' s history , a "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 672, "end": 673, "input": "tokens", "text": "exercise . For example in Nigeria , Ivory Coast and Tanzania "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 150, "end": 151, "input": "tokens", "text": "long certain . Elsewhere in Burundi violence erupted over President Pierre "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 182, "end": 183, "input": "tokens", "text": "human rights activists protested in Burundi against their president ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 264, "end": 265, "input": "tokens", "text": "to two , like in Burundi . This does not always "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 166, "end": 167, "input": "tokens", "text": "long certain . Elsewhere in Burundi violence erupted over President Pierre "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 198, "end": 199, "input": "tokens", "text": "human rights activists protested in Burundi against their president ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 280, "end": 281, "input": "tokens", "text": "to two , like in Burundi . This does not always "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}], "key": "burundi", "value": "Burundi"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 172, "end": 174, "input": "tokens", "text": "the case in 2014 in Burkina Faso , citizens and human rights "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}, {"source": {"segment": "content_strict", "context": {"start": 623, "end": 625, "input": "tokens", "text": ". But developments like in Burkina Faso or in Tanzania show that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}, {"source": {"segment": "content_relaxed", "context": {"start": 188, "end": 190, "input": "tokens", "text": "the case in 2014 in Burkina Faso , citizens and human rights "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}, {"source": {"segment": "content_relaxed", "context": {"start": 639, "end": 641, "input": "tokens", "text": ". But developments like in Burkina Faso or in Tanzania show that "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}], "key": "burkina faso", "value": "Burkina Faso"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 317, "end": 318, "input": "tokens", "text": "Studies ( ISS ) in Pretoria . However Cilliers also told "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pretoria"}, {"source": {"segment": "content_relaxed", "context": {"start": 333, "end": 334, "input": "tokens", "text": "Studies ( ISS ) in Pretoria . However Cilliers also told "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pretoria"}], "key": "pretoria", "value": "Pretoria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 413, "end": 414, "input": "tokens", "text": "was the one held in Tanzania . Unlike Zimbabwe ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 531, "end": 532, "input": "tokens", "text": "election . Cilliers agrees that Tanzania is a good example , "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 627, "end": 628, "input": "tokens", "text": "in Burkina Faso or in Tanzania show that voters are becoming "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 661, "end": 662, "input": "tokens", "text": "Nigeria , Ivory Coast and Tanzania voters were issued with biometric "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 429, "end": 430, "input": "tokens", "text": "was the one held in Tanzania . Unlike Zimbabwe ' s "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 547, "end": 548, "input": "tokens", "text": "election . Cilliers agrees that Tanzania is a good example , "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 643, "end": 644, "input": "tokens", "text": "in Burkina Faso or in Tanzania show that voters are becoming "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 677, "end": 678, "input": "tokens", "text": "Nigeria , Ivory Coast and Tanzania voters were issued with biometric "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}], "key": "tanzania", "value": "Tanzania"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 416, "end": 417, "input": "tokens", "text": "held in Tanzania . Unlike Zimbabwe ' s Robert Mugabe and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zimbabwe"}, {"source": {"segment": "content_relaxed", "context": {"start": 432, "end": 433, "input": "tokens", "text": "held in Tanzania . Unlike Zimbabwe ' s Robert Mugabe and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zimbabwe"}], "key": "zimbabwe", "value": "Zimbabwe"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 422, "end": 423, "input": "tokens", "text": "' s Robert Mugabe and Uganda ' s Yoweri Museveni who "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}, {"source": {"segment": "content_relaxed", "context": {"start": 438, "end": 439, "input": "tokens", "text": "' s Robert Mugabe and Uganda ' s Yoweri Museveni who "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}], "key": "uganda", "value": "Uganda"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 578, "end": 579, "input": "tokens", "text": "times for election fraud For Sudan , Togo , Guinea - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_relaxed", "context": {"start": 594, "end": 595, "input": "tokens", "text": "times for election fraud For Sudan , Togo , Guinea - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}], "key": "sudan", "value": "Sudan"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 580, "end": 581, "input": "tokens", "text": "election fraud For Sudan , Togo , Guinea - Conakry and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Togo"}, {"source": {"segment": "content_relaxed", "context": {"start": 596, "end": 597, "input": "tokens", "text": "election fraud For Sudan , Togo , Guinea - Conakry and "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Togo"}], "key": "togo", "value": "Togo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 586, "end": 588, "input": "tokens", "text": ", Guinea - Conakry and Ivory Coast , leaders remained in power "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivory Coast"}, {"source": {"segment": "content_strict", "context": {"start": 658, "end": 660, "input": "tokens", "text": "For example in Nigeria , Ivory Coast and Tanzania voters were issued "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivory Coast"}, {"source": {"segment": "content_relaxed", "context": {"start": 602, "end": 604, "input": "tokens", "text": ", Guinea - Conakry and Ivory Coast , leaders remained in power "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivory Coast"}, {"source": {"segment": "content_relaxed", "context": {"start": 674, "end": 676, "input": "tokens", "text": "For example in Nigeria , Ivory Coast and Tanzania voters were issued "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ivory Coast"}], "key": "ivory coast", "value": "Ivory Coast"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 595, "end": 596, "input": "tokens", "text": "remained in power . In Ethiopia the ruling government obtained 100 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ethiopia"}, {"source": {"segment": "content_relaxed", "context": {"start": 611, "end": 612, "input": "tokens", "text": "remained in power . In Ethiopia the ruling government obtained 100 "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ethiopia"}], "key": "ethiopia", "value": "Ethiopia"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 769, "end": 774, "input": "tokens", "text": "not promising much . In the Democratic Republic of Congo and in neighboring Congo - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Democratic Republic of Congo"}, {"source": {"segment": "content_relaxed", "context": {"start": 785, "end": 790, "input": "tokens", "text": "not promising much . In the Democratic Republic of Congo and in neighboring Congo - "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Democratic Republic of Congo"}], "key": "the democratic republic of congo", "value": "the Democratic Republic of Congo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 777, "end": 778, "input": "tokens", "text": "of Congo and in neighboring Congo - Brazzaville voters will head "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}, {"source": {"segment": "content_relaxed", "context": {"start": 793, "end": 794, "input": "tokens", "text": "of Congo and in neighboring Congo - Brazzaville voters will head "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}], "key": "congo", "value": "Congo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 779, "end": 780, "input": "tokens", "text": "and in neighboring Congo - Brazzaville voters will head to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Brazzaville"}, {"source": {"segment": "content_relaxed", "context": {"start": 795, "end": 796, "input": "tokens", "text": "and in neighboring Congo - Brazzaville voters will head to the "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Brazzaville"}], "key": "brazzaville", "value": "Brazzaville"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 887, "end": 888, "input": "tokens", "text": "abide by the constitution . Rwanda ' s leader Paul Kagame "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_relaxed", "context": {"start": 903, "end": 904, "input": "tokens", "text": "abide by the constitution . Rwanda ' s leader Paul Kagame "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}], "key": "rwanda", "value": "Rwanda"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 251, "end": 252, "input": "tokens", "text": "In the constitutions of many African countries , the presidential term "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_strict", "context": {"start": 297, "end": 298, "input": "tokens", "text": "an interesting new trend in African politics , \" said Jakkie "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 267, "end": 268, "input": "tokens", "text": "In the constitutions of many African countries , the presidential term "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 313, "end": 314, "input": "tokens", "text": "an interesting new trend in African politics , \" said Jakkie "}, "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}], "key": "african", "value": "African"}]}, "content_extraction": {"content_relaxed": {"text": "

1 January 2016

Africa's Election Year 2015 - a Long Way to Democracy?

By Madelaine Meier

The year 2015 will go down in history as one of elections in Africa. Overall there were thirteen of them. According to observers, eligible voters realized the importance and civic duty to take part in the elections.

For the first time in Nigeria's history, a sitting president was defeated and accepted the outcome of the election. He later willingly handed over power to his main rival. In this case it was Goodluck Jonathan handing over power to Muhammadu Buhari.

Six months later it was Burkina Faso's turn to elect its new leader. Voters endured long queues at polling stations to elect a new leader, knowing that this time their vote counted, unlike in the past three decades under Blaise Compaore's rule when the results were long certain.

Elsewhere in Burundi violence erupted over President Pierre Nkuruziza's third term bid in office. Like was the case in 2014 in Burkina Faso, citizens and human rights activists protested in Burundi against their president's thirst for power as he, with the help of the state apparatus went ahead and run for a third term. His government violently crushed the protests and systematically embarked on a crackdown of the opposition and rights activists. Nkuruziza was again elected in July - many of his critics have since fled the country.

In the constitutions of many African countries, the presidential term is restricted to two, like in Burundi. This does not always hold. \"So this contradiction between leaders seeking their third term and protesters and voters standing against that, is certainly an interesting new trend in African politics,\" said Jakkie Cilliers, executive director of the Institute for Security Studies (ISS) in Pretoria.

However Cilliers also told DW that this varies from one country to another. \"Previously voters accepted that leaders have an inevitable right to stay in power for almost as long as they want to. And that certainly is changing,\" he said. Elections are no longer an easy way for the government to secure its power. Voters have become activists.

Voters' choice

The most thrilling election according Ulf Engel, a professor of African Studies at the University of Leipzig, was the one held in Tanzania. Unlike Zimbabwe's Robert Mugabe and Uganda's Yoweri Museveni who are still clinging on to power, President Jakaya Kikwete did not run for presidency after the end of his two terms. He made way for a new president.

Observers had predicted a neck-and-neck race between the ruling Chama Cha Mapinduzi (CCM) party and the opposition. But the results in the end did not quite turn out as expected. \"The ruling party was worried that would sail through smoothly,\" said Engel. Nevertheless John Magufuli - the ruling party's candidate - won the election. Cilliers agrees that Tanzania is a good example, of increasing pressure on the rulers. \"For the first time there was a relative sense of unease amongst the ruling CCM-party, that it may really face a challenge.\"

Hard times for election fraud

For Sudan, Togo, Guinea-Conakry and Ivory Coast, leaders remained in power. In Ethiopia the ruling government obtained 100 percent according to official results. Every country has its own dynamics and its own political traditions. But developments like in Burkina Faso or in Tanzania show that voters are becoming increasingly critical and want to make themselves heard.

The advancement in technology has also eased the voting exercise. For example in Nigeria, Ivory Coast and Tanzania voters were issued with biometric cards that contained all data from finger prints and personal details.

\"It's no longer as easy as it was in the past to manipulate elections and to staff ballot boxes. The electronic voting and the standards that the international community have brought to bear on elections have changed practices and reduced the ability of governing parties and leaders to manipulate the results,\" said Cilliers.

A technology that prevents misuse of power has not yet been invented. The New Year therefore, compared to the year 2015, is not promising much. In the Democratic Republic of Congo and in neighboring Congo-Brazzaville voters will head to the polls to elect new leaders.

President Sassou-Nguesso lately set the course for his re-election. He changed the constitution making it possible for him to run for a third term. This was then passed in a disputed referendum. There were protests against the referendum which led to deaths and casualties.

In the DRC, a lot suggests that President Joseph Kabila will not abide by the constitution and step down after his two terms. Recently he fired seven politicians in his coalition, after they asked him to abide by the constitution. Rwanda's leader Paul Kagame should also leave office in 2017, but has announced his intention to get re-elected for a third term after parliament amended the constitution.

Copyright

2016 Deutsche Welle. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["1", "january", "2016", "africa", "'", "s", "election", "year", "2015", "-", "a", "long", "way", "to", "democracy", "?", "by", "madelaine", "meier", "the", "year", "2015", "will", "go", "down", "in", "history", "as", "one", "of", "elections", "in", "africa", ".", "overall", "there", "were", "thirteen", "of", "them", ".", "according", "to", "observers", ",", "eligible", "voters", "realized", "the", "importance", "and", "civic", "duty", "to", "take", "part", "in", "the", "elections", ".", "for", "the", "first", "time", "in", "nigeria", "'", "s", "history", ",", "a", "sitting", "president", "was", "defeated", "and", "accepted", "the", "outcome", "of", "the", "election", ".", "he", "later", "willingly", "handed", "over", "power", "to", "his", "main", "rival", ".", "in", "this", "case", "it", "was", "goodluck", "jonathan", "handing", "over", "power", "to", "muhammadu", "buhari", ".", "six", "months", "later", "it", "was", "burkina", "faso", "'", "s", "turn", "to", "elect", "its", "new", "leader", ".", "voters", "endured", "long", "queues", "at", "polling", "stations", "to", "elect", "a", "new", "leader", ",", "knowing", "that", "this", "time", "their", "vote", "counted", ",", "unlike", "in", "the", "past", "three", "decades", "under", "blaise", "compaore", "'", "s", "rule", "when", "the", "results", "were", "long", "certain", ".", "elsewhere", "in", "burundi", "violence", "erupted", "over", "president", "pierre", "nkuruziza", "'", "s", "third", "term", "bid", "in", "office", ".", "like", "was", "the", "case", "in", "2014", "in", "burkina", "faso", ",", "citizens", "and", "human", "rights", "activists", "protested", "in", "burundi", "against", "their", "president", "'", "s", "thirst", "for", "power", "as", "he", ",", "with", "the", "help", "of", "the", "state", "apparatus", "went", "ahead", "and", "run", "for", "a", "third", "term", ".", "his", "government", "violently", "crushed", "the", "protests", "and", "systematically", "embarked", "on", "a", "crackdown", "of", "the", "opposition", "and", "rights", "activists", ".", "nkuruziza", "was", "again", "elected", "in", "july", "-", "many", "of", "his", "critics", "have", "since", "fled", "the", "country", ".", "in", "the", "constitutions", "of", "many", "african", "countries", ",", "the", "presidential", "term", "is", "restricted", "to", "two", ",", "like", "in", "burundi", ".", "this", "does", "not", "always", "hold", ".", "\"", "so", "this", "contradiction", "between", "leaders", "seeking", "their", "third", "term", "and", "protesters", "and", "voters", "standing", "against", "that", ",", "is", "certainly", "an", "interesting", "new", "trend", "in", "african", "politics", ",", "\"", "said", "jakkie", "cilliers", ",", "executive", "director", "of", "the", "institute", "for", "security", "studies", "(", "iss", ")", "in", "pretoria", ".", "however", "cilliers", "also", "told", "dw", "that", "this", "varies", "from", "one", "country", "to", "another", ".", "\"", "previously", "voters", "accepted", "that", "leaders", "have", "an", "inevitable", "right", "to", "stay", "in", "power", "for", "almost", "as", "long", "as", "they", "want", "to", ".", "and", "that", "certainly", "is", "changing", ",", "\"", "he", "said", ".", "elections", "are", "no", "longer", "an", "easy", "way", "for", "the", "government", "to", "secure", "its", "power", ".", "voters", "have", "become", "activists", ".", "voters", "'", "choice", "the", "most", "thrilling", "election", "according", "ulf", "engel", ",", "a", "professor", "of", "african", "studies", "at", "the", "university", "of", "leipzig", ",", "was", "the", "one", "held", "in", "tanzania", ".", "unlike", "zimbabwe", "'", "s", "robert", "mugabe", "and", "uganda", "'", "s", "yoweri", "museveni", "who", "are", "still", "clinging", "on", "to", "power", ",", "president", "jakaya", "kikwete", "did", "not", "run", "for", "presidency", "after", "the", "end", "of", "his", "two", "terms", ".", "he", "made", "way", "for", "a", "new", "president", ".", "observers", "had", "predicted", "a", "neck", "-", "and", "-", "neck", "race", "between", "the", "ruling", "chama", "cha", "mapinduzi", "(", "ccm", ")", "party", "and", "the", "opposition", ".", "but", "the", "results", "in", "the", "end", "did", "not", "quite", "turn", "out", "as", "expected", ".", "\"", "the", "ruling", "party", "was", "worried", "that", "would", "sail", "through", "smoothly", ",", "\"", "said", "engel", ".", "nevertheless", "john", "magufuli", "-", "the", "ruling", "party", "'", "s", "candidate", "-", "won", "the", "election", ".", "cilliers", "agrees", "that", "tanzania", "is", "a", "good", "example", ",", "of", "increasing", "pressure", "on", "the", "rulers", ".", "\"", "for", "the", "first", "time", "there", "was", "a", "relative", "sense", "of", "unease", "amongst", "the", "ruling", "ccm", "-", "party", ",", "that", "it", "may", "really", "face", "a", "challenge", ".", "\"", "hard", "times", "for", "election", "fraud", "for", "sudan", ",", "togo", ",", "guinea", "-", "conakry", "and", "ivory", "coast", ",", "leaders", "remained", "in", "power", ".", "in", "ethiopia", "the", "ruling", "government", "obtained", "100", "percent", "according", "to", "official", "results", ".", "every", "country", "has", "its", "own", "dynamics", "and", "its", "own", "political", "traditions", ".", "but", "developments", "like", "in", "burkina", "faso", "or", "in", "tanzania", "show", "that", "voters", "are", "becoming", "increasingly", "critical", "and", "want", "to", "make", "themselves", "heard", ".", "the", "advancement", "in", "technology", "has", "also", "eased", "the", "voting", "exercise", ".", "for", "example", "in", "nigeria", ",", "ivory", "coast", "and", "tanzania", "voters", "were", "issued", "with", "biometric", "cards", "that", "contained", "all", "data", "from", "finger", "prints", "and", "personal", "details", ".", "\"", "it", "'", "s", "no", "longer", "as", "easy", "as", "it", "was", "in", "the", "past", "to", "manipulate", "elections", "and", "to", "staff", "ballot", "boxes", ".", "the", "electronic", "voting", "and", "the", "standards", "that", "the", "international", "community", "have", "brought", "to", "bear", "on", "elections", "have", "changed", "practices", "and", "reduced", "the", "ability", "of", "governing", "parties", "and", "leaders", "to", "manipulate", "the", "results", ",", "\"", "said", "cilliers", ".", "a", "technology", "that", "prevents", "misuse", "of", "power", "has", "not", "yet", "been", "invented", ".", "the", "new", "year", "therefore", ",", "compared", "to", "the", "year", "2015", ",", "is", "not", "promising", "much", ".", "in", "the", "democratic", "republic", "of", "congo", "and", "in", "neighboring", "congo", "-", "brazzaville", "voters", "will", "head", "to", "the", "polls", "to", "elect", "new", "leaders", ".", "president", "sassou", "-", "nguesso", "lately", "set", "the", "course", "for", "his", "re", "-", "election", ".", "he", "changed", "the", "constitution", "making", "it", "possible", "for", "him", "to", "run", "for", "a", "third", "term", ".", "this", "was", "then", "passed", "in", "a", "disputed", "referendum", ".", "there", "were", "protests", "against", "the", "referendum", "which", "led", "to", "deaths", "and", "casualties", ".", "in", "the", "drc", ",", "a", "lot", "suggests", "that", "president", "joseph", "kabila", "will", "not", "abide", "by", "the", "constitution", "and", "step", "down", "after", "his", "two", "terms", ".", "recently", "he", "fired", "seven", "politicians", "in", "his", "coalition", ",", "after", "they", "asked", "him", "to", "abide", "by", "the", "constitution", ".", "rwanda", "'", "s", "leader", "paul", "kagame", "should", "also", "leave", "office", "in", "2017", ",", "but", "has", "announced", "his", "intention", "to", "get", "re", "-", "elected", "for", "a", "third", "term", "after", "parliament", "amended", "the", "constitution", ".", "copyright", "2016", "deutsche", "welle", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["1", "January", "2016", "Africa", "'", "s", "Election", "Year", "2015", "-", "a", "Long", "Way", "to", "Democracy", "?", "By", "Madelaine", "Meier", "The", "year", "2015", "will", "go", "down", "in", "history", "as", "one", "of", "elections", "in", "Africa", ".", "Overall", "there", "were", "thirteen", "of", "them", ".", "According", "to", "observers", ",", "eligible", "voters", "realized", "the", "importance", "and", "civic", "duty", "to", "take", "part", "in", "the", "elections", ".", "For", "the", "first", "time", "in", "Nigeria", "'", "s", "history", ",", "a", "sitting", "president", "was", "defeated", "and", "accepted", "the", "outcome", "of", "the", "election", ".", "He", "later", "willingly", "handed", "over", "power", "to", "his", "main", "rival", ".", "In", "this", "case", "it", "was", "Goodluck", "Jonathan", "handing", "over", "power", "to", "Muhammadu", "Buhari", ".", "Six", "months", "later", "it", "was", "Burkina", "Faso", "'", "s", "turn", "to", "elect", "its", "new", "leader", ".", "Voters", "endured", "long", "queues", "at", "polling", "stations", "to", "elect", "a", "new", "leader", ",", "knowing", "that", "this", "time", "their", "vote", "counted", ",", "unlike", "in", "the", "past", "three", "decades", "under", "Blaise", "Compaore", "'", "s", "rule", "when", "the", "results", "were", "long", "certain", ".", "Elsewhere", "in", "Burundi", "violence", "erupted", "over", "President", "Pierre", "Nkuruziza", "'", "s", "third", "term", "bid", "in", "office", ".", "Like", "was", "the", "case", "in", "2014", "in", "Burkina", "Faso", ",", "citizens", "and", "human", "rights", "activists", "protested", "in", "Burundi", "against", "their", "president", "'", "s", "thirst", "for", "power", "as", "he", ",", "with", "the", "help", "of", "the", "state", "apparatus", "went", "ahead", "and", "run", "for", "a", "third", "term", ".", "His", "government", "violently", "crushed", "the", "protests", "and", "systematically", "embarked", "on", "a", "crackdown", "of", "the", "opposition", "and", "rights", "activists", ".", "Nkuruziza", "was", "again", "elected", "in", "July", "-", "many", "of", "his", "critics", "have", "since", "fled", "the", "country", ".", "In", "the", "constitutions", "of", "many", "African", "countries", ",", "the", "presidential", "term", "is", "restricted", "to", "two", ",", "like", "in", "Burundi", ".", "This", "does", "not", "always", "hold", ".", "\"", "So", "this", "contradiction", "between", "leaders", "seeking", "their", "third", "term", "and", "protesters", "and", "voters", "standing", "against", "that", ",", "is", "certainly", "an", "interesting", "new", "trend", "in", "African", "politics", ",", "\"", "said", "Jakkie", "Cilliers", ",", "executive", "director", "of", "the", "Institute", "for", "Security", "Studies", "(", "ISS", ")", "in", "Pretoria", ".", "However", "Cilliers", "also", "told", "DW", "that", "this", "varies", "from", "one", "country", "to", "another", ".", "\"", "Previously", "voters", "accepted", "that", "leaders", "have", "an", "inevitable", "right", "to", "stay", "in", "power", "for", "almost", "as", "long", "as", "they", "want", "to", ".", "And", "that", "certainly", "is", "changing", ",", "\"", "he", "said", ".", "Elections", "are", "no", "longer", "an", "easy", "way", "for", "the", "government", "to", "secure", "its", "power", ".", "Voters", "have", "become", "activists", ".", "Voters", "'", "choice", "The", "most", "thrilling", "election", "according", "Ulf", "Engel", ",", "a", "professor", "of", "African", "Studies", "at", "the", "University", "of", "Leipzig", ",", "was", "the", "one", "held", "in", "Tanzania", ".", "Unlike", "Zimbabwe", "'", "s", "Robert", "Mugabe", "and", "Uganda", "'", "s", "Yoweri", "Museveni", "who", "are", "still", "clinging", "on", "to", "power", ",", "President", "Jakaya", "Kikwete", "did", "not", "run", "for", "presidency", "after", "the", "end", "of", "his", "two", "terms", ".", "He", "made", "way", "for", "a", "new", "president", ".", "Observers", "had", "predicted", "a", "neck", "-", "and", "-", "neck", "race", "between", "the", "ruling", "Chama", "Cha", "Mapinduzi", "(", "CCM", ")", "party", "and", "the", "opposition", ".", "But", "the", "results", "in", "the", "end", "did", "not", "quite", "turn", "out", "as", "expected", ".", "\"", "The", "ruling", "party", "was", "worried", "that", "would", "sail", "through", "smoothly", ",", "\"", "said", "Engel", ".", "Nevertheless", "John", "Magufuli", "-", "the", "ruling", "party", "'", "s", "candidate", "-", "won", "the", "election", ".", "Cilliers", "agrees", "that", "Tanzania", "is", "a", "good", "example", ",", "of", "increasing", "pressure", "on", "the", "rulers", ".", "\"", "For", "the", "first", "time", "there", "was", "a", "relative", "sense", "of", "unease", "amongst", "the", "ruling", "CCM", "-", "party", ",", "that", "it", "may", "really", "face", "a", "challenge", ".", "\"", "Hard", "times", "for", "election", "fraud", "For", "Sudan", ",", "Togo", ",", "Guinea", "-", "Conakry", "and", "Ivory", "Coast", ",", "leaders", "remained", "in", "power", ".", "In", "Ethiopia", "the", "ruling", "government", "obtained", "100", "percent", "according", "to", "official", "results", ".", "Every", "country", "has", "its", "own", "dynamics", "and", "its", "own", "political", "traditions", ".", "But", "developments", "like", "in", "Burkina", "Faso", "or", "in", "Tanzania", "show", "that", "voters", "are", "becoming", "increasingly", "critical", "and", "want", "to", "make", "themselves", "heard", ".", "The", "advancement", "in", "technology", "has", "also", "eased", "the", "voting", "exercise", ".", "For", "example", "in", "Nigeria", ",", "Ivory", "Coast", "and", "Tanzania", "voters", "were", "issued", "with", "biometric", "cards", "that", "contained", "all", "data", "from", "finger", "prints", "and", "personal", "details", ".", "\"", "It", "'", "s", "no", "longer", "as", "easy", "as", "it", "was", "in", "the", "past", "to", "manipulate", "elections", "and", "to", "staff", "ballot", "boxes", ".", "The", "electronic", "voting", "and", "the", "standards", "that", "the", "international", "community", "have", "brought", "to", "bear", "on", "elections", "have", "changed", "practices", "and", "reduced", "the", "ability", "of", "governing", "parties", "and", "leaders", "to", "manipulate", "the", "results", ",", "\"", "said", "Cilliers", ".", "A", "technology", "that", "prevents", "misuse", "of", "power", "has", "not", "yet", "been", "invented", ".", "The", "New", "Year", "therefore", ",", "compared", "to", "the", "year", "2015", ",", "is", "not", "promising", "much", ".", "In", "the", "Democratic", "Republic", "of", "Congo", "and", "in", "neighboring", "Congo", "-", "Brazzaville", "voters", "will", "head", "to", "the", "polls", "to", "elect", "new", "leaders", ".", "President", "Sassou", "-", "Nguesso", "lately", "set", "the", "course", "for", "his", "re", "-", "election", ".", "He", "changed", "the", "constitution", "making", "it", "possible", "for", "him", "to", "run", "for", "a", "third", "term", ".", "This", "was", "then", "passed", "in", "a", "disputed", "referendum", ".", "There", "were", "protests", "against", "the", "referendum", "which", "led", "to", "deaths", "and", "casualties", ".", "In", "the", "DRC", ",", "a", "lot", "suggests", "that", "President", "Joseph", "Kabila", "will", "not", "abide", "by", "the", "constitution", "and", "step", "down", "after", "his", "two", "terms", ".", "Recently", "he", "fired", "seven", "politicians", "in", "his", "coalition", ",", "after", "they", "asked", "him", "to", "abide", "by", "the", "constitution", ".", "Rwanda", "'", "s", "leader", "Paul", "Kagame", "should", "also", "leave", "office", "in", "2017", ",", "but", "has", "announced", "his", "intention", "to", "get", "re", "-", "elected", "for", "a", "third", "term", "after", "parliament", "amended", "the", "constitution", ".", "Copyright", "2016", "Deutsche", "Welle", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/03/201601030145.html"}, "content_strict": {"text": "

By Madelaine Meier

The year 2015 will go down in history as one of elections in Africa. Overall there were thirteen of them. According to observers, eligible voters realized the importance and civic duty to take part in the elections.

For the first time in Nigeria's history, a sitting president was defeated and accepted the outcome of the election. He later willingly handed over power to his main rival. In this case it was Goodluck Jonathan handing over power to Muhammadu Buhari.

Six months later it was Burkina Faso's turn to elect its new leader. Voters endured long queues at polling stations to elect a new leader, knowing that this time their vote counted, unlike in the past three decades under Blaise Compaore's rule when the results were long certain.

Elsewhere in Burundi violence erupted over President Pierre Nkuruziza's third term bid in office. Like was the case in 2014 in Burkina Faso, citizens and human rights activists protested in Burundi against their president's thirst for power as he, with the help of the state apparatus went ahead and run for a third term. His government violently crushed the protests and systematically embarked on a crackdown of the opposition and rights activists. Nkuruziza was again elected in July - many of his critics have since fled the country.

In the constitutions of many African countries, the presidential term is restricted to two, like in Burundi. This does not always hold. \"So this contradiction between leaders seeking their third term and protesters and voters standing against that, is certainly an interesting new trend in African politics,\" said Jakkie Cilliers, executive director of the Institute for Security Studies (ISS) in Pretoria.

However Cilliers also told DW that this varies from one country to another. \"Previously voters accepted that leaders have an inevitable right to stay in power for almost as long as they want to. And that certainly is changing,\" he said. Elections are no longer an easy way for the government to secure its power. Voters have become activists.

Voters' choice

The most thrilling election according Ulf Engel, a professor of African Studies at the University of Leipzig, was the one held in Tanzania. Unlike Zimbabwe's Robert Mugabe and Uganda's Yoweri Museveni who are still clinging on to power, President Jakaya Kikwete did not run for presidency after the end of his two terms. He made way for a new president.

Observers had predicted a neck-and-neck race between the ruling Chama Cha Mapinduzi (CCM) party and the opposition. But the results in the end did not quite turn out as expected. \"The ruling party was worried that would sail through smoothly,\" said Engel. Nevertheless John Magufuli - the ruling party's candidate - won the election. Cilliers agrees that Tanzania is a good example, of increasing pressure on the rulers. \"For the first time there was a relative sense of unease amongst the ruling CCM-party, that it may really face a challenge.\"

Hard times for election fraud

For Sudan, Togo, Guinea-Conakry and Ivory Coast, leaders remained in power. In Ethiopia the ruling government obtained 100 percent according to official results. Every country has its own dynamics and its own political traditions. But developments like in Burkina Faso or in Tanzania show that voters are becoming increasingly critical and want to make themselves heard.

The advancement in technology has also eased the voting exercise. For example in Nigeria, Ivory Coast and Tanzania voters were issued with biometric cards that contained all data from finger prints and personal details.

\"It's no longer as easy as it was in the past to manipulate elections and to staff ballot boxes. The electronic voting and the standards that the international community have brought to bear on elections have changed practices and reduced the ability of governing parties and leaders to manipulate the results,\" said Cilliers.

A technology that prevents misuse of power has not yet been invented. The New Year therefore, compared to the year 2015, is not promising much. In the Democratic Republic of Congo and in neighboring Congo-Brazzaville voters will head to the polls to elect new leaders.

President Sassou-Nguesso lately set the course for his re-election. He changed the constitution making it possible for him to run for a third term. This was then passed in a disputed referendum. There were protests against the referendum which led to deaths and casualties.

In the DRC, a lot suggests that President Joseph Kabila will not abide by the constitution and step down after his two terms. Recently he fired seven politicians in his coalition, after they asked him to abide by the constitution. Rwanda's leader Paul Kagame should also leave office in 2017, but has announced his intention to get re-elected for a third term after parliament amended the constitution.

", "simple_tokens": ["by", "madelaine", "meier", "the", "year", "2015", "will", "go", "down", "in", "history", "as", "one", "of", "elections", "in", "africa", ".", "overall", "there", "were", "thirteen", "of", "them", ".", "according", "to", "observers", ",", "eligible", "voters", "realized", "the", "importance", "and", "civic", "duty", "to", "take", "part", "in", "the", "elections", ".", "for", "the", "first", "time", "in", "nigeria", "'", "s", "history", ",", "a", "sitting", "president", "was", "defeated", "and", "accepted", "the", "outcome", "of", "the", "election", ".", "he", "later", "willingly", "handed", "over", "power", "to", "his", "main", "rival", ".", "in", "this", "case", "it", "was", "goodluck", "jonathan", "handing", "over", "power", "to", "muhammadu", "buhari", ".", "six", "months", "later", "it", "was", "burkina", "faso", "'", "s", "turn", "to", "elect", "its", "new", "leader", ".", "voters", "endured", "long", "queues", "at", "polling", "stations", "to", "elect", "a", "new", "leader", ",", "knowing", "that", "this", "time", "their", "vote", "counted", ",", "unlike", "in", "the", "past", "three", "decades", "under", "blaise", "compaore", "'", "s", "rule", "when", "the", "results", "were", "long", "certain", ".", "elsewhere", "in", "burundi", "violence", "erupted", "over", "president", "pierre", "nkuruziza", "'", "s", "third", "term", "bid", "in", "office", ".", "like", "was", "the", "case", "in", "2014", "in", "burkina", "faso", ",", "citizens", "and", "human", "rights", "activists", "protested", "in", "burundi", "against", "their", "president", "'", "s", "thirst", "for", "power", "as", "he", ",", "with", "the", "help", "of", "the", "state", "apparatus", "went", "ahead", "and", "run", "for", "a", "third", "term", ".", "his", "government", "violently", "crushed", "the", "protests", "and", "systematically", "embarked", "on", "a", "crackdown", "of", "the", "opposition", "and", "rights", "activists", ".", "nkuruziza", "was", "again", "elected", "in", "july", "-", "many", "of", "his", "critics", "have", "since", "fled", "the", "country", ".", "in", "the", "constitutions", "of", "many", "african", "countries", ",", "the", "presidential", "term", "is", "restricted", "to", "two", ",", "like", "in", "burundi", ".", "this", "does", "not", "always", "hold", ".", "\"", "so", "this", "contradiction", "between", "leaders", "seeking", "their", "third", "term", "and", "protesters", "and", "voters", "standing", "against", "that", ",", "is", "certainly", "an", "interesting", "new", "trend", "in", "african", "politics", ",", "\"", "said", "jakkie", "cilliers", ",", "executive", "director", "of", "the", "institute", "for", "security", "studies", "(", "iss", ")", "in", "pretoria", ".", "however", "cilliers", "also", "told", "dw", "that", "this", "varies", "from", "one", "country", "to", "another", ".", "\"", "previously", "voters", "accepted", "that", "leaders", "have", "an", "inevitable", "right", "to", "stay", "in", "power", "for", "almost", "as", "long", "as", "they", "want", "to", ".", "and", "that", "certainly", "is", "changing", ",", "\"", "he", "said", ".", "elections", "are", "no", "longer", "an", "easy", "way", "for", "the", "government", "to", "secure", "its", "power", ".", "voters", "have", "become", "activists", ".", "voters", "'", "choice", "the", "most", "thrilling", "election", "according", "ulf", "engel", ",", "a", "professor", "of", "african", "studies", "at", "the", "university", "of", "leipzig", ",", "was", "the", "one", "held", "in", "tanzania", ".", "unlike", "zimbabwe", "'", "s", "robert", "mugabe", "and", "uganda", "'", "s", "yoweri", "museveni", "who", "are", "still", "clinging", "on", "to", "power", ",", "president", "jakaya", "kikwete", "did", "not", "run", "for", "presidency", "after", "the", "end", "of", "his", "two", "terms", ".", "he", "made", "way", "for", "a", "new", "president", ".", "observers", "had", "predicted", "a", "neck", "-", "and", "-", "neck", "race", "between", "the", "ruling", "chama", "cha", "mapinduzi", "(", "ccm", ")", "party", "and", "the", "opposition", ".", "but", "the", "results", "in", "the", "end", "did", "not", "quite", "turn", "out", "as", "expected", ".", "\"", "the", "ruling", "party", "was", "worried", "that", "would", "sail", "through", "smoothly", ",", "\"", "said", "engel", ".", "nevertheless", "john", "magufuli", "-", "the", "ruling", "party", "'", "s", "candidate", "-", "won", "the", "election", ".", "cilliers", "agrees", "that", "tanzania", "is", "a", "good", "example", ",", "of", "increasing", "pressure", "on", "the", "rulers", ".", "\"", "for", "the", "first", "time", "there", "was", "a", "relative", "sense", "of", "unease", "amongst", "the", "ruling", "ccm", "-", "party", ",", "that", "it", "may", "really", "face", "a", "challenge", ".", "\"", "hard", "times", "for", "election", "fraud", "for", "sudan", ",", "togo", ",", "guinea", "-", "conakry", "and", "ivory", "coast", ",", "leaders", "remained", "in", "power", ".", "in", "ethiopia", "the", "ruling", "government", "obtained", "100", "percent", "according", "to", "official", "results", ".", "every", "country", "has", "its", "own", "dynamics", "and", "its", "own", "political", "traditions", ".", "but", "developments", "like", "in", "burkina", "faso", "or", "in", "tanzania", "show", "that", "voters", "are", "becoming", "increasingly", "critical", "and", "want", "to", "make", "themselves", "heard", ".", "the", "advancement", "in", "technology", "has", "also", "eased", "the", "voting", "exercise", ".", "for", "example", "in", "nigeria", ",", "ivory", "coast", "and", "tanzania", "voters", "were", "issued", "with", "biometric", "cards", "that", "contained", "all", "data", "from", "finger", "prints", "and", "personal", "details", ".", "\"", "it", "'", "s", "no", "longer", "as", "easy", "as", "it", "was", "in", "the", "past", "to", "manipulate", "elections", "and", "to", "staff", "ballot", "boxes", ".", "the", "electronic", "voting", "and", "the", "standards", "that", "the", "international", "community", "have", "brought", "to", "bear", "on", "elections", "have", "changed", "practices", "and", "reduced", "the", "ability", "of", "governing", "parties", "and", "leaders", "to", "manipulate", "the", "results", ",", "\"", "said", "cilliers", ".", "a", "technology", "that", "prevents", "misuse", "of", "power", "has", "not", "yet", "been", "invented", ".", "the", "new", "year", "therefore", ",", "compared", "to", "the", "year", "2015", ",", "is", "not", "promising", "much", ".", "in", "the", "democratic", "republic", "of", "congo", "and", "in", "neighboring", "congo", "-", "brazzaville", "voters", "will", "head", "to", "the", "polls", "to", "elect", "new", "leaders", ".", "president", "sassou", "-", "nguesso", "lately", "set", "the", "course", "for", "his", "re", "-", "election", ".", "he", "changed", "the", "constitution", "making", "it", "possible", "for", "him", "to", "run", "for", "a", "third", "term", ".", "this", "was", "then", "passed", "in", "a", "disputed", "referendum", ".", "there", "were", "protests", "against", "the", "referendum", "which", "led", "to", "deaths", "and", "casualties", ".", "in", "the", "drc", ",", "a", "lot", "suggests", "that", "president", "joseph", "kabila", "will", "not", "abide", "by", "the", "constitution", "and", "step", "down", "after", "his", "two", "terms", ".", "recently", "he", "fired", "seven", "politicians", "in", "his", "coalition", ",", "after", "they", "asked", "him", "to", "abide", "by", "the", "constitution", ".", "rwanda", "'", "s", "leader", "paul", "kagame", "should", "also", "leave", "office", "in", "2017", ",", "but", "has", "announced", "his", "intention", "to", "get", "re", "-", "elected", "for", "a", "third", "term", "after", "parliament", "amended", "the", "constitution", "."], "simple_tokens_original_case": ["By", "Madelaine", "Meier", "The", "year", "2015", "will", "go", "down", "in", "history", "as", "one", "of", "elections", "in", "Africa", ".", "Overall", "there", "were", "thirteen", "of", "them", ".", "According", "to", "observers", ",", "eligible", "voters", "realized", "the", "importance", "and", "civic", "duty", "to", "take", "part", "in", "the", "elections", ".", "For", "the", "first", "time", "in", "Nigeria", "'", "s", "history", ",", "a", "sitting", "president", "was", "defeated", "and", "accepted", "the", "outcome", "of", "the", "election", ".", "He", "later", "willingly", "handed", "over", "power", "to", "his", "main", "rival", ".", "In", "this", "case", "it", "was", "Goodluck", "Jonathan", "handing", "over", "power", "to", "Muhammadu", "Buhari", ".", "Six", "months", "later", "it", "was", "Burkina", "Faso", "'", "s", "turn", "to", "elect", "its", "new", "leader", ".", "Voters", "endured", "long", "queues", "at", "polling", "stations", "to", "elect", "a", "new", "leader", ",", "knowing", "that", "this", "time", "their", "vote", "counted", ",", "unlike", "in", "the", "past", "three", "decades", "under", "Blaise", "Compaore", "'", "s", "rule", "when", "the", "results", "were", "long", "certain", ".", "Elsewhere", "in", "Burundi", "violence", "erupted", "over", "President", "Pierre", "Nkuruziza", "'", "s", "third", "term", "bid", "in", "office", ".", "Like", "was", "the", "case", "in", "2014", "in", "Burkina", "Faso", ",", "citizens", "and", "human", "rights", "activists", "protested", "in", "Burundi", "against", "their", "president", "'", "s", "thirst", "for", "power", "as", "he", ",", "with", "the", "help", "of", "the", "state", "apparatus", "went", "ahead", "and", "run", "for", "a", "third", "term", ".", "His", "government", "violently", "crushed", "the", "protests", "and", "systematically", "embarked", "on", "a", "crackdown", "of", "the", "opposition", "and", "rights", "activists", ".", "Nkuruziza", "was", "again", "elected", "in", "July", "-", "many", "of", "his", "critics", "have", "since", "fled", "the", "country", ".", "In", "the", "constitutions", "of", "many", "African", "countries", ",", "the", "presidential", "term", "is", "restricted", "to", "two", ",", "like", "in", "Burundi", ".", "This", "does", "not", "always", "hold", ".", "\"", "So", "this", "contradiction", "between", "leaders", "seeking", "their", "third", "term", "and", "protesters", "and", "voters", "standing", "against", "that", ",", "is", "certainly", "an", "interesting", "new", "trend", "in", "African", "politics", ",", "\"", "said", "Jakkie", "Cilliers", ",", "executive", "director", "of", "the", "Institute", "for", "Security", "Studies", "(", "ISS", ")", "in", "Pretoria", ".", "However", "Cilliers", "also", "told", "DW", "that", "this", "varies", "from", "one", "country", "to", "another", ".", "\"", "Previously", "voters", "accepted", "that", "leaders", "have", "an", "inevitable", "right", "to", "stay", "in", "power", "for", "almost", "as", "long", "as", "they", "want", "to", ".", "And", "that", "certainly", "is", "changing", ",", "\"", "he", "said", ".", "Elections", "are", "no", "longer", "an", "easy", "way", "for", "the", "government", "to", "secure", "its", "power", ".", "Voters", "have", "become", "activists", ".", "Voters", "'", "choice", "The", "most", "thrilling", "election", "according", "Ulf", "Engel", ",", "a", "professor", "of", "African", "Studies", "at", "the", "University", "of", "Leipzig", ",", "was", "the", "one", "held", "in", "Tanzania", ".", "Unlike", "Zimbabwe", "'", "s", "Robert", "Mugabe", "and", "Uganda", "'", "s", "Yoweri", "Museveni", "who", "are", "still", "clinging", "on", "to", "power", ",", "President", "Jakaya", "Kikwete", "did", "not", "run", "for", "presidency", "after", "the", "end", "of", "his", "two", "terms", ".", "He", "made", "way", "for", "a", "new", "president", ".", "Observers", "had", "predicted", "a", "neck", "-", "and", "-", "neck", "race", "between", "the", "ruling", "Chama", "Cha", "Mapinduzi", "(", "CCM", ")", "party", "and", "the", "opposition", ".", "But", "the", "results", "in", "the", "end", "did", "not", "quite", "turn", "out", "as", "expected", ".", "\"", "The", "ruling", "party", "was", "worried", "that", "would", "sail", "through", "smoothly", ",", "\"", "said", "Engel", ".", "Nevertheless", "John", "Magufuli", "-", "the", "ruling", "party", "'", "s", "candidate", "-", "won", "the", "election", ".", "Cilliers", "agrees", "that", "Tanzania", "is", "a", "good", "example", ",", "of", "increasing", "pressure", "on", "the", "rulers", ".", "\"", "For", "the", "first", "time", "there", "was", "a", "relative", "sense", "of", "unease", "amongst", "the", "ruling", "CCM", "-", "party", ",", "that", "it", "may", "really", "face", "a", "challenge", ".", "\"", "Hard", "times", "for", "election", "fraud", "For", "Sudan", ",", "Togo", ",", "Guinea", "-", "Conakry", "and", "Ivory", "Coast", ",", "leaders", "remained", "in", "power", ".", "In", "Ethiopia", "the", "ruling", "government", "obtained", "100", "percent", "according", "to", "official", "results", ".", "Every", "country", "has", "its", "own", "dynamics", "and", "its", "own", "political", "traditions", ".", "But", "developments", "like", "in", "Burkina", "Faso", "or", "in", "Tanzania", "show", "that", "voters", "are", "becoming", "increasingly", "critical", "and", "want", "to", "make", "themselves", "heard", ".", "The", "advancement", "in", "technology", "has", "also", "eased", "the", "voting", "exercise", ".", "For", "example", "in", "Nigeria", ",", "Ivory", "Coast", "and", "Tanzania", "voters", "were", "issued", "with", "biometric", "cards", "that", "contained", "all", "data", "from", "finger", "prints", "and", "personal", "details", ".", "\"", "It", "'", "s", "no", "longer", "as", "easy", "as", "it", "was", "in", "the", "past", "to", "manipulate", "elections", "and", "to", "staff", "ballot", "boxes", ".", "The", "electronic", "voting", "and", "the", "standards", "that", "the", "international", "community", "have", "brought", "to", "bear", "on", "elections", "have", "changed", "practices", "and", "reduced", "the", "ability", "of", "governing", "parties", "and", "leaders", "to", "manipulate", "the", "results", ",", "\"", "said", "Cilliers", ".", "A", "technology", "that", "prevents", "misuse", "of", "power", "has", "not", "yet", "been", "invented", ".", "The", "New", "Year", "therefore", ",", "compared", "to", "the", "year", "2015", ",", "is", "not", "promising", "much", ".", "In", "the", "Democratic", "Republic", "of", "Congo", "and", "in", "neighboring", "Congo", "-", "Brazzaville", "voters", "will", "head", "to", "the", "polls", "to", "elect", "new", "leaders", ".", "President", "Sassou", "-", "Nguesso", "lately", "set", "the", "course", "for", "his", "re", "-", "election", ".", "He", "changed", "the", "constitution", "making", "it", "possible", "for", "him", "to", "run", "for", "a", "third", "term", ".", "This", "was", "then", "passed", "in", "a", "disputed", "referendum", ".", "There", "were", "protests", "against", "the", "referendum", "which", "led", "to", "deaths", "and", "casualties", ".", "In", "the", "DRC", ",", "a", "lot", "suggests", "that", "President", "Joseph", "Kabila", "will", "not", "abide", "by", "the", "constitution", "and", "step", "down", "after", "his", "two", "terms", ".", "Recently", "he", "fired", "seven", "politicians", "in", "his", "coalition", ",", "after", "they", "asked", "him", "to", "abide", "by", "the", "constitution", ".", "Rwanda", "'", "s", "leader", "Paul", "Kagame", "should", "also", "leave", "office", "in", "2017", ",", "but", "has", "announced", "his", "intention", "to", "get", "re", "-", "elected", "for", "a", "third", "term", "after", "parliament", "amended", "the", "constitution", "."]}, "title": {"text": " Africa's Election Year 2015 - a Long Way to Democracy? - allAfrica.com ", "simple_tokens": ["africa", "'", "s", "election", "year", "2015", "-", "a", "long", "way", "to", "democracy", "?", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Africa", "'", "s", "Election", "Year", "2015", "-", "a", "Long", "Way", "to", "Democracy", "?", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:09.736732", "@etk_process_time": 0.746164083480835, "@etk_start_time": "2018-06-07T17:34:08.990568"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Africa's Election Year 2015 - a Long Way to Democracy? - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 1 January 2016\n
\n \n \n

\n Africa's Election Year 2015 - a Long Way to Democracy?\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Madelaine Meier\n \n

\n \n The year 2015 will go down in history as one of elections in Africa. Overall there were thirteen of them. According to observers, eligible voters realized the importance and civic duty to take part in the elections.\n \n

\n

\n For the first time in Nigeria's history, a sitting president was defeated and accepted the outcome of the election. He later willingly handed over power to his main rival. In this case it was Goodluck Jonathan handing over power to Muhammadu Buhari.\n

\n

\n Six months later it was Burkina Faso's turn to elect its new leader. Voters endured long queues at polling stations to elect a new leader, knowing that this time their vote counted, unlike in the past three decades under Blaise Compaore's rule when the results were long certain.\n

\n

\n Elsewhere in Burundi violence erupted over President Pierre Nkuruziza's third term bid in office. Like was the case in 2014 in Burkina Faso, citizens and human rights activists protested in Burundi against their president's thirst for power as he, with the help of the state apparatus went ahead and run for a third term. His government violently crushed the protests and systematically embarked on a crackdown of the opposition and rights activists. Nkuruziza was again elected in July - many of his critics have since fled the country.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n In the constitutions of many African countries, the presidential term is restricted to two, like in Burundi. This does not always hold. \"So this contradiction between leaders seeking their third term and protesters and voters standing against that, is certainly an interesting new trend in African politics,\" said Jakkie Cilliers, executive director of the Institute for Security Studies (ISS) in Pretoria.\n

\n

\n However Cilliers also told DW that this varies from one country to another. \"Previously voters accepted that leaders have an inevitable right to stay in power for almost as long as they want to. And that certainly is changing,\" he said. Elections are no longer an easy way for the government to secure its power. Voters have become activists.\n

\n

\n \n Voters' choice\n \n

\n

\n The most thrilling election according Ulf Engel, a professor of African Studies at the University of Leipzig, was the one held in Tanzania. Unlike Zimbabwe's Robert Mugabe and Uganda's Yoweri Museveni who are still clinging on to power, President Jakaya Kikwete did not run for presidency after the end of his two terms. He made way for a new president.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n

\n Observers had predicted a neck-and-neck race between the ruling Chama Cha Mapinduzi (CCM) party and the opposition. But the results in the end did not quite turn out as expected. \"The ruling party was worried that would sail through smoothly,\" said Engel. Nevertheless John Magufuli - the ruling party's candidate - won the election. Cilliers agrees that Tanzania is a good example, of increasing pressure on the rulers. \"For the first time there was a relative sense of unease amongst the ruling CCM-party, that it may really face a challenge.\"\n

\n

\n \n Hard times for election fraud\n \n

\n

\n For Sudan, Togo, Guinea-Conakry and Ivory Coast, leaders remained in power. In Ethiopia the ruling government obtained 100 percent according to official results. Every country has its own dynamics and its own political traditions. But developments like in Burkina Faso or in Tanzania show that voters are becoming increasingly critical and want to make themselves heard.\n

\n

\n The advancement in technology has also eased the voting exercise. For example in Nigeria, Ivory Coast and Tanzania voters were issued with biometric cards that contained all data from finger prints and personal details.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n \"It's no longer as easy as it was in the past to manipulate elections and to staff ballot boxes. The electronic voting and the standards that the international community have brought to bear on elections have changed practices and reduced the ability of governing parties and leaders to manipulate the results,\" said Cilliers.\n

\n

\n A technology that prevents misuse of power has not yet been invented. The New Year therefore, compared to the year 2015, is not promising much. In the Democratic Republic of Congo and in neighboring Congo-Brazzaville voters will head to the polls to elect new leaders.\n

\n

\n President Sassou-Nguesso lately set the course for his re-election. He changed the constitution making it possible for him to run for a third term. This was then passed in a disputed referendum. There were protests against the referendum which led to deaths and casualties.\n

\n

\n In the DRC, a lot suggests that President Joseph Kabila will not abide by the constitution and step down after his two terms. Recently he fired seven politicians in his coalition, after they asked him to abide by the constitution. Rwanda's leader Paul Kagame should also leave office in 2017, but has announced his intention to get re-elected for a third term after parliament amended the constitution.\n

\n
\n
\n
\n \n
\n
\n
\n
\n
\n \n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Deutsche Welle. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505", "document_id": "02F49A690FEE7E1D7D9F3BBC66D0582B6C33B8771E9E14EDB1CB80105104F505"} +{"url": "http://www.ce_news_article.org/2016/01/04/201601040001.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 12, "end": 14, "input": "tokens", "text": ". Assistant Secretary of State Johnnie Carson guest column By Johnnie Carson "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}, {"source": {"segment": "content_strict", "context": {"start": 17, "end": 19, "input": "tokens", "text": "Johnnie Carson guest column By Johnnie Carson Washington , DC \u2014 After "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}, {"source": {"segment": "content_strict", "context": {"start": 69, "end": 71, "input": "tokens", "text": "before he leaves , writes Johnnie Carson , the United States ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}, {"source": {"segment": "content_relaxed", "context": {"start": 31, "end": 33, "input": "tokens", "text": ". Assistant Secretary of State Johnnie Carson guest column By Johnnie Carson "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}, {"source": {"segment": "content_relaxed", "context": {"start": 36, "end": 38, "input": "tokens", "text": "Johnnie Carson guest column By Johnnie Carson Washington , DC \u2014 After "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}, {"source": {"segment": "content_relaxed", "context": {"start": 88, "end": 90, "input": "tokens", "text": "before he leaves , writes Johnnie Carson , the United States ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Johnnie Carson"}], "key": "johnnie carson", "value": "Johnnie Carson"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 30, "end": 32, "input": "tokens", "text": "years in office , President Barack Obama has already engaged more broadly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Barack Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 49, "end": 51, "input": "tokens", "text": "years in office , President Barack Obama has already engaged more broadly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Barack Obama"}], "key": "barack obama", "value": "Barack Obama"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 89, "end": 90, "input": "tokens", "text": "first Obama administration . President Obama has significantly elevated and transformed "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 275, "end": 276, "input": "tokens", "text": "of young leaders , President Obama established YALI - the Young "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 355, "end": 356, "input": "tokens", "text": ": Visit Nigeria : President Obama has traveled to Africa five "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 615, "end": 616, "input": "tokens", "text": "in July 2009 , President Obama spoke eloquently before the Ghanaian "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 896, "end": 897, "input": "tokens", "text": "Africa is one of President Obama ' s most important signature "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 1814, "end": 1815, "input": "tokens", "text": "he leaves office , President Obama should take one more step "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 2336, "end": 2337, "input": "tokens", "text": "the only thing on President Obama ' s Africa agenda for "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 108, "end": 109, "input": "tokens", "text": "first Obama administration . President Obama has significantly elevated and transformed "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 294, "end": 295, "input": "tokens", "text": "of young leaders , President Obama established YALI - the Young "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 374, "end": 375, "input": "tokens", "text": ": Visit Nigeria : President Obama has traveled to Africa five "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 634, "end": 635, "input": "tokens", "text": "in July 2009 , President Obama spoke eloquently before the Ghanaian "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 915, "end": 916, "input": "tokens", "text": "Africa is one of President Obama ' s most important signature "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 1833, "end": 1834, "input": "tokens", "text": "he leaves office , President Obama should take one more step "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 2355, "end": 2356, "input": "tokens", "text": "the only thing on President Obama ' s Africa agenda for "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}], "key": "obama", "value": "Obama"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 504, "end": 506, "input": "tokens", "text": "safely to Nairobi , where al Shabaab has carried out high profile "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al Shabaab"}, {"source": {"segment": "content_relaxed", "context": {"start": 523, "end": 525, "input": "tokens", "text": "safely to Nairobi , where al Shabaab has carried out high profile "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "al Shabaab"}], "key": "al shabaab", "value": "al Shabaab"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 890, "end": 892, "input": "tokens", "text": "the Electrify Africa legislation : Power Africa is one of President Obama "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_strict", "context": {"start": 948, "end": 950, "input": "tokens", "text": "recent White House initiatives , Power Africa is not backed by any "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 909, "end": 911, "input": "tokens", "text": "the Electrify Africa legislation : Power Africa is one of President Obama "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 967, "end": 969, "input": "tokens", "text": "recent White House initiatives , Power Africa is not backed by any "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}], "key": "power africa", "value": "Power Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1190, "end": 1192, "input": "tokens", "text": "post - election violence . Invite Tanzania ' s newly elected President "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Invite Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1209, "end": 1211, "input": "tokens", "text": "post - election violence . Invite Tanzania ' s newly elected President "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Invite Tanzania"}], "key": "invite tanzania", "value": "Invite Tanzania"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1197, "end": 1199, "input": "tokens", "text": "' s newly elected President John Magufuli to the White House : "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Magufuli"}, {"source": {"segment": "content_relaxed", "context": {"start": 1216, "end": 1218, "input": "tokens", "text": "' s newly elected President John Magufuli to the White House : "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Magufuli"}], "key": "john magufuli", "value": "John Magufuli"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1276, "end": 1279, "input": "tokens", "text": "Zanzibar were disputed . President John Pombe Magufuli , a reform - minded "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Pombe Magufuli"}, {"source": {"segment": "content_relaxed", "context": {"start": 1295, "end": 1298, "input": "tokens", "text": "Zanzibar were disputed . President John Pombe Magufuli , a reform - minded "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Pombe Magufuli"}], "key": "john pombe magufuli", "value": "John Pombe Magufuli"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1311, "end": 1312, "input": "tokens", "text": "a row . Although the Zanzibar election remains unresolved , it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zanzibar"}, {"source": {"segment": "content_relaxed", "context": {"start": 1330, "end": 1331, "input": "tokens", "text": "a row . Although the Zanzibar election remains unresolved , it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zanzibar"}], "key": "zanzibar", "value": "Zanzibar"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1352, "end": 1353, "input": "tokens", "text": "is particularly important since President Magufuli does not have any major "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magufuli"}, {"source": {"segment": "content_strict", "context": {"start": 1393, "end": 1394, "input": "tokens", "text": "Early political consultations with President Magufuli and his new foreign minister "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magufuli"}, {"source": {"segment": "content_relaxed", "context": {"start": 1371, "end": 1372, "input": "tokens", "text": "is particularly important since President Magufuli does not have any major "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magufuli"}, {"source": {"segment": "content_relaxed", "context": {"start": 1412, "end": 1413, "input": "tokens", "text": "Early political consultations with President Magufuli and his new foreign minister "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Magufuli"}], "key": "magufuli", "value": "Magufuli"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1400, "end": 1401, "input": "tokens", "text": "his new foreign minister , Dr . Augustine Mahiga , could "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_relaxed", "context": {"start": 1419, "end": 1420, "input": "tokens", "text": "his new foreign minister , Dr . Augustine Mahiga , could "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}], "key": "dr", "value": "Dr"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1402, "end": 1404, "input": "tokens", "text": "foreign minister , Dr . Augustine Mahiga , could prove valuable in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Mahiga"}, {"source": {"segment": "content_relaxed", "context": {"start": 1421, "end": 1423, "input": "tokens", "text": "foreign minister , Dr . Augustine Mahiga , could prove valuable in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Augustine Mahiga"}], "key": "augustine mahiga", "value": "Augustine Mahiga"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1421, "end": 1423, "input": "tokens", "text": ". Send Secretary of State John Kerry to Rwanda , Burundi , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Kerry"}, {"source": {"segment": "content_relaxed", "context": {"start": 1440, "end": 1442, "input": "tokens", "text": ". Send Secretary of State John Kerry to Rwanda , Burundi , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "John Kerry"}], "key": "john kerry", "value": "John Kerry"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1551, "end": 1552, "input": "tokens", "text": "An extended visit by Secretary Kerry to the DRC , Uganda "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kerry"}, {"source": {"segment": "content_relaxed", "context": {"start": 1570, "end": 1571, "input": "tokens", "text": "An extended visit by Secretary Kerry to the DRC , Uganda "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kerry"}], "key": "kerry", "value": "Kerry"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1739, "end": 1740, "input": "tokens", "text": "once had one , or Kano would convey a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kano"}, {"source": {"segment": "content_relaxed", "context": {"start": 1758, "end": 1759, "input": "tokens", "text": "once had one , or Kano would convey a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kano"}], "key": "kano", "value": "Kano"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1921, "end": 1922, "input": "tokens", "text": "( Nor have Cuba , Myanmar or Iran . ) The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Myanmar"}, {"source": {"segment": "content_relaxed", "context": {"start": 1940, "end": 1941, "input": "tokens", "text": "( Nor have Cuba , Myanmar or Iran . ) The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Myanmar"}], "key": "myanmar", "value": "Myanmar"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2054, "end": 2058, "input": "tokens", "text": "and its demands that President Omar al - Bashir address the serious human rights "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Omar al - Bashir"}, {"source": {"segment": "content_relaxed", "context": {"start": 2073, "end": 2077, "input": "tokens", "text": "and its demands that President Omar al - Bashir address the serious human rights "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Omar al - Bashir"}], "key": "omar al - bashir", "value": "Omar al - Bashir"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2387, "end": 2389, "input": "tokens", "text": "last year in office . Ambassador Carson was the U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ambassador Carson"}, {"source": {"segment": "content_relaxed", "context": {"start": 2406, "end": 2408, "input": "tokens", "text": "last year in office . Ambassador Carson was the U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ambassador Carson"}], "key": "ambassador carson", "value": "Ambassador Carson"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 8, "end": 10, "input": "tokens", "text": "Africa : What Obama Still Owes Africa ( a Visit to Nigeria "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owes Africa"}, {"source": {"segment": "title", "context": {"start": 5, "end": 7, "input": "tokens", "text": "Africa : What Obama Still Owes Africa ( a Visit to Nigeria "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Owes Africa"}], "key": "owes africa", "value": "Owes Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 16, "end": 18, "input": "tokens", "text": "a Visit to Nigeria for One Thing ) Photo : AllAfrica Former "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "One Thing"}], "key": "one thing", "value": "One Thing"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 2487, "end": 2488, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 13, "end": 18, "input": "tokens", "text": "a Visit to Nigeria for One Thing ) - allAfrica . com "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "One Thing ) - allAfrica"}], "key": "one thing ) - allafrica", "value": "One Thing ) - allAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "method": "rearrange_description"}], "key": "description", "value": "

Photo:

AllAfrica

Former U.S. Assistant Secretary of State Johnnie Carson

guest column

By Johnnie Carson

Washington, DC \u2014

After seven years in office, President Barack Obama has already engaged more broadly on Africa than any previous American president, but with one year remaining in the White House, there are still a few things he should do before he leaves, writes

Johnnie Carson

, the United States' top policy-maker on Africa in the first Obama administration.

President Obama has significantly elevated and transformed America's engagement with Africa, traveling widely across the continent, championing the renewal of several old programs and launching a series of highly focused new initiatives that could help speed-up Africa's economic development.

He has been particularly active in promoting economic and development issues.

He fought successfully for the renewal and extension of the African Growth and Opportunity Act (AGOA), America's most important trade legislation with Africa; he hosted the first U.S.-Africa Leadership Summit, attended by 37 heads of state; and he has established several important new economic programs, including \"Power Africa\" - to expand significantly electrical access across the continent; \"Feed the Future\" - to increase household food production and to generate a green revolution throughout Africa, and \"Trade Africa\" - to expand substantially trade between Africa and the United States.

Recognizing the growing role of the continent's next generation of young leaders, President Obama established YALI - the Young African Leaders Initiative, a program that will bring 500 young African entrepreneurs, professionals and community organizers to the U.S. each year for the next several years for five weeks of leadership, organization and management training.

But what next?

Despite his rather impressive list of accomplishments, here are ten things the president should do before he leaves office in January 2017:

Visit Nigeria:

President Obama has traveled to Africa five times during his presidency - but he has not visited Nigeria, the continent's economic, political, communications and petroleum giant, and its most important state. It is the continent's largest economy - almost twice the size of South Africa's and a third larger than that of Egypt.

It is also the continent's most populous state, with 180 million people, its largest Muslim country, and its largest democracy.

The president has visited every major country on the continent except Nigeria, and it would be a mistake for him to leave the White House without a stop in Lagos or Abuja.

Some have suggested that security may be a concern because of Boko Haram, but if the president can travel safely to Nairobi, where al Shabaab has carried out high profile attacks in the center of the city, he should be able to travel safely to Abuja or Lagos. He is bound to make one more trip to Europe, and a stop in Nigeria - similar to his 2009 visit to Ghana - would not be a major diversion.

Co-host a regional summit on democracy in west Africa:

Strengthening democracy institutions, promoting good governance and supporting free and fair elections has been a major priority for the Obama administration in Africa.

During his first official visit to the continent as president in July 2009, President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy and good governance and the need to create \"more strong institutions, not more strong men.\" With a growing number of African leaders attempting to extend their terms of office, democracy remains fragile across the continent. The president could give democracy in Africa a boost and reaffirm America's strong commitment to Africa's political progress by hosting a conference in West Africa with the democratically-elected leaders of Benin, Burkina Faso, Cape Verde, Liberia, Niger, Nigeria, Mali, Mauritania, Senegal, Sierra Leone and Togo.

Support Nigeria's permanent membership in the G20:

President Obama has said that he wants to ensure that Africa has a place at the table to participate in the deliberations concerning major global political and economic issues. One way to accomplish that is to expand or reorganize the G20 group of nations to include Nigeria as a permanent member of this important global organization.

Nigeria is already more important than several of the current G20 members, notably Argentina and South Africa, and over the next two decades it will become one of the world's mega states, eclipsing several other G20 members in the size of its economy, population and regional influence. It would also be one of the G20's largest democracies. The administration should make the inclusion of Nigeria a priority over the next 12 months.

Press for the passage of the Electrify Africa legislation:

Power Africa is one of President Obama's most important signature initiatives. In the world's most energy deficient and starved continent, it is intended to increase Africa's power output by 30,000 megawatts over the next decade or two.

But like a number of recent White House initiatives, Power Africa is not backed by any legislative mandate and could be easily brushed aside after the Obama administration leaves office. The program enjoys bi-partisan support in the Congress and the administration needs to work with congressional leaders to prioritize the passage of the Electrify Africa legislation. At the same time, the administration needs to create a senior level \"Power Africa czar\" to manage the program and consider moving interagency responsibility for oversight from USAID to a cabinet level department.

Instruct USAID to establish a permanent democracy fund:

If democracy promotion is an important priority, it should be funded adequately and on a long-term basis. Today that is not the case. Funding for democracy has declined sharply during Obama's second term despite the president's recent speeches in Nairobi and Addis Ababa, and at the 70th session of the United Nations General Assembly in New York.

Dedicated and hard-to-reprogram funds should be allocated to strengthen African judiciaries and legislatures, to promote civil society groups and the media, to assist women's organizations and youth groups and to support domestic and international election monitoring. Funds should also be made available to assist local organizations to undertake parallel vote counts, to aid local election commissions and to prevent pre- and post-election violence.

Invite Tanzania's newly elected President John Magufuli to the White House:

Tanzania is the most populous state and the largest democracy in East Africa. It is also one of the largest recipients of U.S. development assistance and a participant in all of Washington's major economic initiatives.

In late October, Tanzania held presidential and parliamentary elections.The elections on the mainland went well, but those on the island of Zanzibar were disputed. President John Pombe Magufuli, a reform-minded academic-turned-politician, was elected without dispute, making him Tanzania's fifth democratically-elected president in a row. Although the Zanzibar election remains unresolved, it is important to reach out to Tanzania's new president early in his tenure to continue to foster the strong relationship between Dar es Salaam and Washington.

This is particularly important since President Magufuli does not have any major ties with the United States.Tanzania also has a critical role to play in East African peace-building issues, particularly in Burundi and the eastern Congo. Early political consultations with President Magufuli and his new foreign minister, Dr. Augustine Mahiga, could prove valuable in promoting stability in the Great Lakes region.

Send Secretary of State John Kerry to Rwanda, Burundi, the Democratic Republic of Congo (DRC), Uganda and the Republic of the Congo:

The Great Lakes Region of Central Africa is one of the most volatile and unstable regions in Africa, with daily political and ethnic violence in Burundi, and with the leaders of Rwanda, the DRC and the Congo threatening to extend themselves in office in violation of their constitutions.

Although time is running out, there is still an opportunity to prevent further democratic backsliding and the serious instability and violence that will almost certainly be unleashed - as we are already seeing in Burundi. High level engagement with the leaders in the region is required.

An extended visit by Secretary Kerry to the DRC, Uganda, Rwanda and Burundi would be a strong signal of Washington's deep concern and interest in the region's negative political and security trajectory. Without serious engagement with the leaders on the ground, there will be no meaningful progress.

Open a U.S. consulate in northern Nigeria and a full embassy in Mogadishu:

The establishment of a consulate in northern Nigeria is long overdue. More than half of Nigeria's 180 million people live in the northern part of the country, an area of serious political and security concern. It is also the largest Muslim region in Africa and the largest Muslim region in the world where there is no full-time U.S. diplomatic presence.

A U.S. diplomatic mission would advance long-term political, economic and security interests in the region and help Nigeria to deal with the economic, social and security challenges it faces there. A consulate in Kaduna, which once had one, or Kano would convey a strong signal to the Muslim community that Washington genuinely cares about the people in the region.

Once the global poster child of a failed state, Somalia has made significant progress over the past seven years. In recognition of the progress, the U.S. re-established formal diplomatic relations with the Somali government in Mogadishu in January 2013.

Before he leaves office, President Obama should take one more step. He should reaffirm Washington's commitment to Somalia and recognize the country's continuing progress by appointing a Senate-approved ambassador and opening a small, secure diplomatic embassy compound in downtown Mogadishu.

Elevate U.S. diplomatic relations with Sudan:

Relations between Washington and Khartoum have been prickly and frequently difficult for over two decades and the U.S. has not had a fully accredited, Senate-approved ambassador in Sudan since 1997.

The Khartoum government has not been a good international actor. (Nor have Cuba, Myanmar or Iran.) The regime in Sudan has carried out mass atrocities in Darfur, prevented UN organizations from delivering food aid and humanitarian assistance to those in need and meddled in the affairs of several of its neighbors.

But U.S.-imposed comprehensive sanctions on Khartoum have not isolated the country nor weakened its government. The U.S. should review its current policies toward Khartoum, and consider elevating its diplomatic relationship to full ambassadorial status in order to expand America's dialogue and probe for new openings to resolve some of the country's domestic and regional issues. The U.S. can do this while maintaining its sanctions regime on the government and its demands that President Omar al-Bashir address the serious human rights charges against him.

Provide a status report on the results of the U.S.-Africa Leadership Summit:

The U.S. Africa Leadership Summit has been one of the high points in the Obama administration's engagements in Africa.

Leaders from 50 different countries participated in this first-of-a-kind gathering in Washington. A number of new programs were announced and a major business conference associated with the summit brought dozens of senior American business leaders into direct contact - many for the very first time - with African heads of state and prominent business leaders from the continent.

The administration has never released a comprehensive report on the summit or a one-year progress report on the implementation of summit agreements. The issuance of some type of status report would be a useful vehicle for identifying summit objectives and initiatives as well as tracking the progress of the administration's efforts. The administration should do everything it can to sustain the goodwill and policy initiatives that emerged from the summit to help ensure that it does not become a one-off event.

The administration should be applauded for its continuing efforts to promote greater American trade and commerce with Africa. The president has already announced that he plans to host another U.S.-Africa Business Summit similar to the day-long event his administration hosted during the 2014 Leadership Summit. The Business Summit is important, but it should not be the only thing on President Obama's Africa agenda for 2016. He has time to do more, and he should. Twelve months is a long time in the life of an administration and his foreign policy team should be building a more robust African agenda for his last year in office.

Ambassador Carson was the U.S.

Assistant Secretary of State for African Affairs

from 2009 to 2012. He is currently a Senior Advisor at the

United States Institute of Peace.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 38, "end": 39, "input": "tokens", "text": "already engaged more broadly on Africa than any previous American president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 81, "end": 82, "input": "tokens", "text": "top policy - maker on Africa in the first Obama administration "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 100, "end": 101, "input": "tokens", "text": "America ' s engagement with Africa , traveling widely across the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 130, "end": 131, "input": "tokens", "text": "could help speed - up Africa ' s economic development . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 175, "end": 176, "input": "tokens", "text": "most important trade legislation with Africa ; he hosted the first "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 240, "end": 241, "input": "tokens", "text": "generate a green revolution throughout Africa , and \" Trade Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 253, "end": 254, "input": "tokens", "text": "to expand substantially trade between Africa and the United States . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 359, "end": 360, "input": "tokens", "text": "President Obama has traveled to Africa five times during his presidency "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 573, "end": 574, "input": "tokens", "text": "summit on democracy in west Africa : Strengthening democracy institutions , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 598, "end": 599, "input": "tokens", "text": "for the Obama administration in Africa . During his first official "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 674, "end": 675, "input": "tokens", "text": "president could give democracy in Africa a boost and reaffirm America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 685, "end": 686, "input": "tokens", "text": "' s strong commitment to Africa ' s political progress by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 749, "end": 750, "input": "tokens", "text": "he wants to ensure that Africa has a place at the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 921, "end": 922, "input": "tokens", "text": "it is intended to increase Africa ' s power output by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 1667, "end": 1668, "input": "tokens", "text": "the largest Muslim region in Africa and the largest Muslim region "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 2108, "end": 2109, "input": "tokens", "text": "administration ' s engagements in Africa . Leaders from 50 different "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 2283, "end": 2284, "input": "tokens", "text": "American trade and commerce with Africa . The president has already "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_strict", "context": {"start": 2339, "end": 2340, "input": "tokens", "text": "on President Obama ' s Africa agenda for 2016 . He "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 57, "end": 58, "input": "tokens", "text": "already engaged more broadly on Africa than any previous American president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 100, "end": 101, "input": "tokens", "text": "top policy - maker on Africa in the first Obama administration "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 119, "end": 120, "input": "tokens", "text": "America ' s engagement with Africa , traveling widely across the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 149, "end": 150, "input": "tokens", "text": "could help speed - up Africa ' s economic development . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 194, "end": 195, "input": "tokens", "text": "most important trade legislation with Africa ; he hosted the first "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 259, "end": 260, "input": "tokens", "text": "generate a green revolution throughout Africa , and \" Trade Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 272, "end": 273, "input": "tokens", "text": "to expand substantially trade between Africa and the United States . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 378, "end": 379, "input": "tokens", "text": "President Obama has traveled to Africa five times during his presidency "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 592, "end": 593, "input": "tokens", "text": "summit on democracy in west Africa : Strengthening democracy institutions , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 617, "end": 618, "input": "tokens", "text": "for the Obama administration in Africa . During his first official "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 693, "end": 694, "input": "tokens", "text": "president could give democracy in Africa a boost and reaffirm America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 704, "end": 705, "input": "tokens", "text": "' s strong commitment to Africa ' s political progress by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 768, "end": 769, "input": "tokens", "text": "he wants to ensure that Africa has a place at the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 940, "end": 941, "input": "tokens", "text": "it is intended to increase Africa ' s power output by "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1686, "end": 1687, "input": "tokens", "text": "the largest Muslim region in Africa and the largest Muslim region "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 2127, "end": 2128, "input": "tokens", "text": "administration ' s engagements in Africa . Leaders from 50 different "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 2302, "end": 2303, "input": "tokens", "text": "American trade and commerce with Africa . The president has already "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 2358, "end": 2359, "input": "tokens", "text": "on President Obama ' s Africa agenda for 2016 . He "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Africa : What Obama Still Owes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 540, "end": 541, "input": "tokens", "text": "make one more trip to Europe , and a stop in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Europe"}, {"source": {"segment": "content_relaxed", "context": {"start": 559, "end": 560, "input": "tokens", "text": "make one more trip to Europe , and a stop in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Europe"}], "key": "europe", "value": "Europe"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 2547, "end": 2548, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 2575, "end": 2576, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "method": "rearrange_title"}], "key": "title", "value": " Africa: What Obama Still Owes Africa (a Visit to Nigeria for One Thing) - allAfrica.com "}], "money": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1637, "end": 1640, "input": "tokens", "text": "than half of Nigeria ' s 180 million people live in the northern "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "s 180 million"}, {"source": {"segment": "content_relaxed", "context": {"start": 1656, "end": 1659, "input": "tokens", "text": "than half of Nigeria ' s 180 million people live in the northern "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "s 180 million"}], "key": "s 180 million", "value": "s 180 million"}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 11, "end": 12, "input": "tokens", "text": "S . Assistant Secretary of State Johnnie Carson guest column By "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_strict", "context": {"start": 1420, "end": 1421, "input": "tokens", "text": "region . Send Secretary of State John Kerry to Rwanda , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_strict", "context": {"start": 2398, "end": 2399, "input": "tokens", "text": "S . Assistant Secretary of State for African Affairs from 2009 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 30, "end": 31, "input": "tokens", "text": "S . Assistant Secretary of State Johnnie Carson guest column By "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 1439, "end": 1440, "input": "tokens", "text": "region . Send Secretary of State John Kerry to Rwanda , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 2417, "end": 2418, "input": "tokens", "text": "S . Assistant Secretary of State for African Affairs from 2009 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}], "key": "state", "value": "State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 21, "end": 23, "input": "tokens", "text": "By Johnnie Carson Washington , DC \u2014 After seven years in office "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DC \u2014"}, {"source": {"segment": "content_relaxed", "context": {"start": 40, "end": 42, "input": "tokens", "text": "By Johnnie Carson Washington , DC \u2014 After seven years in office "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DC \u2014"}], "key": "dc \u2014", "value": "DC \u2014"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 51, "end": 54, "input": "tokens", "text": "with one year remaining in the White House , there are still a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the White House"}, {"source": {"segment": "content_strict", "context": {"start": 1200, "end": 1203, "input": "tokens", "text": "elected President John Magufuli to the White House : Tanzania is the most "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the White House"}, {"source": {"segment": "content_relaxed", "context": {"start": 70, "end": 73, "input": "tokens", "text": "with one year remaining in the White House , there are still a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the White House"}, {"source": {"segment": "content_relaxed", "context": {"start": 1219, "end": 1222, "input": "tokens", "text": "elected President John Magufuli to the White House : Tanzania is the most "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the White House"}], "key": "the white house", "value": "the White House"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 157, "end": 163, "input": "tokens", "text": "the renewal and extension of the African Growth and Opportunity Act ( AGOA ) , America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the African Growth and Opportunity Act"}, {"source": {"segment": "content_relaxed", "context": {"start": 176, "end": 182, "input": "tokens", "text": "the renewal and extension of the African Growth and Opportunity Act ( AGOA ) , America "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the African Growth and Opportunity Act"}], "key": "the african growth and opportunity act", "value": "the African Growth and Opportunity Act"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 164, "end": 165, "input": "tokens", "text": "Growth and Opportunity Act ( AGOA ) , America ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AGOA"}, {"source": {"segment": "content_relaxed", "context": {"start": 183, "end": 184, "input": "tokens", "text": "Growth and Opportunity Act ( AGOA ) , America ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AGOA"}], "key": "agoa", "value": "AGOA"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 209, "end": 211, "input": "tokens", "text": "economic programs , including \" Power Africa \" - to expand significantly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_strict", "context": {"start": 1013, "end": 1015, "input": "tokens", "text": "create a senior level \" Power Africa czar \" to manage the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 228, "end": 230, "input": "tokens", "text": "economic programs , including \" Power Africa \" - to expand significantly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1032, "end": 1034, "input": "tokens", "text": "create a senior level \" Power Africa czar \" to manage the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Power Africa"}], "key": "power africa", "value": "Power Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 244, "end": 246, "input": "tokens", "text": "throughout Africa , and \" Trade Africa \" - to expand substantially "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trade Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 263, "end": 265, "input": "tokens", "text": "throughout Africa , and \" Trade Africa \" - to expand substantially "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Trade Africa"}], "key": "trade africa", "value": "Trade Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 277, "end": 278, "input": "tokens", "text": "leaders , President Obama established YALI - the Young African Leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "YALI"}, {"source": {"segment": "content_relaxed", "context": {"start": 296, "end": 297, "input": "tokens", "text": "leaders , President Obama established YALI - the Young African Leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "YALI"}], "key": "yali", "value": "YALI"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 279, "end": 284, "input": "tokens", "text": "President Obama established YALI - the Young African Leaders Initiative , a program that will "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Young African Leaders Initiative"}, {"source": {"segment": "content_relaxed", "context": {"start": 298, "end": 303, "input": "tokens", "text": "President Obama established YALI - the Young African Leaders Initiative , a program that will "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Young African Leaders Initiative"}], "key": "the young african leaders initiative", "value": "the Young African Leaders Initiative"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 477, "end": 478, "input": "tokens", "text": "a stop in Lagos or Abuja . Some have suggested that "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 496, "end": 497, "input": "tokens", "text": "a stop in Lagos or Abuja . Some have suggested that "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 490, "end": 492, "input": "tokens", "text": "be a concern because of Boko Haram , but if the president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}, {"source": {"segment": "content_relaxed", "context": {"start": 509, "end": 511, "input": "tokens", "text": "be a concern because of Boko Haram , but if the president "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Boko Haram"}], "key": "boko haram", "value": "Boko Haram"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 619, "end": 622, "input": "tokens", "text": "President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Ghanaian Parliament"}, {"source": {"segment": "content_relaxed", "context": {"start": 638, "end": 641, "input": "tokens", "text": "President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Ghanaian Parliament"}], "key": "the ghanaian parliament", "value": "the Ghanaian Parliament"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 724, "end": 726, "input": "tokens", "text": ", Mauritania , Senegal , Sierra Leone and Togo . Support Nigeria "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sierra Leone"}, {"source": {"segment": "content_relaxed", "context": {"start": 743, "end": 745, "input": "tokens", "text": ", Mauritania , Senegal , Sierra Leone and Togo . Support Nigeria "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sierra Leone"}], "key": "sierra leone", "value": "Sierra Leone"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 837, "end": 838, "input": "tokens", "text": "states , eclipsing several other G20 members in the size of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "G20"}, {"source": {"segment": "content_strict", "context": {"start": 858, "end": 859, "input": "tokens", "text": "also be one of the G20 ' s largest democracies . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "G20"}, {"source": {"segment": "content_relaxed", "context": {"start": 856, "end": 857, "input": "tokens", "text": "states , eclipsing several other G20 members in the size of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "G20"}, {"source": {"segment": "content_relaxed", "context": {"start": 877, "end": 878, "input": "tokens", "text": "also be one of the G20 ' s largest democracies . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "G20"}], "key": "g20", "value": "G20"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 885, "end": 888, "input": "tokens", "text": "Press for the passage of the Electrify Africa legislation : Power Africa is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electrify Africa"}, {"source": {"segment": "content_strict", "context": {"start": 994, "end": 997, "input": "tokens", "text": "to prioritize the passage of the Electrify Africa legislation . At the same "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electrify Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 904, "end": 907, "input": "tokens", "text": "Press for the passage of the Electrify Africa legislation : Power Africa is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electrify Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1013, "end": 1016, "input": "tokens", "text": "to prioritize the passage of the Electrify Africa legislation . At the same "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Electrify Africa"}], "key": "the electrify africa", "value": "the Electrify Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 944, "end": 946, "input": "tokens", "text": "like a number of recent White House initiatives , Power Africa is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "White House"}, {"source": {"segment": "content_relaxed", "context": {"start": 963, "end": 965, "input": "tokens", "text": "like a number of recent White House initiatives , Power Africa is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "White House"}], "key": "white house", "value": "White House"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 965, "end": 966, "input": "tokens", "text": "easily brushed aside after the Obama administration leaves office . The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 2102, "end": 2103, "input": "tokens", "text": "the high points in the Obama administration ' s engagements in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 984, "end": 985, "input": "tokens", "text": "easily brushed aside after the Obama administration leaves office . The "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 2121, "end": 2122, "input": "tokens", "text": "the high points in the Obama administration ' s engagements in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}], "key": "obama", "value": "Obama"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 979, "end": 980, "input": "tokens", "text": "- partisan support in the Congress and the administration needs to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congress"}, {"source": {"segment": "content_relaxed", "context": {"start": 998, "end": 999, "input": "tokens", "text": "- partisan support in the Congress and the administration needs to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congress"}], "key": "congress", "value": "Congress"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1029, "end": 1030, "input": "tokens", "text": "interagency responsibility for oversight from USAID to a cabinet level department "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "USAID"}, {"source": {"segment": "content_relaxed", "context": {"start": 1048, "end": 1049, "input": "tokens", "text": "interagency responsibility for oversight from USAID to a cabinet level department "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "USAID"}], "key": "usaid", "value": "USAID"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1104, "end": 1109, "input": "tokens", "text": "at the 70th session of the United Nations General Assembly in New York . Dedicated "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Nations General Assembly"}, {"source": {"segment": "content_relaxed", "context": {"start": 1123, "end": 1128, "input": "tokens", "text": "at the 70th session of the United Nations General Assembly in New York . Dedicated "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Nations General Assembly"}], "key": "the united nations general assembly", "value": "the United Nations General Assembly"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1340, "end": 1343, "input": "tokens", "text": "foster the strong relationship between Dar es Salaam and Washington . This is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dar es Salaam"}, {"source": {"segment": "content_relaxed", "context": {"start": 1359, "end": 1362, "input": "tokens", "text": "foster the strong relationship between Dar es Salaam and Washington . This is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dar es Salaam"}], "key": "dar es salaam", "value": "Dar es Salaam"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1428, "end": 1432, "input": "tokens", "text": "to Rwanda , Burundi , the Democratic Republic of Congo ( DRC ) , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Democratic Republic of"}, {"source": {"segment": "content_relaxed", "context": {"start": 1447, "end": 1451, "input": "tokens", "text": "to Rwanda , Burundi , the Democratic Republic of Congo ( DRC ) , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Democratic Republic of"}], "key": "the democratic republic of", "value": "the Democratic Republic of"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1434, "end": 1435, "input": "tokens", "text": "Democratic Republic of Congo ( DRC ) , Uganda and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_strict", "context": {"start": 1481, "end": 1482, "input": "tokens", "text": "leaders of Rwanda , the DRC and the Congo threatening to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_strict", "context": {"start": 1554, "end": 1555, "input": "tokens", "text": "by Secretary Kerry to the DRC , Uganda , Rwanda and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_relaxed", "context": {"start": 1453, "end": 1454, "input": "tokens", "text": "Democratic Republic of Congo ( DRC ) , Uganda and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_relaxed", "context": {"start": 1500, "end": 1501, "input": "tokens", "text": "leaders of Rwanda , the DRC and the Congo threatening to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}, {"source": {"segment": "content_relaxed", "context": {"start": 1573, "end": 1574, "input": "tokens", "text": "by Secretary Kerry to the DRC , Uganda , Rwanda and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "DRC"}], "key": "drc", "value": "DRC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1604, "end": 1605, "input": "tokens", "text": "meaningful progress . Open a U . S . consulate in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}, {"source": {"segment": "content_strict", "context": {"start": 2296, "end": 2297, "input": "tokens", "text": "he plans to host another U . S . - Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}, {"source": {"segment": "content_relaxed", "context": {"start": 1623, "end": 1624, "input": "tokens", "text": "meaningful progress . Open a U . S . consulate in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}, {"source": {"segment": "content_relaxed", "context": {"start": 2315, "end": 2316, "input": "tokens", "text": "he plans to host another U . S . - Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}], "key": "u", "value": "U"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1841, "end": 1842, "input": "tokens", "text": "continuing progress by appointing a Senate - approved ambassador and opening "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senate"}, {"source": {"segment": "content_strict", "context": {"start": 1896, "end": 1897, "input": "tokens", "text": "had a fully accredited , Senate - approved ambassador in Sudan "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senate"}, {"source": {"segment": "content_relaxed", "context": {"start": 1860, "end": 1861, "input": "tokens", "text": "continuing progress by appointing a Senate - approved ambassador and opening "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senate"}, {"source": {"segment": "content_relaxed", "context": {"start": 1915, "end": 1916, "input": "tokens", "text": "had a fully accredited , Senate - approved ambassador in Sudan "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senate"}], "key": "senate", "value": "Senate"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1939, "end": 1940, "input": "tokens", "text": "atrocities in Darfur , prevented UN organizations from delivering food aid "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "UN"}, {"source": {"segment": "content_relaxed", "context": {"start": 1958, "end": 1959, "input": "tokens", "text": "atrocities in Darfur , prevented UN organizations from delivering food aid "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "UN"}], "key": "un", "value": "UN"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2090, "end": 2093, "input": "tokens", "text": "The U . S . Africa Leadership Summit has been one of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa Leadership Summit"}, {"source": {"segment": "content_relaxed", "context": {"start": 2109, "end": 2112, "input": "tokens", "text": "The U . S . Africa Leadership Summit has been one of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa Leadership Summit"}], "key": "africa leadership summit", "value": "Africa Leadership Summit"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 2320, "end": 2323, "input": "tokens", "text": "the 2014 Leadership Summit . The Business Summit is important , but it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Business Summit"}, {"source": {"segment": "content_relaxed", "context": {"start": 2339, "end": 2342, "input": "tokens", "text": "the 2014 Leadership Summit . The Business Summit is important , but it "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Business Summit"}], "key": "the business summit", "value": "The Business Summit"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 2450, "end": 2451, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 2452, "end": 2455, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 19, "end": 20, "input": "tokens", "text": "guest column By Johnnie Carson Washington , DC \u2014 After seven "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1239, "end": 1240, "input": "tokens", "text": "a participant in all of Washington ' s major economic initiatives "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1344, "end": 1345, "input": "tokens", "text": "between Dar es Salaam and Washington . This is particularly important "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1567, "end": 1568, "input": "tokens", "text": "be a strong signal of Washington ' s deep concern and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1750, "end": 1751, "input": "tokens", "text": "to the Muslim community that Washington genuinely cares about the people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1824, "end": 1825, "input": "tokens", "text": "step . He should reaffirm Washington ' s commitment to Somalia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 1870, "end": 1871, "input": "tokens", "text": "with Sudan : Relations between Washington and Khartoum have been prickly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_strict", "context": {"start": 2127, "end": 2128, "input": "tokens", "text": "a - kind gathering in Washington . A number of new "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 38, "end": 39, "input": "tokens", "text": "guest column By Johnnie Carson Washington , DC \u2014 After seven "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1258, "end": 1259, "input": "tokens", "text": "a participant in all of Washington ' s major economic initiatives "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1363, "end": 1364, "input": "tokens", "text": "between Dar es Salaam and Washington . This is particularly important "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1586, "end": 1587, "input": "tokens", "text": "be a strong signal of Washington ' s deep concern and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1769, "end": 1770, "input": "tokens", "text": "to the Muslim community that Washington genuinely cares about the people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1843, "end": 1844, "input": "tokens", "text": "step . He should reaffirm Washington ' s commitment to Somalia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 1889, "end": 1890, "input": "tokens", "text": "with Sudan : Relations between Washington and Khartoum have been prickly "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}, {"source": {"segment": "content_relaxed", "context": {"start": 2146, "end": 2147, "input": "tokens", "text": "a - kind gathering in Washington . A number of new "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Washington"}], "key": "washington", "value": "Washington"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 72, "end": 75, "input": "tokens", "text": ", writes Johnnie Carson , the United States ' top policy - maker "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_strict", "context": {"start": 255, "end": 258, "input": "tokens", "text": "substantially trade between Africa and the United States . Recognizing the growing role "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_strict", "context": {"start": 1360, "end": 1363, "input": "tokens", "text": "have any major ties with the United States . Tanzania also has a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_strict", "context": {"start": 2414, "end": 2417, "input": "tokens", "text": "currently a Senior Advisor at the United States Institute of Peace . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 91, "end": 94, "input": "tokens", "text": ", writes Johnnie Carson , the United States ' top policy - maker "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 274, "end": 277, "input": "tokens", "text": "substantially trade between Africa and the United States . Recognizing the growing role "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 1379, "end": 1382, "input": "tokens", "text": "have any major ties with the United States . Tanzania also has a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}, {"source": {"segment": "content_relaxed", "context": {"start": 2433, "end": 2436, "input": "tokens", "text": "currently a Senior Advisor at the United States Institute of Peace . Copyright "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United States"}], "key": "the united states", "value": "the United States"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 95, "end": 96, "input": "tokens", "text": "has significantly elevated and transformed America ' s engagement with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_strict", "context": {"start": 167, "end": 168, "input": "tokens", "text": "Act ( AGOA ) , America ' s most important trade "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_strict", "context": {"start": 679, "end": 680, "input": "tokens", "text": "Africa a boost and reaffirm America ' s strong commitment to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_strict", "context": {"start": 2011, "end": 2012, "input": "tokens", "text": "status in order to expand America ' s dialogue and probe "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_relaxed", "context": {"start": 114, "end": 115, "input": "tokens", "text": "has significantly elevated and transformed America ' s engagement with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_relaxed", "context": {"start": 186, "end": 187, "input": "tokens", "text": "Act ( AGOA ) , America ' s most important trade "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_relaxed", "context": {"start": 698, "end": 699, "input": "tokens", "text": "Africa a boost and reaffirm America ' s strong commitment to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}, {"source": {"segment": "content_relaxed", "context": {"start": 2030, "end": 2031, "input": "tokens", "text": "status in order to expand America ' s dialogue and probe "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "America"}], "key": "america", "value": "America"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 352, "end": 353, "input": "tokens", "text": "in January 2017 : Visit Nigeria : President Obama has traveled "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 371, "end": 372, "input": "tokens", "text": "but he has not visited Nigeria , the continent ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 456, "end": 457, "input": "tokens", "text": "country on the continent except Nigeria , and it would be "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 546, "end": 547, "input": "tokens", "text": ", and a stop in Nigeria - similar to his 2009 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 716, "end": 717, "input": "tokens", "text": ", Liberia , Niger , Nigeria , Mali , Mauritania , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 786, "end": 787, "input": "tokens", "text": "group of nations to include Nigeria as a permanent member of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 797, "end": 798, "input": "tokens", "text": "this important global organization . Nigeria is already more important than "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 871, "end": 872, "input": "tokens", "text": "should make the inclusion of Nigeria a priority over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 1611, "end": 1612, "input": "tokens", "text": "S . consulate in northern Nigeria and a full embassy in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 1626, "end": 1627, "input": "tokens", "text": "of a consulate in northern Nigeria is long overdue . More "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 1635, "end": 1636, "input": "tokens", "text": ". More than half of Nigeria ' s 180 million people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 1713, "end": 1714, "input": "tokens", "text": "in the region and help Nigeria to deal with the economic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 14, "end": 15, "input": "tokens", "text": "Africa ( a Visit to Nigeria for One Thing ) Photo "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 371, "end": 372, "input": "tokens", "text": "in January 2017 : Visit Nigeria : President Obama has traveled "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 390, "end": 391, "input": "tokens", "text": "but he has not visited Nigeria , the continent ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 475, "end": 476, "input": "tokens", "text": "country on the continent except Nigeria , and it would be "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 565, "end": 566, "input": "tokens", "text": ", and a stop in Nigeria - similar to his 2009 "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 735, "end": 736, "input": "tokens", "text": ", Liberia , Niger , Nigeria , Mali , Mauritania , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 805, "end": 806, "input": "tokens", "text": "group of nations to include Nigeria as a permanent member of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 816, "end": 817, "input": "tokens", "text": "this important global organization . Nigeria is already more important than "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 890, "end": 891, "input": "tokens", "text": "should make the inclusion of Nigeria a priority over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 1630, "end": 1631, "input": "tokens", "text": "S . consulate in northern Nigeria and a full embassy in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 1645, "end": 1646, "input": "tokens", "text": "of a consulate in northern Nigeria is long overdue . More "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 1654, "end": 1655, "input": "tokens", "text": ". More than half of Nigeria ' s 180 million people "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 1732, "end": 1733, "input": "tokens", "text": "in the region and help Nigeria to deal with the economic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 11, "end": 12, "input": "tokens", "text": "Africa ( a Visit to Nigeria for One Thing ) - "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 406, "end": 408, "input": "tokens", "text": "almost twice the size of South Africa ' s and a third "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Africa"}, {"source": {"segment": "content_strict", "context": {"start": 813, "end": 815, "input": "tokens", "text": "members , notably Argentina and South Africa , and over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 425, "end": 427, "input": "tokens", "text": "almost twice the size of South Africa ' s and a third "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 832, "end": 834, "input": "tokens", "text": "members , notably Argentina and South Africa , and over the next "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South Africa"}], "key": "south africa", "value": "South Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 417, "end": 418, "input": "tokens", "text": "third larger than that of Egypt . It is also the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}, {"source": {"segment": "content_relaxed", "context": {"start": 436, "end": 437, "input": "tokens", "text": "third larger than that of Egypt . It is also the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Egypt"}], "key": "egypt", "value": "Egypt"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 475, "end": 476, "input": "tokens", "text": "House without a stop in Lagos or Abuja . Some have "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_strict", "context": {"start": 529, "end": 530, "input": "tokens", "text": "travel safely to Abuja or Lagos . He is bound to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 494, "end": 495, "input": "tokens", "text": "House without a stop in Lagos or Abuja . Some have "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 548, "end": 549, "input": "tokens", "text": "travel safely to Abuja or Lagos . He is bound to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}], "key": "lagos", "value": "Lagos"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 501, "end": 502, "input": "tokens", "text": "president can travel safely to Nairobi , where al Shabaab has "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nairobi"}, {"source": {"segment": "content_strict", "context": {"start": 1093, "end": 1094, "input": "tokens", "text": "' s recent speeches in Nairobi and Addis Ababa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nairobi"}, {"source": {"segment": "content_relaxed", "context": {"start": 520, "end": 521, "input": "tokens", "text": "president can travel safely to Nairobi , where al Shabaab has "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nairobi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1112, "end": 1113, "input": "tokens", "text": "' s recent speeches in Nairobi and Addis Ababa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nairobi"}], "key": "nairobi", "value": "Nairobi"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 527, "end": 528, "input": "tokens", "text": "able to travel safely to Abuja or Lagos . He is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}, {"source": {"segment": "content_relaxed", "context": {"start": 546, "end": 547, "input": "tokens", "text": "able to travel safely to Abuja or Lagos . He is "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Abuja"}], "key": "abuja", "value": "Abuja"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 554, "end": 555, "input": "tokens", "text": "to his 2009 visit to Ghana - would not be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ghana"}, {"source": {"segment": "content_relaxed", "context": {"start": 573, "end": 574, "input": "tokens", "text": "to his 2009 visit to Ghana - would not be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ghana"}], "key": "ghana", "value": "Ghana"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 595, "end": 596, "input": "tokens", "text": "a major priority for the Obama administration in Africa . During "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_strict", "context": {"start": 740, "end": 741, "input": "tokens", "text": "in the G20 : President Obama has said that he wants "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 614, "end": 615, "input": "tokens", "text": "a major priority for the Obama administration in Africa . During "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}, {"source": {"segment": "content_relaxed", "context": {"start": 759, "end": 760, "input": "tokens", "text": "in the G20 : President Obama has said that he wants "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Obama"}], "key": "obama", "value": "Obama"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 695, "end": 697, "input": "tokens", "text": "by hosting a conference in West Africa with the democratically - elected "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "West Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 714, "end": 716, "input": "tokens", "text": "by hosting a conference in West Africa with the democratically - elected "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "West Africa"}], "key": "west africa", "value": "West Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 704, "end": 705, "input": "tokens", "text": "democratically - elected leaders of Benin , Burkina Faso , Cape "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Benin"}, {"source": {"segment": "content_relaxed", "context": {"start": 723, "end": 724, "input": "tokens", "text": "democratically - elected leaders of Benin , Burkina Faso , Cape "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Benin"}], "key": "benin", "value": "Benin"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 706, "end": 708, "input": "tokens", "text": "elected leaders of Benin , Burkina Faso , Cape Verde , Liberia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}, {"source": {"segment": "content_relaxed", "context": {"start": 725, "end": 727, "input": "tokens", "text": "elected leaders of Benin , Burkina Faso , Cape Verde , Liberia "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burkina Faso"}], "key": "burkina faso", "value": "Burkina Faso"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 709, "end": 711, "input": "tokens", "text": "Benin , Burkina Faso , Cape Verde , Liberia , Niger , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cape Verde"}, {"source": {"segment": "content_relaxed", "context": {"start": 728, "end": 730, "input": "tokens", "text": "Benin , Burkina Faso , Cape Verde , Liberia , Niger , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cape Verde"}], "key": "cape verde", "value": "Cape Verde"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 712, "end": 713, "input": "tokens", "text": "Faso , Cape Verde , Liberia , Niger , Nigeria , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Liberia"}, {"source": {"segment": "content_relaxed", "context": {"start": 731, "end": 732, "input": "tokens", "text": "Faso , Cape Verde , Liberia , Niger , Nigeria , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Liberia"}], "key": "liberia", "value": "Liberia"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 714, "end": 715, "input": "tokens", "text": "Cape Verde , Liberia , Niger , Nigeria , Mali , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Niger"}, {"source": {"segment": "content_relaxed", "context": {"start": 733, "end": 734, "input": "tokens", "text": "Cape Verde , Liberia , Niger , Nigeria , Mali , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Niger"}], "key": "niger", "value": "Niger"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 718, "end": 719, "input": "tokens", "text": ", Niger , Nigeria , Mali , Mauritania , Senegal , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mali"}, {"source": {"segment": "content_relaxed", "context": {"start": 737, "end": 738, "input": "tokens", "text": ", Niger , Nigeria , Mali , Mauritania , Senegal , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mali"}], "key": "mali", "value": "Mali"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 720, "end": 721, "input": "tokens", "text": ", Nigeria , Mali , Mauritania , Senegal , Sierra Leone "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mauritania"}, {"source": {"segment": "content_relaxed", "context": {"start": 739, "end": 740, "input": "tokens", "text": ", Nigeria , Mali , Mauritania , Senegal , Sierra Leone "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mauritania"}], "key": "mauritania", "value": "Mauritania"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 722, "end": 723, "input": "tokens", "text": ", Mali , Mauritania , Senegal , Sierra Leone and Togo "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senegal"}, {"source": {"segment": "content_relaxed", "context": {"start": 741, "end": 742, "input": "tokens", "text": ", Mali , Mauritania , Senegal , Sierra Leone and Togo "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Senegal"}], "key": "senegal", "value": "Senegal"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 727, "end": 728, "input": "tokens", "text": "Senegal , Sierra Leone and Togo . Support Nigeria ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Togo"}, {"source": {"segment": "content_relaxed", "context": {"start": 746, "end": 747, "input": "tokens", "text": "Senegal , Sierra Leone and Togo . Support Nigeria ' s "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Togo"}], "key": "togo", "value": "Togo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 729, "end": 731, "input": "tokens", "text": "Sierra Leone and Togo . Support Nigeria ' s permanent membership in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Support Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 748, "end": 750, "input": "tokens", "text": "Sierra Leone and Togo . Support Nigeria ' s permanent membership in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Support Nigeria"}], "key": "support nigeria", "value": "Support Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 811, "end": 812, "input": "tokens", "text": "current G20 members , notably Argentina and South Africa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Argentina"}, {"source": {"segment": "content_relaxed", "context": {"start": 830, "end": 831, "input": "tokens", "text": "current G20 members , notably Argentina and South Africa , and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Argentina"}], "key": "argentina", "value": "Argentina"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1095, "end": 1097, "input": "tokens", "text": "recent speeches in Nairobi and Addis Ababa , and at the 70th "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Addis Ababa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1114, "end": 1116, "input": "tokens", "text": "recent speeches in Nairobi and Addis Ababa , and at the 70th "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Addis Ababa"}], "key": "addis ababa", "value": "Addis Ababa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1204, "end": 1205, "input": "tokens", "text": "to the White House : Tanzania is the most populous state "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 1250, "end": 1251, "input": "tokens", "text": ". In late October , Tanzania held presidential and parliamentary elections "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 1297, "end": 1298, "input": "tokens", "text": "without dispute , making him Tanzania ' s fifth democratically - "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 1323, "end": 1324, "input": "tokens", "text": "important to reach out to Tanzania ' s new president early "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_strict", "context": {"start": 1364, "end": 1365, "input": "tokens", "text": "with the United States . Tanzania also has a critical role "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1223, "end": 1224, "input": "tokens", "text": "to the White House : Tanzania is the most populous state "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1269, "end": 1270, "input": "tokens", "text": ". In late October , Tanzania held presidential and parliamentary elections "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1316, "end": 1317, "input": "tokens", "text": "without dispute , making him Tanzania ' s fifth democratically - "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1342, "end": 1343, "input": "tokens", "text": "important to reach out to Tanzania ' s new president early "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}, {"source": {"segment": "content_relaxed", "context": {"start": 1383, "end": 1384, "input": "tokens", "text": "with the United States . Tanzania also has a critical role "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Tanzania"}], "key": "tanzania", "value": "Tanzania"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1215, "end": 1217, "input": "tokens", "text": "and the largest democracy in East Africa . It is also one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1234, "end": 1236, "input": "tokens", "text": "and the largest democracy in East Africa . It is also one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East Africa"}], "key": "east africa", "value": "East Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1271, "end": 1272, "input": "tokens", "text": "those on the island of Zanzibar were disputed . President John "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zanzibar"}, {"source": {"segment": "content_relaxed", "context": {"start": 1290, "end": 1291, "input": "tokens", "text": "those on the island of Zanzibar were disputed . President John "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Zanzibar"}], "key": "zanzibar", "value": "Zanzibar"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1382, "end": 1383, "input": "tokens", "text": "building issues , particularly in Burundi and the eastern Congo . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 1426, "end": 1427, "input": "tokens", "text": "John Kerry to Rwanda , Burundi , the Democratic Republic of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 1471, "end": 1472, "input": "tokens", "text": "political and ethnic violence in Burundi , and with the leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 1532, "end": 1533, "input": "tokens", "text": "we are already seeing in Burundi . High level engagement with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_strict", "context": {"start": 1560, "end": 1561, "input": "tokens", "text": ", Uganda , Rwanda and Burundi would be a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1401, "end": 1402, "input": "tokens", "text": "building issues , particularly in Burundi and the eastern Congo . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1445, "end": 1446, "input": "tokens", "text": "John Kerry to Rwanda , Burundi , the Democratic Republic of "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1490, "end": 1491, "input": "tokens", "text": "political and ethnic violence in Burundi , and with the leaders "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1551, "end": 1552, "input": "tokens", "text": "we are already seeing in Burundi . High level engagement with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}, {"source": {"segment": "content_relaxed", "context": {"start": 1579, "end": 1580, "input": "tokens", "text": ", Uganda , Rwanda and Burundi would be a strong signal "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Burundi"}], "key": "burundi", "value": "Burundi"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1386, "end": 1387, "input": "tokens", "text": "in Burundi and the eastern Congo . Early political consultations with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}, {"source": {"segment": "content_strict", "context": {"start": 1484, "end": 1485, "input": "tokens", "text": ", the DRC and the Congo threatening to extend themselves in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}, {"source": {"segment": "content_relaxed", "context": {"start": 1405, "end": 1406, "input": "tokens", "text": "in Burundi and the eastern Congo . Early political consultations with "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}, {"source": {"segment": "content_relaxed", "context": {"start": 1503, "end": 1504, "input": "tokens", "text": ", the DRC and the Congo threatening to extend themselves in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Congo"}], "key": "congo", "value": "Congo"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1424, "end": 1425, "input": "tokens", "text": "of State John Kerry to Rwanda , Burundi , the Democratic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_strict", "context": {"start": 1478, "end": 1479, "input": "tokens", "text": "and with the leaders of Rwanda , the DRC and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_strict", "context": {"start": 1558, "end": 1559, "input": "tokens", "text": "the DRC , Uganda , Rwanda and Burundi would be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_relaxed", "context": {"start": 1443, "end": 1444, "input": "tokens", "text": "of State John Kerry to Rwanda , Burundi , the Democratic "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_relaxed", "context": {"start": 1497, "end": 1498, "input": "tokens", "text": "and with the leaders of Rwanda , the DRC and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}, {"source": {"segment": "content_relaxed", "context": {"start": 1577, "end": 1578, "input": "tokens", "text": "the DRC , Uganda , Rwanda and Burundi would be a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rwanda"}], "key": "rwanda", "value": "Rwanda"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1437, "end": 1438, "input": "tokens", "text": "Congo ( DRC ) , Uganda and the Republic of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}, {"source": {"segment": "content_strict", "context": {"start": 1556, "end": 1557, "input": "tokens", "text": "Kerry to the DRC , Uganda , Rwanda and Burundi would "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}, {"source": {"segment": "content_relaxed", "context": {"start": 1456, "end": 1457, "input": "tokens", "text": "Congo ( DRC ) , Uganda and the Republic of the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}, {"source": {"segment": "content_relaxed", "context": {"start": 1575, "end": 1576, "input": "tokens", "text": "Kerry to the DRC , Uganda , Rwanda and Burundi would "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Uganda"}], "key": "uganda", "value": "Uganda"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1439, "end": 1443, "input": "tokens", "text": "DRC ) , Uganda and the Republic of the Congo : The Great Lakes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Republic of the"}, {"source": {"segment": "content_relaxed", "context": {"start": 1458, "end": 1462, "input": "tokens", "text": "DRC ) , Uganda and the Republic of the Congo : The Great Lakes "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Republic of the"}], "key": "the republic of the", "value": "the Republic of the"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1462, "end": 1463, "input": "tokens", "text": "volatile and unstable regions in Africa , with daily political and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}, {"source": {"segment": "content_relaxed", "context": {"start": 1481, "end": 1482, "input": "tokens", "text": "volatile and unstable regions in Africa , with daily political and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Africa"}], "key": "africa", "value": "Africa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1617, "end": 1618, "input": "tokens", "text": "and a full embassy in Mogadishu : The establishment of a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}, {"source": {"segment": "content_strict", "context": {"start": 1803, "end": 1804, "input": "tokens", "text": "with the Somali government in Mogadishu in January 2013 . Before "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}, {"source": {"segment": "content_strict", "context": {"start": 1856, "end": 1857, "input": "tokens", "text": "diplomatic embassy compound in downtown Mogadishu . Elevate U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1636, "end": 1637, "input": "tokens", "text": "and a full embassy in Mogadishu : The establishment of a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1822, "end": 1823, "input": "tokens", "text": "with the Somali government in Mogadishu in January 2013 . Before "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}, {"source": {"segment": "content_relaxed", "context": {"start": 1875, "end": 1876, "input": "tokens", "text": "diplomatic embassy compound in downtown Mogadishu . Elevate U . S "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mogadishu"}], "key": "mogadishu", "value": "Mogadishu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1731, "end": 1732, "input": "tokens", "text": "there . A consulate in Kaduna , which once had one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kaduna"}, {"source": {"segment": "content_relaxed", "context": {"start": 1750, "end": 1751, "input": "tokens", "text": "there . A consulate in Kaduna , which once had one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kaduna"}], "key": "kaduna", "value": "Kaduna"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1770, "end": 1771, "input": "tokens", "text": "of a failed state , Somalia has made significant progress over "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}, {"source": {"segment": "content_strict", "context": {"start": 1829, "end": 1830, "input": "tokens", "text": "Washington ' s commitment to Somalia and recognize the country ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}, {"source": {"segment": "content_relaxed", "context": {"start": 1789, "end": 1790, "input": "tokens", "text": "of a failed state , Somalia has made significant progress over "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}, {"source": {"segment": "content_relaxed", "context": {"start": 1848, "end": 1849, "input": "tokens", "text": "Washington ' s commitment to Somalia and recognize the country ' "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somalia"}], "key": "somalia", "value": "Somalia"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1866, "end": 1867, "input": "tokens", "text": "S . diplomatic relations with Sudan : Relations between Washington and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_strict", "context": {"start": 1901, "end": 1902, "input": "tokens", "text": "Senate - approved ambassador in Sudan since 1997 . The Khartoum "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_strict", "context": {"start": 1929, "end": 1930, "input": "tokens", "text": ". ) The regime in Sudan has carried out mass atrocities "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_relaxed", "context": {"start": 1885, "end": 1886, "input": "tokens", "text": "S . diplomatic relations with Sudan : Relations between Washington and "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_relaxed", "context": {"start": 1920, "end": 1921, "input": "tokens", "text": "Senate - approved ambassador in Sudan since 1997 . The Khartoum "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}, {"source": {"segment": "content_relaxed", "context": {"start": 1948, "end": 1949, "input": "tokens", "text": ". ) The regime in Sudan has carried out mass atrocities "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sudan"}], "key": "sudan", "value": "Sudan"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1872, "end": 1873, "input": "tokens", "text": ": Relations between Washington and Khartoum have been prickly and frequently "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_strict", "context": {"start": 1906, "end": 1907, "input": "tokens", "text": "Sudan since 1997 . The Khartoum government has not been a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_strict", "context": {"start": 1973, "end": 1974, "input": "tokens", "text": "- imposed comprehensive sanctions on Khartoum have not isolated the country "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_strict", "context": {"start": 1995, "end": 1996, "input": "tokens", "text": "review its current policies toward Khartoum , and consider elevating its "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_relaxed", "context": {"start": 1891, "end": 1892, "input": "tokens", "text": ": Relations between Washington and Khartoum have been prickly and frequently "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_relaxed", "context": {"start": 1925, "end": 1926, "input": "tokens", "text": "Sudan since 1997 . The Khartoum government has not been a "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_relaxed", "context": {"start": 1992, "end": 1993, "input": "tokens", "text": "- imposed comprehensive sanctions on Khartoum have not isolated the country "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}, {"source": {"segment": "content_relaxed", "context": {"start": 2014, "end": 2015, "input": "tokens", "text": "review its current policies toward Khartoum , and consider elevating its "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Khartoum"}], "key": "khartoum", "value": "Khartoum"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1919, "end": 1920, "input": "tokens", "text": "actor . ( Nor have Cuba , Myanmar or Iran . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cuba"}, {"source": {"segment": "content_relaxed", "context": {"start": 1938, "end": 1939, "input": "tokens", "text": "actor . ( Nor have Cuba , Myanmar or Iran . "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Cuba"}], "key": "cuba", "value": "Cuba"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1923, "end": 1924, "input": "tokens", "text": "have Cuba , Myanmar or Iran . ) The regime in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Iran"}, {"source": {"segment": "content_relaxed", "context": {"start": 1942, "end": 1943, "input": "tokens", "text": "have Cuba , Myanmar or Iran . ) The regime in "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Iran"}], "key": "iran", "value": "Iran"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1936, "end": 1937, "input": "tokens", "text": "carried out mass atrocities in Darfur , prevented UN organizations from "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Darfur"}, {"source": {"segment": "content_relaxed", "context": {"start": 1955, "end": 1956, "input": "tokens", "text": "carried out mass atrocities in Darfur , prevented UN organizations from "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Darfur"}], "key": "darfur", "value": "Darfur"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1985, "end": 1986, "input": "tokens", "text": "weakened its government . The U . S . should review "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}, {"source": {"segment": "content_relaxed", "context": {"start": 2004, "end": 2005, "input": "tokens", "text": "weakened its government . The U . S . should review "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "U"}], "key": "u", "value": "U"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 42, "end": 43, "input": "tokens", "text": "on Africa than any previous American president , but with one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_strict", "context": {"start": 2149, "end": 2150, "input": "tokens", "text": "summit brought dozens of senior American business leaders into direct contact "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_strict", "context": {"start": 2278, "end": 2279, "input": "tokens", "text": "continuing efforts to promote greater American trade and commerce with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_relaxed", "context": {"start": 61, "end": 62, "input": "tokens", "text": "on Africa than any previous American president , but with one "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_relaxed", "context": {"start": 2168, "end": 2169, "input": "tokens", "text": "summit brought dozens of senior American business leaders into direct contact "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}, {"source": {"segment": "content_relaxed", "context": {"start": 2297, "end": 2298, "input": "tokens", "text": "continuing efforts to promote greater American trade and commerce with Africa "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "American"}], "key": "american", "value": "American"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 292, "end": 293, "input": "tokens", "text": "that will bring 500 young African entrepreneurs , professionals and community "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_strict", "context": {"start": 651, "end": 652, "input": "tokens", "text": "With a growing number of African leaders attempting to extend their "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_strict", "context": {"start": 1126, "end": 1127, "input": "tokens", "text": "should be allocated to strengthen African judiciaries and legislatures , to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_strict", "context": {"start": 2164, "end": 2165, "input": "tokens", "text": "very first time - with African heads of state and prominent "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_strict", "context": {"start": 2378, "end": 2379, "input": "tokens", "text": "be building a more robust African agenda for his last year "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 311, "end": 312, "input": "tokens", "text": "that will bring 500 young African entrepreneurs , professionals and community "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 670, "end": 671, "input": "tokens", "text": "With a growing number of African leaders attempting to extend their "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 1145, "end": 1146, "input": "tokens", "text": "should be allocated to strengthen African judiciaries and legislatures , to "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 2183, "end": 2184, "input": "tokens", "text": "very first time - with African heads of state and prominent "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}, {"source": {"segment": "content_relaxed", "context": {"start": 2397, "end": 2398, "input": "tokens", "text": "be building a more robust African agenda for his last year "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "African"}], "key": "african", "value": "African"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 437, "end": 438, "input": "tokens", "text": "million people , its largest Muslim country , and its largest "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 1664, "end": 1665, "input": "tokens", "text": "It is also the largest Muslim region in Africa and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 1671, "end": 1672, "input": "tokens", "text": "in Africa and the largest Muslim region in the world where "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_strict", "context": {"start": 1747, "end": 1748, "input": "tokens", "text": "a strong signal to the Muslim community that Washington genuinely cares "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 456, "end": 457, "input": "tokens", "text": "million people , its largest Muslim country , and its largest "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 1683, "end": 1684, "input": "tokens", "text": "It is also the largest Muslim region in Africa and the "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 1690, "end": 1691, "input": "tokens", "text": "in Africa and the largest Muslim region in the world where "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}, {"source": {"segment": "content_relaxed", "context": {"start": 1766, "end": 1767, "input": "tokens", "text": "a strong signal to the Muslim community that Washington genuinely cares "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Muslim"}], "key": "muslim", "value": "Muslim"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1373, "end": 1375, "input": "tokens", "text": "critical role to play in East African peace - building issues , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East African"}, {"source": {"segment": "content_relaxed", "context": {"start": 1392, "end": 1394, "input": "tokens", "text": "critical role to play in East African peace - building issues , "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East African"}], "key": "east african", "value": "East African"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1800, "end": 1801, "input": "tokens", "text": "formal diplomatic relations with the Somali government in Mogadishu in January "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somali"}, {"source": {"segment": "content_relaxed", "context": {"start": 1819, "end": 1820, "input": "tokens", "text": "formal diplomatic relations with the Somali government in Mogadishu in January "}, "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Somali"}], "key": "somali", "value": "Somali"}]}, "content_extraction": {"content_relaxed": {"text": "

4 January 2016

Africa: What Obama Still Owes Africa (a Visit to Nigeria for One Thing)

Photo:

AllAfrica

Former U.S. Assistant Secretary of State Johnnie Carson

guest column

By Johnnie Carson

Washington, DC \u2014

After seven years in office, President Barack Obama has already engaged more broadly on Africa than any previous American president, but with one year remaining in the White House, there are still a few things he should do before he leaves, writes

Johnnie Carson

, the United States' top policy-maker on Africa in the first Obama administration.

President Obama has significantly elevated and transformed America's engagement with Africa, traveling widely across the continent, championing the renewal of several old programs and launching a series of highly focused new initiatives that could help speed-up Africa's economic development.

He has been particularly active in promoting economic and development issues.

He fought successfully for the renewal and extension of the African Growth and Opportunity Act (AGOA), America's most important trade legislation with Africa; he hosted the first U.S.-Africa Leadership Summit, attended by 37 heads of state; and he has established several important new economic programs, including \"Power Africa\" - to expand significantly electrical access across the continent; \"Feed the Future\" - to increase household food production and to generate a green revolution throughout Africa, and \"Trade Africa\" - to expand substantially trade between Africa and the United States.

Recognizing the growing role of the continent's next generation of young leaders, President Obama established YALI - the Young African Leaders Initiative, a program that will bring 500 young African entrepreneurs, professionals and community organizers to the U.S. each year for the next several years for five weeks of leadership, organization and management training.

But what next?

Despite his rather impressive list of accomplishments, here are ten things the president should do before he leaves office in January 2017:

Visit Nigeria:

President Obama has traveled to Africa five times during his presidency - but he has not visited Nigeria, the continent's economic, political, communications and petroleum giant, and its most important state. It is the continent's largest economy - almost twice the size of South Africa's and a third larger than that of Egypt.

It is also the continent's most populous state, with 180 million people, its largest Muslim country, and its largest democracy.

The president has visited every major country on the continent except Nigeria, and it would be a mistake for him to leave the White House without a stop in Lagos or Abuja.

Some have suggested that security may be a concern because of Boko Haram, but if the president can travel safely to Nairobi, where al Shabaab has carried out high profile attacks in the center of the city, he should be able to travel safely to Abuja or Lagos. He is bound to make one more trip to Europe, and a stop in Nigeria - similar to his 2009 visit to Ghana - would not be a major diversion.

Co-host a regional summit on democracy in west Africa:

Strengthening democracy institutions, promoting good governance and supporting free and fair elections has been a major priority for the Obama administration in Africa.

During his first official visit to the continent as president in July 2009, President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy and good governance and the need to create \"more strong institutions, not more strong men.\" With a growing number of African leaders attempting to extend their terms of office, democracy remains fragile across the continent. The president could give democracy in Africa a boost and reaffirm America's strong commitment to Africa's political progress by hosting a conference in West Africa with the democratically-elected leaders of Benin, Burkina Faso, Cape Verde, Liberia, Niger, Nigeria, Mali, Mauritania, Senegal, Sierra Leone and Togo.

Support Nigeria's permanent membership in the G20:

President Obama has said that he wants to ensure that Africa has a place at the table to participate in the deliberations concerning major global political and economic issues. One way to accomplish that is to expand or reorganize the G20 group of nations to include Nigeria as a permanent member of this important global organization.

Nigeria is already more important than several of the current G20 members, notably Argentina and South Africa, and over the next two decades it will become one of the world's mega states, eclipsing several other G20 members in the size of its economy, population and regional influence. It would also be one of the G20's largest democracies. The administration should make the inclusion of Nigeria a priority over the next 12 months.

Press for the passage of the Electrify Africa legislation:

Power Africa is one of President Obama's most important signature initiatives. In the world's most energy deficient and starved continent, it is intended to increase Africa's power output by 30,000 megawatts over the next decade or two.

But like a number of recent White House initiatives, Power Africa is not backed by any legislative mandate and could be easily brushed aside after the Obama administration leaves office. The program enjoys bi-partisan support in the Congress and the administration needs to work with congressional leaders to prioritize the passage of the Electrify Africa legislation. At the same time, the administration needs to create a senior level \"Power Africa czar\" to manage the program and consider moving interagency responsibility for oversight from USAID to a cabinet level department.

Instruct USAID to establish a permanent democracy fund:

If democracy promotion is an important priority, it should be funded adequately and on a long-term basis. Today that is not the case. Funding for democracy has declined sharply during Obama's second term despite the president's recent speeches in Nairobi and Addis Ababa, and at the 70th session of the United Nations General Assembly in New York.

Dedicated and hard-to-reprogram funds should be allocated to strengthen African judiciaries and legislatures, to promote civil society groups and the media, to assist women's organizations and youth groups and to support domestic and international election monitoring. Funds should also be made available to assist local organizations to undertake parallel vote counts, to aid local election commissions and to prevent pre- and post-election violence.

Invite Tanzania's newly elected President John Magufuli to the White House:

Tanzania is the most populous state and the largest democracy in East Africa. It is also one of the largest recipients of U.S. development assistance and a participant in all of Washington's major economic initiatives.

In late October, Tanzania held presidential and parliamentary elections.The elections on the mainland went well, but those on the island of Zanzibar were disputed. President John Pombe Magufuli, a reform-minded academic-turned-politician, was elected without dispute, making him Tanzania's fifth democratically-elected president in a row. Although the Zanzibar election remains unresolved, it is important to reach out to Tanzania's new president early in his tenure to continue to foster the strong relationship between Dar es Salaam and Washington.

This is particularly important since President Magufuli does not have any major ties with the United States.Tanzania also has a critical role to play in East African peace-building issues, particularly in Burundi and the eastern Congo. Early political consultations with President Magufuli and his new foreign minister, Dr. Augustine Mahiga, could prove valuable in promoting stability in the Great Lakes region.

Send Secretary of State John Kerry to Rwanda, Burundi, the Democratic Republic of Congo (DRC), Uganda and the Republic of the Congo:

The Great Lakes Region of Central Africa is one of the most volatile and unstable regions in Africa, with daily political and ethnic violence in Burundi, and with the leaders of Rwanda, the DRC and the Congo threatening to extend themselves in office in violation of their constitutions.

Although time is running out, there is still an opportunity to prevent further democratic backsliding and the serious instability and violence that will almost certainly be unleashed - as we are already seeing in Burundi. High level engagement with the leaders in the region is required.

An extended visit by Secretary Kerry to the DRC, Uganda, Rwanda and Burundi would be a strong signal of Washington's deep concern and interest in the region's negative political and security trajectory. Without serious engagement with the leaders on the ground, there will be no meaningful progress.

Open a U.S. consulate in northern Nigeria and a full embassy in Mogadishu:

The establishment of a consulate in northern Nigeria is long overdue. More than half of Nigeria's 180 million people live in the northern part of the country, an area of serious political and security concern. It is also the largest Muslim region in Africa and the largest Muslim region in the world where there is no full-time U.S. diplomatic presence.

A U.S. diplomatic mission would advance long-term political, economic and security interests in the region and help Nigeria to deal with the economic, social and security challenges it faces there. A consulate in Kaduna, which once had one, or Kano would convey a strong signal to the Muslim community that Washington genuinely cares about the people in the region.

Once the global poster child of a failed state, Somalia has made significant progress over the past seven years. In recognition of the progress, the U.S. re-established formal diplomatic relations with the Somali government in Mogadishu in January 2013.

Before he leaves office, President Obama should take one more step. He should reaffirm Washington's commitment to Somalia and recognize the country's continuing progress by appointing a Senate-approved ambassador and opening a small, secure diplomatic embassy compound in downtown Mogadishu.

Elevate U.S. diplomatic relations with Sudan:

Relations between Washington and Khartoum have been prickly and frequently difficult for over two decades and the U.S. has not had a fully accredited, Senate-approved ambassador in Sudan since 1997.

The Khartoum government has not been a good international actor. (Nor have Cuba, Myanmar or Iran.) The regime in Sudan has carried out mass atrocities in Darfur, prevented UN organizations from delivering food aid and humanitarian assistance to those in need and meddled in the affairs of several of its neighbors.

But U.S.-imposed comprehensive sanctions on Khartoum have not isolated the country nor weakened its government. The U.S. should review its current policies toward Khartoum, and consider elevating its diplomatic relationship to full ambassadorial status in order to expand America's dialogue and probe for new openings to resolve some of the country's domestic and regional issues. The U.S. can do this while maintaining its sanctions regime on the government and its demands that President Omar al-Bashir address the serious human rights charges against him.

Provide a status report on the results of the U.S.-Africa Leadership Summit:

The U.S. Africa Leadership Summit has been one of the high points in the Obama administration's engagements in Africa.

Leaders from 50 different countries participated in this first-of-a-kind gathering in Washington. A number of new programs were announced and a major business conference associated with the summit brought dozens of senior American business leaders into direct contact - many for the very first time - with African heads of state and prominent business leaders from the continent.

The administration has never released a comprehensive report on the summit or a one-year progress report on the implementation of summit agreements. The issuance of some type of status report would be a useful vehicle for identifying summit objectives and initiatives as well as tracking the progress of the administration's efforts. The administration should do everything it can to sustain the goodwill and policy initiatives that emerged from the summit to help ensure that it does not become a one-off event.

The administration should be applauded for its continuing efforts to promote greater American trade and commerce with Africa. The president has already announced that he plans to host another U.S.-Africa Business Summit similar to the day-long event his administration hosted during the 2014 Leadership Summit. The Business Summit is important, but it should not be the only thing on President Obama's Africa agenda for 2016. He has time to do more, and he should. Twelve months is a long time in the life of an administration and his foreign policy team should be building a more robust African agenda for his last year in office.

Ambassador Carson was the U.S.

Assistant Secretary of State for African Affairs

from 2009 to 2012. He is currently a Senior Advisor at the

United States Institute of Peace.

Copyright

2016 allAfrica.com. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["4", "january", "2016", "africa", ":", "what", "obama", "still", "owes", "africa", "(", "a", "visit", "to", "nigeria", "for", "one", "thing", ")", "photo", ":", "allafrica", "former", "u", ".", "s", ".", "assistant", "secretary", "of", "state", "johnnie", "carson", "guest", "column", "by", "johnnie", "carson", "washington", ",", "dc", "\u2014", "after", "seven", "years", "in", "office", ",", "president", "barack", "obama", "has", "already", "engaged", "more", "broadly", "on", "africa", "than", "any", "previous", "american", "president", ",", "but", "with", "one", "year", "remaining", "in", "the", "white", "house", ",", "there", "are", "still", "a", "few", "things", "he", "should", "do", "before", "he", "leaves", ",", "writes", "johnnie", "carson", ",", "the", "united", "states", "'", "top", "policy", "-", "maker", "on", "africa", "in", "the", "first", "obama", "administration", ".", "president", "obama", "has", "significantly", "elevated", "and", "transformed", "america", "'", "s", "engagement", "with", "africa", ",", "traveling", "widely", "across", "the", "continent", ",", "championing", "the", "renewal", "of", "several", "old", "programs", "and", "launching", "a", "series", "of", "highly", "focused", "new", "initiatives", "that", "could", "help", "speed", "-", "up", "africa", "'", "s", "economic", "development", ".", "he", "has", "been", "particularly", "active", "in", "promoting", "economic", "and", "development", "issues", ".", "he", "fought", "successfully", "for", "the", "renewal", "and", "extension", "of", "the", "african", "growth", "and", "opportunity", "act", "(", "agoa", ")", ",", "america", "'", "s", "most", "important", "trade", "legislation", "with", "africa", ";", "he", "hosted", "the", "first", "u", ".", "s", ".", "-", "africa", "leadership", "summit", ",", "attended", "by", "37", "heads", "of", "state", ";", "and", "he", "has", "established", "several", "important", "new", "economic", "programs", ",", "including", "\"", "power", "africa", "\"", "-", "to", "expand", "significantly", "electrical", "access", "across", "the", "continent", ";", "\"", "feed", "the", "future", "\"", "-", "to", "increase", "household", "food", "production", "and", "to", "generate", "a", "green", "revolution", "throughout", "africa", ",", "and", "\"", "trade", "africa", "\"", "-", "to", "expand", "substantially", "trade", "between", "africa", "and", "the", "united", "states", ".", "recognizing", "the", "growing", "role", "of", "the", "continent", "'", "s", "next", "generation", "of", "young", "leaders", ",", "president", "obama", "established", "yali", "-", "the", "young", "african", "leaders", "initiative", ",", "a", "program", "that", "will", "bring", "500", "young", "african", "entrepreneurs", ",", "professionals", "and", "community", "organizers", "to", "the", "u", ".", "s", ".", "each", "year", "for", "the", "next", "several", "years", "for", "five", "weeks", "of", "leadership", ",", "organization", "and", "management", "training", ".", "but", "what", "next", "?", "despite", "his", "rather", "impressive", "list", "of", "accomplishments", ",", "here", "are", "ten", "things", "the", "president", "should", "do", "before", "he", "leaves", "office", "in", "january", "2017", ":", "visit", "nigeria", ":", "president", "obama", "has", "traveled", "to", "africa", "five", "times", "during", "his", "presidency", "-", "but", "he", "has", "not", "visited", "nigeria", ",", "the", "continent", "'", "s", "economic", ",", "political", ",", "communications", "and", "petroleum", "giant", ",", "and", "its", "most", "important", "state", ".", "it", "is", "the", "continent", "'", "s", "largest", "economy", "-", "almost", "twice", "the", "size", "of", "south", "africa", "'", "s", "and", "a", "third", "larger", "than", "that", "of", "egypt", ".", "it", "is", "also", "the", "continent", "'", "s", "most", "populous", "state", ",", "with", "180", "million", "people", ",", "its", "largest", "muslim", "country", ",", "and", "its", "largest", "democracy", ".", "the", "president", "has", "visited", "every", "major", "country", "on", "the", "continent", "except", "nigeria", ",", "and", "it", "would", "be", "a", "mistake", "for", "him", "to", "leave", "the", "white", "house", "without", "a", "stop", "in", "lagos", "or", "abuja", ".", "some", "have", "suggested", "that", "security", "may", "be", "a", "concern", "because", "of", "boko", "haram", ",", "but", "if", "the", "president", "can", "travel", "safely", "to", "nairobi", ",", "where", "al", "shabaab", "has", "carried", "out", "high", "profile", "attacks", "in", "the", "center", "of", "the", "city", ",", "he", "should", "be", "able", "to", "travel", "safely", "to", "abuja", "or", "lagos", ".", "he", "is", "bound", "to", "make", "one", "more", "trip", "to", "europe", ",", "and", "a", "stop", "in", "nigeria", "-", "similar", "to", "his", "2009", "visit", "to", "ghana", "-", "would", "not", "be", "a", "major", "diversion", ".", "co", "-", "host", "a", "regional", "summit", "on", "democracy", "in", "west", "africa", ":", "strengthening", "democracy", "institutions", ",", "promoting", "good", "governance", "and", "supporting", "free", "and", "fair", "elections", "has", "been", "a", "major", "priority", "for", "the", "obama", "administration", "in", "africa", ".", "during", "his", "first", "official", "visit", "to", "the", "continent", "as", "president", "in", "july", "2009", ",", "president", "obama", "spoke", "eloquently", "before", "the", "ghanaian", "parliament", "about", "the", "importance", "of", "democracy", "and", "good", "governance", "and", "the", "need", "to", "create", "\"", "more", "strong", "institutions", ",", "not", "more", "strong", "men", ".", "\"", "with", "a", "growing", "number", "of", "african", "leaders", "attempting", "to", "extend", "their", "terms", "of", "office", ",", "democracy", "remains", "fragile", "across", "the", "continent", ".", "the", "president", "could", "give", "democracy", "in", "africa", "a", "boost", "and", "reaffirm", "america", "'", "s", "strong", "commitment", "to", "africa", "'", "s", "political", "progress", "by", "hosting", "a", "conference", "in", "west", "africa", "with", "the", "democratically", "-", "elected", "leaders", "of", "benin", ",", "burkina", "faso", ",", "cape", "verde", ",", "liberia", ",", "niger", ",", "nigeria", ",", "mali", ",", "mauritania", ",", "senegal", ",", "sierra", "leone", "and", "togo", ".", "support", "nigeria", "'", "s", "permanent", "membership", "in", "the", "g20", ":", "president", "obama", "has", "said", "that", "he", "wants", "to", "ensure", "that", "africa", "has", "a", "place", "at", "the", "table", "to", "participate", "in", "the", "deliberations", "concerning", "major", "global", "political", "and", "economic", "issues", ".", "one", "way", "to", "accomplish", "that", "is", "to", "expand", "or", "reorganize", "the", "g20", "group", "of", "nations", "to", "include", "nigeria", "as", "a", "permanent", "member", "of", "this", "important", "global", "organization", ".", "nigeria", "is", "already", "more", "important", "than", "several", "of", "the", "current", "g20", "members", ",", "notably", "argentina", "and", "south", "africa", ",", "and", "over", "the", "next", "two", "decades", "it", "will", "become", "one", "of", "the", "world", "'", "s", "mega", "states", ",", "eclipsing", "several", "other", "g20", "members", "in", "the", "size", "of", "its", "economy", ",", "population", "and", "regional", "influence", ".", "it", "would", "also", "be", "one", "of", "the", "g20", "'", "s", "largest", "democracies", ".", "the", "administration", "should", "make", "the", "inclusion", "of", "nigeria", "a", "priority", "over", "the", "next", "12", "months", ".", "press", "for", "the", "passage", "of", "the", "electrify", "africa", "legislation", ":", "power", "africa", "is", "one", "of", "president", "obama", "'", "s", "most", "important", "signature", "initiatives", ".", "in", "the", "world", "'", "s", "most", "energy", "deficient", "and", "starved", "continent", ",", "it", "is", "intended", "to", "increase", "africa", "'", "s", "power", "output", "by", "30", ",", "000", "megawatts", "over", "the", "next", "decade", "or", "two", ".", "but", "like", "a", "number", "of", "recent", "white", "house", "initiatives", ",", "power", "africa", "is", "not", "backed", "by", "any", "legislative", "mandate", "and", "could", "be", "easily", "brushed", "aside", "after", "the", "obama", "administration", "leaves", "office", ".", "the", "program", "enjoys", "bi", "-", "partisan", "support", "in", "the", "congress", "and", "the", "administration", "needs", "to", "work", "with", "congressional", "leaders", "to", "prioritize", "the", "passage", "of", "the", "electrify", "africa", "legislation", ".", "at", "the", "same", "time", ",", "the", "administration", "needs", "to", "create", "a", "senior", "level", "\"", "power", "africa", "czar", "\"", "to", "manage", "the", "program", "and", "consider", "moving", "interagency", "responsibility", "for", "oversight", "from", "usaid", "to", "a", "cabinet", "level", "department", ".", "instruct", "usaid", "to", "establish", "a", "permanent", "democracy", "fund", ":", "if", "democracy", "promotion", "is", "an", "important", "priority", ",", "it", "should", "be", "funded", "adequately", "and", "on", "a", "long", "-", "term", "basis", ".", "today", "that", "is", "not", "the", "case", ".", "funding", "for", "democracy", "has", "declined", "sharply", "during", "obama", "'", "s", "second", "term", "despite", "the", "president", "'", "s", "recent", "speeches", "in", "nairobi", "and", "addis", "ababa", ",", "and", "at", "the", "70th", "session", "of", "the", "united", "nations", "general", "assembly", "in", "new", "york", ".", "dedicated", "and", "hard", "-", "to", "-", "reprogram", "funds", "should", "be", "allocated", "to", "strengthen", "african", "judiciaries", "and", "legislatures", ",", "to", "promote", "civil", "society", "groups", "and", "the", "media", ",", "to", "assist", "women", "'", "s", "organizations", "and", "youth", "groups", "and", "to", "support", "domestic", "and", "international", "election", "monitoring", ".", "funds", "should", "also", "be", "made", "available", "to", "assist", "local", "organizations", "to", "undertake", "parallel", "vote", "counts", ",", "to", "aid", "local", "election", "commissions", "and", "to", "prevent", "pre", "-", "and", "post", "-", "election", "violence", ".", "invite", "tanzania", "'", "s", "newly", "elected", "president", "john", "magufuli", "to", "the", "white", "house", ":", "tanzania", "is", "the", "most", "populous", "state", "and", "the", "largest", "democracy", "in", "east", "africa", ".", "it", "is", "also", "one", "of", "the", "largest", "recipients", "of", "u", ".", "s", ".", "development", "assistance", "and", "a", "participant", "in", "all", "of", "washington", "'", "s", "major", "economic", "initiatives", ".", "in", "late", "october", ",", "tanzania", "held", "presidential", "and", "parliamentary", "elections", ".", "the", "elections", "on", "the", "mainland", "went", "well", ",", "but", "those", "on", "the", "island", "of", "zanzibar", "were", "disputed", ".", "president", "john", "pombe", "magufuli", ",", "a", "reform", "-", "minded", "academic", "-", "turned", "-", "politician", ",", "was", "elected", "without", "dispute", ",", "making", "him", "tanzania", "'", "s", "fifth", "democratically", "-", "elected", "president", "in", "a", "row", ".", "although", "the", "zanzibar", "election", "remains", "unresolved", ",", "it", "is", "important", "to", "reach", "out", "to", "tanzania", "'", "s", "new", "president", "early", "in", "his", "tenure", "to", "continue", "to", "foster", "the", "strong", "relationship", "between", "dar", "es", "salaam", "and", "washington", ".", "this", "is", "particularly", "important", "since", "president", "magufuli", "does", "not", "have", "any", "major", "ties", "with", "the", "united", "states", ".", "tanzania", "also", "has", "a", "critical", "role", "to", "play", "in", "east", "african", "peace", "-", "building", "issues", ",", "particularly", "in", "burundi", "and", "the", "eastern", "congo", ".", "early", "political", "consultations", "with", "president", "magufuli", "and", "his", "new", "foreign", "minister", ",", "dr", ".", "augustine", "mahiga", ",", "could", "prove", "valuable", "in", "promoting", "stability", "in", "the", "great", "lakes", "region", ".", "send", "secretary", "of", "state", "john", "kerry", "to", "rwanda", ",", "burundi", ",", "the", "democratic", "republic", "of", "congo", "(", "drc", ")", ",", "uganda", "and", "the", "republic", "of", "the", "congo", ":", "the", "great", "lakes", "region", "of", "central", "africa", "is", "one", "of", "the", "most", "volatile", "and", "unstable", "regions", "in", "africa", ",", "with", "daily", "political", "and", "ethnic", "violence", "in", "burundi", ",", "and", "with", "the", "leaders", "of", "rwanda", ",", "the", "drc", "and", "the", "congo", "threatening", "to", "extend", "themselves", "in", "office", "in", "violation", "of", "their", "constitutions", ".", "although", "time", "is", "running", "out", ",", "there", "is", "still", "an", "opportunity", "to", "prevent", "further", "democratic", "backsliding", "and", "the", "serious", "instability", "and", "violence", "that", "will", "almost", "certainly", "be", "unleashed", "-", "as", "we", "are", "already", "seeing", "in", "burundi", ".", "high", "level", "engagement", "with", "the", "leaders", "in", "the", "region", "is", "required", ".", "an", "extended", "visit", "by", "secretary", "kerry", "to", "the", "drc", ",", "uganda", ",", "rwanda", "and", "burundi", "would", "be", "a", "strong", "signal", "of", "washington", "'", "s", "deep", "concern", "and", "interest", "in", "the", "region", "'", "s", "negative", "political", "and", "security", "trajectory", ".", "without", "serious", "engagement", "with", "the", "leaders", "on", "the", "ground", ",", "there", "will", "be", "no", "meaningful", "progress", ".", "open", "a", "u", ".", "s", ".", "consulate", "in", "northern", "nigeria", "and", "a", "full", "embassy", "in", "mogadishu", ":", "the", "establishment", "of", "a", "consulate", "in", "northern", "nigeria", "is", "long", "overdue", ".", "more", "than", "half", "of", "nigeria", "'", "s", "180", "million", "people", "live", "in", "the", "northern", "part", "of", "the", "country", ",", "an", "area", "of", "serious", "political", "and", "security", "concern", ".", "it", "is", "also", "the", "largest", "muslim", "region", "in", "africa", "and", "the", "largest", "muslim", "region", "in", "the", "world", "where", "there", "is", "no", "full", "-", "time", "u", ".", "s", ".", "diplomatic", "presence", ".", "a", "u", ".", "s", ".", "diplomatic", "mission", "would", "advance", "long", "-", "term", "political", ",", "economic", "and", "security", "interests", "in", "the", "region", "and", "help", "nigeria", "to", "deal", "with", "the", "economic", ",", "social", "and", "security", "challenges", "it", "faces", "there", ".", "a", "consulate", "in", "kaduna", ",", "which", "once", "had", "one", ",", "or", "kano", "would", "convey", "a", "strong", "signal", "to", "the", "muslim", "community", "that", "washington", "genuinely", "cares", "about", "the", "people", "in", "the", "region", ".", "once", "the", "global", "poster", "child", "of", "a", "failed", "state", ",", "somalia", "has", "made", "significant", "progress", "over", "the", "past", "seven", "years", ".", "in", "recognition", "of", "the", "progress", ",", "the", "u", ".", "s", ".", "re", "-", "established", "formal", "diplomatic", "relations", "with", "the", "somali", "government", "in", "mogadishu", "in", "january", "2013", ".", "before", "he", "leaves", "office", ",", "president", "obama", "should", "take", "one", "more", "step", ".", "he", "should", "reaffirm", "washington", "'", "s", "commitment", "to", "somalia", "and", "recognize", "the", "country", "'", "s", "continuing", "progress", "by", "appointing", "a", "senate", "-", "approved", "ambassador", "and", "opening", "a", "small", ",", "secure", "diplomatic", "embassy", "compound", "in", "downtown", "mogadishu", ".", "elevate", "u", ".", "s", ".", "diplomatic", "relations", "with", "sudan", ":", "relations", "between", "washington", "and", "khartoum", "have", "been", "prickly", "and", "frequently", "difficult", "for", "over", "two", "decades", "and", "the", "u", ".", "s", ".", "has", "not", "had", "a", "fully", "accredited", ",", "senate", "-", "approved", "ambassador", "in", "sudan", "since", "1997", ".", "the", "khartoum", "government", "has", "not", "been", "a", "good", "international", "actor", ".", "(", "nor", "have", "cuba", ",", "myanmar", "or", "iran", ".", ")", "the", "regime", "in", "sudan", "has", "carried", "out", "mass", "atrocities", "in", "darfur", ",", "prevented", "un", "organizations", "from", "delivering", "food", "aid", "and", "humanitarian", "assistance", "to", "those", "in", "need", "and", "meddled", "in", "the", "affairs", "of", "several", "of", "its", "neighbors", ".", "but", "u", ".", "s", ".", "-", "imposed", "comprehensive", "sanctions", "on", "khartoum", "have", "not", "isolated", "the", "country", "nor", "weakened", "its", "government", ".", "the", "u", ".", "s", ".", "should", "review", "its", "current", "policies", "toward", "khartoum", ",", "and", "consider", "elevating", "its", "diplomatic", "relationship", "to", "full", "ambassadorial", "status", "in", "order", "to", "expand", "america", "'", "s", "dialogue", "and", "probe", "for", "new", "openings", "to", "resolve", "some", "of", "the", "country", "'", "s", "domestic", "and", "regional", "issues", ".", "the", "u", ".", "s", ".", "can", "do", "this", "while", "maintaining", "its", "sanctions", "regime", "on", "the", "government", "and", "its", "demands", "that", "president", "omar", "al", "-", "bashir", "address", "the", "serious", "human", "rights", "charges", "against", "him", ".", "provide", "a", "status", "report", "on", "the", "results", "of", "the", "u", ".", "s", ".", "-", "africa", "leadership", "summit", ":", "the", "u", ".", "s", ".", "africa", "leadership", "summit", "has", "been", "one", "of", "the", "high", "points", "in", "the", "obama", "administration", "'", "s", "engagements", "in", "africa", ".", "leaders", "from", "50", "different", "countries", "participated", "in", "this", "first", "-", "of", "-", "a", "-", "kind", "gathering", "in", "washington", ".", "a", "number", "of", "new", "programs", "were", "announced", "and", "a", "major", "business", "conference", "associated", "with", "the", "summit", "brought", "dozens", "of", "senior", "american", "business", "leaders", "into", "direct", "contact", "-", "many", "for", "the", "very", "first", "time", "-", "with", "african", "heads", "of", "state", "and", "prominent", "business", "leaders", "from", "the", "continent", ".", "the", "administration", "has", "never", "released", "a", "comprehensive", "report", "on", "the", "summit", "or", "a", "one", "-", "year", "progress", "report", "on", "the", "implementation", "of", "summit", "agreements", ".", "the", "issuance", "of", "some", "type", "of", "status", "report", "would", "be", "a", "useful", "vehicle", "for", "identifying", "summit", "objectives", "and", "initiatives", "as", "well", "as", "tracking", "the", "progress", "of", "the", "administration", "'", "s", "efforts", ".", "the", "administration", "should", "do", "everything", "it", "can", "to", "sustain", "the", "goodwill", "and", "policy", "initiatives", "that", "emerged", "from", "the", "summit", "to", "help", "ensure", "that", "it", "does", "not", "become", "a", "one", "-", "off", "event", ".", "the", "administration", "should", "be", "applauded", "for", "its", "continuing", "efforts", "to", "promote", "greater", "american", "trade", "and", "commerce", "with", "africa", ".", "the", "president", "has", "already", "announced", "that", "he", "plans", "to", "host", "another", "u", ".", "s", ".", "-", "africa", "business", "summit", "similar", "to", "the", "day", "-", "long", "event", "his", "administration", "hosted", "during", "the", "2014", "leadership", "summit", ".", "the", "business", "summit", "is", "important", ",", "but", "it", "should", "not", "be", "the", "only", "thing", "on", "president", "obama", "'", "s", "africa", "agenda", "for", "2016", ".", "he", "has", "time", "to", "do", "more", ",", "and", "he", "should", ".", "twelve", "months", "is", "a", "long", "time", "in", "the", "life", "of", "an", "administration", "and", "his", "foreign", "policy", "team", "should", "be", "building", "a", "more", "robust", "african", "agenda", "for", "his", "last", "year", "in", "office", ".", "ambassador", "carson", "was", "the", "u", ".", "s", ".", "assistant", "secretary", "of", "state", "for", "african", "affairs", "from", "2009", "to", "2012", ".", "he", "is", "currently", "a", "senior", "advisor", "at", "the", "united", "states", "institute", "of", "peace", ".", "copyright", "2016", "allafrica", ".", "com", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u2014", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["4", "January", "2016", "Africa", ":", "What", "Obama", "Still", "Owes", "Africa", "(", "a", "Visit", "to", "Nigeria", "for", "One", "Thing", ")", "Photo", ":", "AllAfrica", "Former", "U", ".", "S", ".", "Assistant", "Secretary", "of", "State", "Johnnie", "Carson", "guest", "column", "By", "Johnnie", "Carson", "Washington", ",", "DC", "\u2014", "After", "seven", "years", "in", "office", ",", "President", "Barack", "Obama", "has", "already", "engaged", "more", "broadly", "on", "Africa", "than", "any", "previous", "American", "president", ",", "but", "with", "one", "year", "remaining", "in", "the", "White", "House", ",", "there", "are", "still", "a", "few", "things", "he", "should", "do", "before", "he", "leaves", ",", "writes", "Johnnie", "Carson", ",", "the", "United", "States", "'", "top", "policy", "-", "maker", "on", "Africa", "in", "the", "first", "Obama", "administration", ".", "President", "Obama", "has", "significantly", "elevated", "and", "transformed", "America", "'", "s", "engagement", "with", "Africa", ",", "traveling", "widely", "across", "the", "continent", ",", "championing", "the", "renewal", "of", "several", "old", "programs", "and", "launching", "a", "series", "of", "highly", "focused", "new", "initiatives", "that", "could", "help", "speed", "-", "up", "Africa", "'", "s", "economic", "development", ".", "He", "has", "been", "particularly", "active", "in", "promoting", "economic", "and", "development", "issues", ".", "He", "fought", "successfully", "for", "the", "renewal", "and", "extension", "of", "the", "African", "Growth", "and", "Opportunity", "Act", "(", "AGOA", ")", ",", "America", "'", "s", "most", "important", "trade", "legislation", "with", "Africa", ";", "he", "hosted", "the", "first", "U", ".", "S", ".", "-", "Africa", "Leadership", "Summit", ",", "attended", "by", "37", "heads", "of", "state", ";", "and", "he", "has", "established", "several", "important", "new", "economic", "programs", ",", "including", "\"", "Power", "Africa", "\"", "-", "to", "expand", "significantly", "electrical", "access", "across", "the", "continent", ";", "\"", "Feed", "the", "Future", "\"", "-", "to", "increase", "household", "food", "production", "and", "to", "generate", "a", "green", "revolution", "throughout", "Africa", ",", "and", "\"", "Trade", "Africa", "\"", "-", "to", "expand", "substantially", "trade", "between", "Africa", "and", "the", "United", "States", ".", "Recognizing", "the", "growing", "role", "of", "the", "continent", "'", "s", "next", "generation", "of", "young", "leaders", ",", "President", "Obama", "established", "YALI", "-", "the", "Young", "African", "Leaders", "Initiative", ",", "a", "program", "that", "will", "bring", "500", "young", "African", "entrepreneurs", ",", "professionals", "and", "community", "organizers", "to", "the", "U", ".", "S", ".", "each", "year", "for", "the", "next", "several", "years", "for", "five", "weeks", "of", "leadership", ",", "organization", "and", "management", "training", ".", "But", "what", "next", "?", "Despite", "his", "rather", "impressive", "list", "of", "accomplishments", ",", "here", "are", "ten", "things", "the", "president", "should", "do", "before", "he", "leaves", "office", "in", "January", "2017", ":", "Visit", "Nigeria", ":", "President", "Obama", "has", "traveled", "to", "Africa", "five", "times", "during", "his", "presidency", "-", "but", "he", "has", "not", "visited", "Nigeria", ",", "the", "continent", "'", "s", "economic", ",", "political", ",", "communications", "and", "petroleum", "giant", ",", "and", "its", "most", "important", "state", ".", "It", "is", "the", "continent", "'", "s", "largest", "economy", "-", "almost", "twice", "the", "size", "of", "South", "Africa", "'", "s", "and", "a", "third", "larger", "than", "that", "of", "Egypt", ".", "It", "is", "also", "the", "continent", "'", "s", "most", "populous", "state", ",", "with", "180", "million", "people", ",", "its", "largest", "Muslim", "country", ",", "and", "its", "largest", "democracy", ".", "The", "president", "has", "visited", "every", "major", "country", "on", "the", "continent", "except", "Nigeria", ",", "and", "it", "would", "be", "a", "mistake", "for", "him", "to", "leave", "the", "White", "House", "without", "a", "stop", "in", "Lagos", "or", "Abuja", ".", "Some", "have", "suggested", "that", "security", "may", "be", "a", "concern", "because", "of", "Boko", "Haram", ",", "but", "if", "the", "president", "can", "travel", "safely", "to", "Nairobi", ",", "where", "al", "Shabaab", "has", "carried", "out", "high", "profile", "attacks", "in", "the", "center", "of", "the", "city", ",", "he", "should", "be", "able", "to", "travel", "safely", "to", "Abuja", "or", "Lagos", ".", "He", "is", "bound", "to", "make", "one", "more", "trip", "to", "Europe", ",", "and", "a", "stop", "in", "Nigeria", "-", "similar", "to", "his", "2009", "visit", "to", "Ghana", "-", "would", "not", "be", "a", "major", "diversion", ".", "Co", "-", "host", "a", "regional", "summit", "on", "democracy", "in", "west", "Africa", ":", "Strengthening", "democracy", "institutions", ",", "promoting", "good", "governance", "and", "supporting", "free", "and", "fair", "elections", "has", "been", "a", "major", "priority", "for", "the", "Obama", "administration", "in", "Africa", ".", "During", "his", "first", "official", "visit", "to", "the", "continent", "as", "president", "in", "July", "2009", ",", "President", "Obama", "spoke", "eloquently", "before", "the", "Ghanaian", "Parliament", "about", "the", "importance", "of", "democracy", "and", "good", "governance", "and", "the", "need", "to", "create", "\"", "more", "strong", "institutions", ",", "not", "more", "strong", "men", ".", "\"", "With", "a", "growing", "number", "of", "African", "leaders", "attempting", "to", "extend", "their", "terms", "of", "office", ",", "democracy", "remains", "fragile", "across", "the", "continent", ".", "The", "president", "could", "give", "democracy", "in", "Africa", "a", "boost", "and", "reaffirm", "America", "'", "s", "strong", "commitment", "to", "Africa", "'", "s", "political", "progress", "by", "hosting", "a", "conference", "in", "West", "Africa", "with", "the", "democratically", "-", "elected", "leaders", "of", "Benin", ",", "Burkina", "Faso", ",", "Cape", "Verde", ",", "Liberia", ",", "Niger", ",", "Nigeria", ",", "Mali", ",", "Mauritania", ",", "Senegal", ",", "Sierra", "Leone", "and", "Togo", ".", "Support", "Nigeria", "'", "s", "permanent", "membership", "in", "the", "G20", ":", "President", "Obama", "has", "said", "that", "he", "wants", "to", "ensure", "that", "Africa", "has", "a", "place", "at", "the", "table", "to", "participate", "in", "the", "deliberations", "concerning", "major", "global", "political", "and", "economic", "issues", ".", "One", "way", "to", "accomplish", "that", "is", "to", "expand", "or", "reorganize", "the", "G20", "group", "of", "nations", "to", "include", "Nigeria", "as", "a", "permanent", "member", "of", "this", "important", "global", "organization", ".", "Nigeria", "is", "already", "more", "important", "than", "several", "of", "the", "current", "G20", "members", ",", "notably", "Argentina", "and", "South", "Africa", ",", "and", "over", "the", "next", "two", "decades", "it", "will", "become", "one", "of", "the", "world", "'", "s", "mega", "states", ",", "eclipsing", "several", "other", "G20", "members", "in", "the", "size", "of", "its", "economy", ",", "population", "and", "regional", "influence", ".", "It", "would", "also", "be", "one", "of", "the", "G20", "'", "s", "largest", "democracies", ".", "The", "administration", "should", "make", "the", "inclusion", "of", "Nigeria", "a", "priority", "over", "the", "next", "12", "months", ".", "Press", "for", "the", "passage", "of", "the", "Electrify", "Africa", "legislation", ":", "Power", "Africa", "is", "one", "of", "President", "Obama", "'", "s", "most", "important", "signature", "initiatives", ".", "In", "the", "world", "'", "s", "most", "energy", "deficient", "and", "starved", "continent", ",", "it", "is", "intended", "to", "increase", "Africa", "'", "s", "power", "output", "by", "30", ",", "000", "megawatts", "over", "the", "next", "decade", "or", "two", ".", "But", "like", "a", "number", "of", "recent", "White", "House", "initiatives", ",", "Power", "Africa", "is", "not", "backed", "by", "any", "legislative", "mandate", "and", "could", "be", "easily", "brushed", "aside", "after", "the", "Obama", "administration", "leaves", "office", ".", "The", "program", "enjoys", "bi", "-", "partisan", "support", "in", "the", "Congress", "and", "the", "administration", "needs", "to", "work", "with", "congressional", "leaders", "to", "prioritize", "the", "passage", "of", "the", "Electrify", "Africa", "legislation", ".", "At", "the", "same", "time", ",", "the", "administration", "needs", "to", "create", "a", "senior", "level", "\"", "Power", "Africa", "czar", "\"", "to", "manage", "the", "program", "and", "consider", "moving", "interagency", "responsibility", "for", "oversight", "from", "USAID", "to", "a", "cabinet", "level", "department", ".", "Instruct", "USAID", "to", "establish", "a", "permanent", "democracy", "fund", ":", "If", "democracy", "promotion", "is", "an", "important", "priority", ",", "it", "should", "be", "funded", "adequately", "and", "on", "a", "long", "-", "term", "basis", ".", "Today", "that", "is", "not", "the", "case", ".", "Funding", "for", "democracy", "has", "declined", "sharply", "during", "Obama", "'", "s", "second", "term", "despite", "the", "president", "'", "s", "recent", "speeches", "in", "Nairobi", "and", "Addis", "Ababa", ",", "and", "at", "the", "70th", "session", "of", "the", "United", "Nations", "General", "Assembly", "in", "New", "York", ".", "Dedicated", "and", "hard", "-", "to", "-", "reprogram", "funds", "should", "be", "allocated", "to", "strengthen", "African", "judiciaries", "and", "legislatures", ",", "to", "promote", "civil", "society", "groups", "and", "the", "media", ",", "to", "assist", "women", "'", "s", "organizations", "and", "youth", "groups", "and", "to", "support", "domestic", "and", "international", "election", "monitoring", ".", "Funds", "should", "also", "be", "made", "available", "to", "assist", "local", "organizations", "to", "undertake", "parallel", "vote", "counts", ",", "to", "aid", "local", "election", "commissions", "and", "to", "prevent", "pre", "-", "and", "post", "-", "election", "violence", ".", "Invite", "Tanzania", "'", "s", "newly", "elected", "President", "John", "Magufuli", "to", "the", "White", "House", ":", "Tanzania", "is", "the", "most", "populous", "state", "and", "the", "largest", "democracy", "in", "East", "Africa", ".", "It", "is", "also", "one", "of", "the", "largest", "recipients", "of", "U", ".", "S", ".", "development", "assistance", "and", "a", "participant", "in", "all", "of", "Washington", "'", "s", "major", "economic", "initiatives", ".", "In", "late", "October", ",", "Tanzania", "held", "presidential", "and", "parliamentary", "elections", ".", "The", "elections", "on", "the", "mainland", "went", "well", ",", "but", "those", "on", "the", "island", "of", "Zanzibar", "were", "disputed", ".", "President", "John", "Pombe", "Magufuli", ",", "a", "reform", "-", "minded", "academic", "-", "turned", "-", "politician", ",", "was", "elected", "without", "dispute", ",", "making", "him", "Tanzania", "'", "s", "fifth", "democratically", "-", "elected", "president", "in", "a", "row", ".", "Although", "the", "Zanzibar", "election", "remains", "unresolved", ",", "it", "is", "important", "to", "reach", "out", "to", "Tanzania", "'", "s", "new", "president", "early", "in", "his", "tenure", "to", "continue", "to", "foster", "the", "strong", "relationship", "between", "Dar", "es", "Salaam", "and", "Washington", ".", "This", "is", "particularly", "important", "since", "President", "Magufuli", "does", "not", "have", "any", "major", "ties", "with", "the", "United", "States", ".", "Tanzania", "also", "has", "a", "critical", "role", "to", "play", "in", "East", "African", "peace", "-", "building", "issues", ",", "particularly", "in", "Burundi", "and", "the", "eastern", "Congo", ".", "Early", "political", "consultations", "with", "President", "Magufuli", "and", "his", "new", "foreign", "minister", ",", "Dr", ".", "Augustine", "Mahiga", ",", "could", "prove", "valuable", "in", "promoting", "stability", "in", "the", "Great", "Lakes", "region", ".", "Send", "Secretary", "of", "State", "John", "Kerry", "to", "Rwanda", ",", "Burundi", ",", "the", "Democratic", "Republic", "of", "Congo", "(", "DRC", ")", ",", "Uganda", "and", "the", "Republic", "of", "the", "Congo", ":", "The", "Great", "Lakes", "Region", "of", "Central", "Africa", "is", "one", "of", "the", "most", "volatile", "and", "unstable", "regions", "in", "Africa", ",", "with", "daily", "political", "and", "ethnic", "violence", "in", "Burundi", ",", "and", "with", "the", "leaders", "of", "Rwanda", ",", "the", "DRC", "and", "the", "Congo", "threatening", "to", "extend", "themselves", "in", "office", "in", "violation", "of", "their", "constitutions", ".", "Although", "time", "is", "running", "out", ",", "there", "is", "still", "an", "opportunity", "to", "prevent", "further", "democratic", "backsliding", "and", "the", "serious", "instability", "and", "violence", "that", "will", "almost", "certainly", "be", "unleashed", "-", "as", "we", "are", "already", "seeing", "in", "Burundi", ".", "High", "level", "engagement", "with", "the", "leaders", "in", "the", "region", "is", "required", ".", "An", "extended", "visit", "by", "Secretary", "Kerry", "to", "the", "DRC", ",", "Uganda", ",", "Rwanda", "and", "Burundi", "would", "be", "a", "strong", "signal", "of", "Washington", "'", "s", "deep", "concern", "and", "interest", "in", "the", "region", "'", "s", "negative", "political", "and", "security", "trajectory", ".", "Without", "serious", "engagement", "with", "the", "leaders", "on", "the", "ground", ",", "there", "will", "be", "no", "meaningful", "progress", ".", "Open", "a", "U", ".", "S", ".", "consulate", "in", "northern", "Nigeria", "and", "a", "full", "embassy", "in", "Mogadishu", ":", "The", "establishment", "of", "a", "consulate", "in", "northern", "Nigeria", "is", "long", "overdue", ".", "More", "than", "half", "of", "Nigeria", "'", "s", "180", "million", "people", "live", "in", "the", "northern", "part", "of", "the", "country", ",", "an", "area", "of", "serious", "political", "and", "security", "concern", ".", "It", "is", "also", "the", "largest", "Muslim", "region", "in", "Africa", "and", "the", "largest", "Muslim", "region", "in", "the", "world", "where", "there", "is", "no", "full", "-", "time", "U", ".", "S", ".", "diplomatic", "presence", ".", "A", "U", ".", "S", ".", "diplomatic", "mission", "would", "advance", "long", "-", "term", "political", ",", "economic", "and", "security", "interests", "in", "the", "region", "and", "help", "Nigeria", "to", "deal", "with", "the", "economic", ",", "social", "and", "security", "challenges", "it", "faces", "there", ".", "A", "consulate", "in", "Kaduna", ",", "which", "once", "had", "one", ",", "or", "Kano", "would", "convey", "a", "strong", "signal", "to", "the", "Muslim", "community", "that", "Washington", "genuinely", "cares", "about", "the", "people", "in", "the", "region", ".", "Once", "the", "global", "poster", "child", "of", "a", "failed", "state", ",", "Somalia", "has", "made", "significant", "progress", "over", "the", "past", "seven", "years", ".", "In", "recognition", "of", "the", "progress", ",", "the", "U", ".", "S", ".", "re", "-", "established", "formal", "diplomatic", "relations", "with", "the", "Somali", "government", "in", "Mogadishu", "in", "January", "2013", ".", "Before", "he", "leaves", "office", ",", "President", "Obama", "should", "take", "one", "more", "step", ".", "He", "should", "reaffirm", "Washington", "'", "s", "commitment", "to", "Somalia", "and", "recognize", "the", "country", "'", "s", "continuing", "progress", "by", "appointing", "a", "Senate", "-", "approved", "ambassador", "and", "opening", "a", "small", ",", "secure", "diplomatic", "embassy", "compound", "in", "downtown", "Mogadishu", ".", "Elevate", "U", ".", "S", ".", "diplomatic", "relations", "with", "Sudan", ":", "Relations", "between", "Washington", "and", "Khartoum", "have", "been", "prickly", "and", "frequently", "difficult", "for", "over", "two", "decades", "and", "the", "U", ".", "S", ".", "has", "not", "had", "a", "fully", "accredited", ",", "Senate", "-", "approved", "ambassador", "in", "Sudan", "since", "1997", ".", "The", "Khartoum", "government", "has", "not", "been", "a", "good", "international", "actor", ".", "(", "Nor", "have", "Cuba", ",", "Myanmar", "or", "Iran", ".", ")", "The", "regime", "in", "Sudan", "has", "carried", "out", "mass", "atrocities", "in", "Darfur", ",", "prevented", "UN", "organizations", "from", "delivering", "food", "aid", "and", "humanitarian", "assistance", "to", "those", "in", "need", "and", "meddled", "in", "the", "affairs", "of", "several", "of", "its", "neighbors", ".", "But", "U", ".", "S", ".", "-", "imposed", "comprehensive", "sanctions", "on", "Khartoum", "have", "not", "isolated", "the", "country", "nor", "weakened", "its", "government", ".", "The", "U", ".", "S", ".", "should", "review", "its", "current", "policies", "toward", "Khartoum", ",", "and", "consider", "elevating", "its", "diplomatic", "relationship", "to", "full", "ambassadorial", "status", "in", "order", "to", "expand", "America", "'", "s", "dialogue", "and", "probe", "for", "new", "openings", "to", "resolve", "some", "of", "the", "country", "'", "s", "domestic", "and", "regional", "issues", ".", "The", "U", ".", "S", ".", "can", "do", "this", "while", "maintaining", "its", "sanctions", "regime", "on", "the", "government", "and", "its", "demands", "that", "President", "Omar", "al", "-", "Bashir", "address", "the", "serious", "human", "rights", "charges", "against", "him", ".", "Provide", "a", "status", "report", "on", "the", "results", "of", "the", "U", ".", "S", ".", "-", "Africa", "Leadership", "Summit", ":", "The", "U", ".", "S", ".", "Africa", "Leadership", "Summit", "has", "been", "one", "of", "the", "high", "points", "in", "the", "Obama", "administration", "'", "s", "engagements", "in", "Africa", ".", "Leaders", "from", "50", "different", "countries", "participated", "in", "this", "first", "-", "of", "-", "a", "-", "kind", "gathering", "in", "Washington", ".", "A", "number", "of", "new", "programs", "were", "announced", "and", "a", "major", "business", "conference", "associated", "with", "the", "summit", "brought", "dozens", "of", "senior", "American", "business", "leaders", "into", "direct", "contact", "-", "many", "for", "the", "very", "first", "time", "-", "with", "African", "heads", "of", "state", "and", "prominent", "business", "leaders", "from", "the", "continent", ".", "The", "administration", "has", "never", "released", "a", "comprehensive", "report", "on", "the", "summit", "or", "a", "one", "-", "year", "progress", "report", "on", "the", "implementation", "of", "summit", "agreements", ".", "The", "issuance", "of", "some", "type", "of", "status", "report", "would", "be", "a", "useful", "vehicle", "for", "identifying", "summit", "objectives", "and", "initiatives", "as", "well", "as", "tracking", "the", "progress", "of", "the", "administration", "'", "s", "efforts", ".", "The", "administration", "should", "do", "everything", "it", "can", "to", "sustain", "the", "goodwill", "and", "policy", "initiatives", "that", "emerged", "from", "the", "summit", "to", "help", "ensure", "that", "it", "does", "not", "become", "a", "one", "-", "off", "event", ".", "The", "administration", "should", "be", "applauded", "for", "its", "continuing", "efforts", "to", "promote", "greater", "American", "trade", "and", "commerce", "with", "Africa", ".", "The", "president", "has", "already", "announced", "that", "he", "plans", "to", "host", "another", "U", ".", "S", ".", "-", "Africa", "Business", "Summit", "similar", "to", "the", "day", "-", "long", "event", "his", "administration", "hosted", "during", "the", "2014", "Leadership", "Summit", ".", "The", "Business", "Summit", "is", "important", ",", "but", "it", "should", "not", "be", "the", "only", "thing", "on", "President", "Obama", "'", "s", "Africa", "agenda", "for", "2016", ".", "He", "has", "time", "to", "do", "more", ",", "and", "he", "should", ".", "Twelve", "months", "is", "a", "long", "time", "in", "the", "life", "of", "an", "administration", "and", "his", "foreign", "policy", "team", "should", "be", "building", "a", "more", "robust", "African", "agenda", "for", "his", "last", "year", "in", "office", ".", "Ambassador", "Carson", "was", "the", "U", ".", "S", ".", "Assistant", "Secretary", "of", "State", "for", "African", "Affairs", "from", "2009", "to", "2012", ".", "He", "is", "currently", "a", "Senior", "Advisor", "at", "the", "United", "States", "Institute", "of", "Peace", ".", "Copyright", "2016", "allAfrica", ".", "com", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u2014", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/04/201601040001.html"}, "content_strict": {"text": "

Photo:

AllAfrica

Former U.S. Assistant Secretary of State Johnnie Carson

guest column

By Johnnie Carson

Washington, DC \u2014

After seven years in office, President Barack Obama has already engaged more broadly on Africa than any previous American president, but with one year remaining in the White House, there are still a few things he should do before he leaves, writes

Johnnie Carson

, the United States' top policy-maker on Africa in the first Obama administration.

President Obama has significantly elevated and transformed America's engagement with Africa, traveling widely across the continent, championing the renewal of several old programs and launching a series of highly focused new initiatives that could help speed-up Africa's economic development.

He has been particularly active in promoting economic and development issues.

He fought successfully for the renewal and extension of the African Growth and Opportunity Act (AGOA), America's most important trade legislation with Africa; he hosted the first U.S.-Africa Leadership Summit, attended by 37 heads of state; and he has established several important new economic programs, including \"Power Africa\" - to expand significantly electrical access across the continent; \"Feed the Future\" - to increase household food production and to generate a green revolution throughout Africa, and \"Trade Africa\" - to expand substantially trade between Africa and the United States.

Recognizing the growing role of the continent's next generation of young leaders, President Obama established YALI - the Young African Leaders Initiative, a program that will bring 500 young African entrepreneurs, professionals and community organizers to the U.S. each year for the next several years for five weeks of leadership, organization and management training.

But what next?

Despite his rather impressive list of accomplishments, here are ten things the president should do before he leaves office in January 2017:

Visit Nigeria:

President Obama has traveled to Africa five times during his presidency - but he has not visited Nigeria, the continent's economic, political, communications and petroleum giant, and its most important state. It is the continent's largest economy - almost twice the size of South Africa's and a third larger than that of Egypt.

It is also the continent's most populous state, with 180 million people, its largest Muslim country, and its largest democracy.

The president has visited every major country on the continent except Nigeria, and it would be a mistake for him to leave the White House without a stop in Lagos or Abuja.

Some have suggested that security may be a concern because of Boko Haram, but if the president can travel safely to Nairobi, where al Shabaab has carried out high profile attacks in the center of the city, he should be able to travel safely to Abuja or Lagos. He is bound to make one more trip to Europe, and a stop in Nigeria - similar to his 2009 visit to Ghana - would not be a major diversion.

Co-host a regional summit on democracy in west Africa:

Strengthening democracy institutions, promoting good governance and supporting free and fair elections has been a major priority for the Obama administration in Africa.

During his first official visit to the continent as president in July 2009, President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy and good governance and the need to create \"more strong institutions, not more strong men.\" With a growing number of African leaders attempting to extend their terms of office, democracy remains fragile across the continent. The president could give democracy in Africa a boost and reaffirm America's strong commitment to Africa's political progress by hosting a conference in West Africa with the democratically-elected leaders of Benin, Burkina Faso, Cape Verde, Liberia, Niger, Nigeria, Mali, Mauritania, Senegal, Sierra Leone and Togo.

Support Nigeria's permanent membership in the G20:

President Obama has said that he wants to ensure that Africa has a place at the table to participate in the deliberations concerning major global political and economic issues. One way to accomplish that is to expand or reorganize the G20 group of nations to include Nigeria as a permanent member of this important global organization.

Nigeria is already more important than several of the current G20 members, notably Argentina and South Africa, and over the next two decades it will become one of the world's mega states, eclipsing several other G20 members in the size of its economy, population and regional influence. It would also be one of the G20's largest democracies. The administration should make the inclusion of Nigeria a priority over the next 12 months.

Press for the passage of the Electrify Africa legislation:

Power Africa is one of President Obama's most important signature initiatives. In the world's most energy deficient and starved continent, it is intended to increase Africa's power output by 30,000 megawatts over the next decade or two.

But like a number of recent White House initiatives, Power Africa is not backed by any legislative mandate and could be easily brushed aside after the Obama administration leaves office. The program enjoys bi-partisan support in the Congress and the administration needs to work with congressional leaders to prioritize the passage of the Electrify Africa legislation. At the same time, the administration needs to create a senior level \"Power Africa czar\" to manage the program and consider moving interagency responsibility for oversight from USAID to a cabinet level department.

Instruct USAID to establish a permanent democracy fund:

If democracy promotion is an important priority, it should be funded adequately and on a long-term basis. Today that is not the case. Funding for democracy has declined sharply during Obama's second term despite the president's recent speeches in Nairobi and Addis Ababa, and at the 70th session of the United Nations General Assembly in New York.

Dedicated and hard-to-reprogram funds should be allocated to strengthen African judiciaries and legislatures, to promote civil society groups and the media, to assist women's organizations and youth groups and to support domestic and international election monitoring. Funds should also be made available to assist local organizations to undertake parallel vote counts, to aid local election commissions and to prevent pre- and post-election violence.

Invite Tanzania's newly elected President John Magufuli to the White House:

Tanzania is the most populous state and the largest democracy in East Africa. It is also one of the largest recipients of U.S. development assistance and a participant in all of Washington's major economic initiatives.

In late October, Tanzania held presidential and parliamentary elections.The elections on the mainland went well, but those on the island of Zanzibar were disputed. President John Pombe Magufuli, a reform-minded academic-turned-politician, was elected without dispute, making him Tanzania's fifth democratically-elected president in a row. Although the Zanzibar election remains unresolved, it is important to reach out to Tanzania's new president early in his tenure to continue to foster the strong relationship between Dar es Salaam and Washington.

This is particularly important since President Magufuli does not have any major ties with the United States.Tanzania also has a critical role to play in East African peace-building issues, particularly in Burundi and the eastern Congo. Early political consultations with President Magufuli and his new foreign minister, Dr. Augustine Mahiga, could prove valuable in promoting stability in the Great Lakes region.

Send Secretary of State John Kerry to Rwanda, Burundi, the Democratic Republic of Congo (DRC), Uganda and the Republic of the Congo:

The Great Lakes Region of Central Africa is one of the most volatile and unstable regions in Africa, with daily political and ethnic violence in Burundi, and with the leaders of Rwanda, the DRC and the Congo threatening to extend themselves in office in violation of their constitutions.

Although time is running out, there is still an opportunity to prevent further democratic backsliding and the serious instability and violence that will almost certainly be unleashed - as we are already seeing in Burundi. High level engagement with the leaders in the region is required.

An extended visit by Secretary Kerry to the DRC, Uganda, Rwanda and Burundi would be a strong signal of Washington's deep concern and interest in the region's negative political and security trajectory. Without serious engagement with the leaders on the ground, there will be no meaningful progress.

Open a U.S. consulate in northern Nigeria and a full embassy in Mogadishu:

The establishment of a consulate in northern Nigeria is long overdue. More than half of Nigeria's 180 million people live in the northern part of the country, an area of serious political and security concern. It is also the largest Muslim region in Africa and the largest Muslim region in the world where there is no full-time U.S. diplomatic presence.

A U.S. diplomatic mission would advance long-term political, economic and security interests in the region and help Nigeria to deal with the economic, social and security challenges it faces there. A consulate in Kaduna, which once had one, or Kano would convey a strong signal to the Muslim community that Washington genuinely cares about the people in the region.

Once the global poster child of a failed state, Somalia has made significant progress over the past seven years. In recognition of the progress, the U.S. re-established formal diplomatic relations with the Somali government in Mogadishu in January 2013.

Before he leaves office, President Obama should take one more step. He should reaffirm Washington's commitment to Somalia and recognize the country's continuing progress by appointing a Senate-approved ambassador and opening a small, secure diplomatic embassy compound in downtown Mogadishu.

Elevate U.S. diplomatic relations with Sudan:

Relations between Washington and Khartoum have been prickly and frequently difficult for over two decades and the U.S. has not had a fully accredited, Senate-approved ambassador in Sudan since 1997.

The Khartoum government has not been a good international actor. (Nor have Cuba, Myanmar or Iran.) The regime in Sudan has carried out mass atrocities in Darfur, prevented UN organizations from delivering food aid and humanitarian assistance to those in need and meddled in the affairs of several of its neighbors.

But U.S.-imposed comprehensive sanctions on Khartoum have not isolated the country nor weakened its government. The U.S. should review its current policies toward Khartoum, and consider elevating its diplomatic relationship to full ambassadorial status in order to expand America's dialogue and probe for new openings to resolve some of the country's domestic and regional issues. The U.S. can do this while maintaining its sanctions regime on the government and its demands that President Omar al-Bashir address the serious human rights charges against him.

Provide a status report on the results of the U.S.-Africa Leadership Summit:

The U.S. Africa Leadership Summit has been one of the high points in the Obama administration's engagements in Africa.

Leaders from 50 different countries participated in this first-of-a-kind gathering in Washington. A number of new programs were announced and a major business conference associated with the summit brought dozens of senior American business leaders into direct contact - many for the very first time - with African heads of state and prominent business leaders from the continent.

The administration has never released a comprehensive report on the summit or a one-year progress report on the implementation of summit agreements. The issuance of some type of status report would be a useful vehicle for identifying summit objectives and initiatives as well as tracking the progress of the administration's efforts. The administration should do everything it can to sustain the goodwill and policy initiatives that emerged from the summit to help ensure that it does not become a one-off event.

The administration should be applauded for its continuing efforts to promote greater American trade and commerce with Africa. The president has already announced that he plans to host another U.S.-Africa Business Summit similar to the day-long event his administration hosted during the 2014 Leadership Summit. The Business Summit is important, but it should not be the only thing on President Obama's Africa agenda for 2016. He has time to do more, and he should. Twelve months is a long time in the life of an administration and his foreign policy team should be building a more robust African agenda for his last year in office.

Ambassador Carson was the U.S.

Assistant Secretary of State for African Affairs

from 2009 to 2012. He is currently a Senior Advisor at the

United States Institute of Peace.

", "simple_tokens": ["photo", ":", "allafrica", "former", "u", ".", "s", ".", "assistant", "secretary", "of", "state", "johnnie", "carson", "guest", "column", "by", "johnnie", "carson", "washington", ",", "dc", "\u2014", "after", "seven", "years", "in", "office", ",", "president", "barack", "obama", "has", "already", "engaged", "more", "broadly", "on", "africa", "than", "any", "previous", "american", "president", ",", "but", "with", "one", "year", "remaining", "in", "the", "white", "house", ",", "there", "are", "still", "a", "few", "things", "he", "should", "do", "before", "he", "leaves", ",", "writes", "johnnie", "carson", ",", "the", "united", "states", "'", "top", "policy", "-", "maker", "on", "africa", "in", "the", "first", "obama", "administration", ".", "president", "obama", "has", "significantly", "elevated", "and", "transformed", "america", "'", "s", "engagement", "with", "africa", ",", "traveling", "widely", "across", "the", "continent", ",", "championing", "the", "renewal", "of", "several", "old", "programs", "and", "launching", "a", "series", "of", "highly", "focused", "new", "initiatives", "that", "could", "help", "speed", "-", "up", "africa", "'", "s", "economic", "development", ".", "he", "has", "been", "particularly", "active", "in", "promoting", "economic", "and", "development", "issues", ".", "he", "fought", "successfully", "for", "the", "renewal", "and", "extension", "of", "the", "african", "growth", "and", "opportunity", "act", "(", "agoa", ")", ",", "america", "'", "s", "most", "important", "trade", "legislation", "with", "africa", ";", "he", "hosted", "the", "first", "u", ".", "s", ".", "-", "africa", "leadership", "summit", ",", "attended", "by", "37", "heads", "of", "state", ";", "and", "he", "has", "established", "several", "important", "new", "economic", "programs", ",", "including", "\"", "power", "africa", "\"", "-", "to", "expand", "significantly", "electrical", "access", "across", "the", "continent", ";", "\"", "feed", "the", "future", "\"", "-", "to", "increase", "household", "food", "production", "and", "to", "generate", "a", "green", "revolution", "throughout", "africa", ",", "and", "\"", "trade", "africa", "\"", "-", "to", "expand", "substantially", "trade", "between", "africa", "and", "the", "united", "states", ".", "recognizing", "the", "growing", "role", "of", "the", "continent", "'", "s", "next", "generation", "of", "young", "leaders", ",", "president", "obama", "established", "yali", "-", "the", "young", "african", "leaders", "initiative", ",", "a", "program", "that", "will", "bring", "500", "young", "african", "entrepreneurs", ",", "professionals", "and", "community", "organizers", "to", "the", "u", ".", "s", ".", "each", "year", "for", "the", "next", "several", "years", "for", "five", "weeks", "of", "leadership", ",", "organization", "and", "management", "training", ".", "but", "what", "next", "?", "despite", "his", "rather", "impressive", "list", "of", "accomplishments", ",", "here", "are", "ten", "things", "the", "president", "should", "do", "before", "he", "leaves", "office", "in", "january", "2017", ":", "visit", "nigeria", ":", "president", "obama", "has", "traveled", "to", "africa", "five", "times", "during", "his", "presidency", "-", "but", "he", "has", "not", "visited", "nigeria", ",", "the", "continent", "'", "s", "economic", ",", "political", ",", "communications", "and", "petroleum", "giant", ",", "and", "its", "most", "important", "state", ".", "it", "is", "the", "continent", "'", "s", "largest", "economy", "-", "almost", "twice", "the", "size", "of", "south", "africa", "'", "s", "and", "a", "third", "larger", "than", "that", "of", "egypt", ".", "it", "is", "also", "the", "continent", "'", "s", "most", "populous", "state", ",", "with", "180", "million", "people", ",", "its", "largest", "muslim", "country", ",", "and", "its", "largest", "democracy", ".", "the", "president", "has", "visited", "every", "major", "country", "on", "the", "continent", "except", "nigeria", ",", "and", "it", "would", "be", "a", "mistake", "for", "him", "to", "leave", "the", "white", "house", "without", "a", "stop", "in", "lagos", "or", "abuja", ".", "some", "have", "suggested", "that", "security", "may", "be", "a", "concern", "because", "of", "boko", "haram", ",", "but", "if", "the", "president", "can", "travel", "safely", "to", "nairobi", ",", "where", "al", "shabaab", "has", "carried", "out", "high", "profile", "attacks", "in", "the", "center", "of", "the", "city", ",", "he", "should", "be", "able", "to", "travel", "safely", "to", "abuja", "or", "lagos", ".", "he", "is", "bound", "to", "make", "one", "more", "trip", "to", "europe", ",", "and", "a", "stop", "in", "nigeria", "-", "similar", "to", "his", "2009", "visit", "to", "ghana", "-", "would", "not", "be", "a", "major", "diversion", ".", "co", "-", "host", "a", "regional", "summit", "on", "democracy", "in", "west", "africa", ":", "strengthening", "democracy", "institutions", ",", "promoting", "good", "governance", "and", "supporting", "free", "and", "fair", "elections", "has", "been", "a", "major", "priority", "for", "the", "obama", "administration", "in", "africa", ".", "during", "his", "first", "official", "visit", "to", "the", "continent", "as", "president", "in", "july", "2009", ",", "president", "obama", "spoke", "eloquently", "before", "the", "ghanaian", "parliament", "about", "the", "importance", "of", "democracy", "and", "good", "governance", "and", "the", "need", "to", "create", "\"", "more", "strong", "institutions", ",", "not", "more", "strong", "men", ".", "\"", "with", "a", "growing", "number", "of", "african", "leaders", "attempting", "to", "extend", "their", "terms", "of", "office", ",", "democracy", "remains", "fragile", "across", "the", "continent", ".", "the", "president", "could", "give", "democracy", "in", "africa", "a", "boost", "and", "reaffirm", "america", "'", "s", "strong", "commitment", "to", "africa", "'", "s", "political", "progress", "by", "hosting", "a", "conference", "in", "west", "africa", "with", "the", "democratically", "-", "elected", "leaders", "of", "benin", ",", "burkina", "faso", ",", "cape", "verde", ",", "liberia", ",", "niger", ",", "nigeria", ",", "mali", ",", "mauritania", ",", "senegal", ",", "sierra", "leone", "and", "togo", ".", "support", "nigeria", "'", "s", "permanent", "membership", "in", "the", "g20", ":", "president", "obama", "has", "said", "that", "he", "wants", "to", "ensure", "that", "africa", "has", "a", "place", "at", "the", "table", "to", "participate", "in", "the", "deliberations", "concerning", "major", "global", "political", "and", "economic", "issues", ".", "one", "way", "to", "accomplish", "that", "is", "to", "expand", "or", "reorganize", "the", "g20", "group", "of", "nations", "to", "include", "nigeria", "as", "a", "permanent", "member", "of", "this", "important", "global", "organization", ".", "nigeria", "is", "already", "more", "important", "than", "several", "of", "the", "current", "g20", "members", ",", "notably", "argentina", "and", "south", "africa", ",", "and", "over", "the", "next", "two", "decades", "it", "will", "become", "one", "of", "the", "world", "'", "s", "mega", "states", ",", "eclipsing", "several", "other", "g20", "members", "in", "the", "size", "of", "its", "economy", ",", "population", "and", "regional", "influence", ".", "it", "would", "also", "be", "one", "of", "the", "g20", "'", "s", "largest", "democracies", ".", "the", "administration", "should", "make", "the", "inclusion", "of", "nigeria", "a", "priority", "over", "the", "next", "12", "months", ".", "press", "for", "the", "passage", "of", "the", "electrify", "africa", "legislation", ":", "power", "africa", "is", "one", "of", "president", "obama", "'", "s", "most", "important", "signature", "initiatives", ".", "in", "the", "world", "'", "s", "most", "energy", "deficient", "and", "starved", "continent", ",", "it", "is", "intended", "to", "increase", "africa", "'", "s", "power", "output", "by", "30", ",", "000", "megawatts", "over", "the", "next", "decade", "or", "two", ".", "but", "like", "a", "number", "of", "recent", "white", "house", "initiatives", ",", "power", "africa", "is", "not", "backed", "by", "any", "legislative", "mandate", "and", "could", "be", "easily", "brushed", "aside", "after", "the", "obama", "administration", "leaves", "office", ".", "the", "program", "enjoys", "bi", "-", "partisan", "support", "in", "the", "congress", "and", "the", "administration", "needs", "to", "work", "with", "congressional", "leaders", "to", "prioritize", "the", "passage", "of", "the", "electrify", "africa", "legislation", ".", "at", "the", "same", "time", ",", "the", "administration", "needs", "to", "create", "a", "senior", "level", "\"", "power", "africa", "czar", "\"", "to", "manage", "the", "program", "and", "consider", "moving", "interagency", "responsibility", "for", "oversight", "from", "usaid", "to", "a", "cabinet", "level", "department", ".", "instruct", "usaid", "to", "establish", "a", "permanent", "democracy", "fund", ":", "if", "democracy", "promotion", "is", "an", "important", "priority", ",", "it", "should", "be", "funded", "adequately", "and", "on", "a", "long", "-", "term", "basis", ".", "today", "that", "is", "not", "the", "case", ".", "funding", "for", "democracy", "has", "declined", "sharply", "during", "obama", "'", "s", "second", "term", "despite", "the", "president", "'", "s", "recent", "speeches", "in", "nairobi", "and", "addis", "ababa", ",", "and", "at", "the", "70th", "session", "of", "the", "united", "nations", "general", "assembly", "in", "new", "york", ".", "dedicated", "and", "hard", "-", "to", "-", "reprogram", "funds", "should", "be", "allocated", "to", "strengthen", "african", "judiciaries", "and", "legislatures", ",", "to", "promote", "civil", "society", "groups", "and", "the", "media", ",", "to", "assist", "women", "'", "s", "organizations", "and", "youth", "groups", "and", "to", "support", "domestic", "and", "international", "election", "monitoring", ".", "funds", "should", "also", "be", "made", "available", "to", "assist", "local", "organizations", "to", "undertake", "parallel", "vote", "counts", ",", "to", "aid", "local", "election", "commissions", "and", "to", "prevent", "pre", "-", "and", "post", "-", "election", "violence", ".", "invite", "tanzania", "'", "s", "newly", "elected", "president", "john", "magufuli", "to", "the", "white", "house", ":", "tanzania", "is", "the", "most", "populous", "state", "and", "the", "largest", "democracy", "in", "east", "africa", ".", "it", "is", "also", "one", "of", "the", "largest", "recipients", "of", "u", ".", "s", ".", "development", "assistance", "and", "a", "participant", "in", "all", "of", "washington", "'", "s", "major", "economic", "initiatives", ".", "in", "late", "october", ",", "tanzania", "held", "presidential", "and", "parliamentary", "elections", ".", "the", "elections", "on", "the", "mainland", "went", "well", ",", "but", "those", "on", "the", "island", "of", "zanzibar", "were", "disputed", ".", "president", "john", "pombe", "magufuli", ",", "a", "reform", "-", "minded", "academic", "-", "turned", "-", "politician", ",", "was", "elected", "without", "dispute", ",", "making", "him", "tanzania", "'", "s", "fifth", "democratically", "-", "elected", "president", "in", "a", "row", ".", "although", "the", "zanzibar", "election", "remains", "unresolved", ",", "it", "is", "important", "to", "reach", "out", "to", "tanzania", "'", "s", "new", "president", "early", "in", "his", "tenure", "to", "continue", "to", "foster", "the", "strong", "relationship", "between", "dar", "es", "salaam", "and", "washington", ".", "this", "is", "particularly", "important", "since", "president", "magufuli", "does", "not", "have", "any", "major", "ties", "with", "the", "united", "states", ".", "tanzania", "also", "has", "a", "critical", "role", "to", "play", "in", "east", "african", "peace", "-", "building", "issues", ",", "particularly", "in", "burundi", "and", "the", "eastern", "congo", ".", "early", "political", "consultations", "with", "president", "magufuli", "and", "his", "new", "foreign", "minister", ",", "dr", ".", "augustine", "mahiga", ",", "could", "prove", "valuable", "in", "promoting", "stability", "in", "the", "great", "lakes", "region", ".", "send", "secretary", "of", "state", "john", "kerry", "to", "rwanda", ",", "burundi", ",", "the", "democratic", "republic", "of", "congo", "(", "drc", ")", ",", "uganda", "and", "the", "republic", "of", "the", "congo", ":", "the", "great", "lakes", "region", "of", "central", "africa", "is", "one", "of", "the", "most", "volatile", "and", "unstable", "regions", "in", "africa", ",", "with", "daily", "political", "and", "ethnic", "violence", "in", "burundi", ",", "and", "with", "the", "leaders", "of", "rwanda", ",", "the", "drc", "and", "the", "congo", "threatening", "to", "extend", "themselves", "in", "office", "in", "violation", "of", "their", "constitutions", ".", "although", "time", "is", "running", "out", ",", "there", "is", "still", "an", "opportunity", "to", "prevent", "further", "democratic", "backsliding", "and", "the", "serious", "instability", "and", "violence", "that", "will", "almost", "certainly", "be", "unleashed", "-", "as", "we", "are", "already", "seeing", "in", "burundi", ".", "high", "level", "engagement", "with", "the", "leaders", "in", "the", "region", "is", "required", ".", "an", "extended", "visit", "by", "secretary", "kerry", "to", "the", "drc", ",", "uganda", ",", "rwanda", "and", "burundi", "would", "be", "a", "strong", "signal", "of", "washington", "'", "s", "deep", "concern", "and", "interest", "in", "the", "region", "'", "s", "negative", "political", "and", "security", "trajectory", ".", "without", "serious", "engagement", "with", "the", "leaders", "on", "the", "ground", ",", "there", "will", "be", "no", "meaningful", "progress", ".", "open", "a", "u", ".", "s", ".", "consulate", "in", "northern", "nigeria", "and", "a", "full", "embassy", "in", "mogadishu", ":", "the", "establishment", "of", "a", "consulate", "in", "northern", "nigeria", "is", "long", "overdue", ".", "more", "than", "half", "of", "nigeria", "'", "s", "180", "million", "people", "live", "in", "the", "northern", "part", "of", "the", "country", ",", "an", "area", "of", "serious", "political", "and", "security", "concern", ".", "it", "is", "also", "the", "largest", "muslim", "region", "in", "africa", "and", "the", "largest", "muslim", "region", "in", "the", "world", "where", "there", "is", "no", "full", "-", "time", "u", ".", "s", ".", "diplomatic", "presence", ".", "a", "u", ".", "s", ".", "diplomatic", "mission", "would", "advance", "long", "-", "term", "political", ",", "economic", "and", "security", "interests", "in", "the", "region", "and", "help", "nigeria", "to", "deal", "with", "the", "economic", ",", "social", "and", "security", "challenges", "it", "faces", "there", ".", "a", "consulate", "in", "kaduna", ",", "which", "once", "had", "one", ",", "or", "kano", "would", "convey", "a", "strong", "signal", "to", "the", "muslim", "community", "that", "washington", "genuinely", "cares", "about", "the", "people", "in", "the", "region", ".", "once", "the", "global", "poster", "child", "of", "a", "failed", "state", ",", "somalia", "has", "made", "significant", "progress", "over", "the", "past", "seven", "years", ".", "in", "recognition", "of", "the", "progress", ",", "the", "u", ".", "s", ".", "re", "-", "established", "formal", "diplomatic", "relations", "with", "the", "somali", "government", "in", "mogadishu", "in", "january", "2013", ".", "before", "he", "leaves", "office", ",", "president", "obama", "should", "take", "one", "more", "step", ".", "he", "should", "reaffirm", "washington", "'", "s", "commitment", "to", "somalia", "and", "recognize", "the", "country", "'", "s", "continuing", "progress", "by", "appointing", "a", "senate", "-", "approved", "ambassador", "and", "opening", "a", "small", ",", "secure", "diplomatic", "embassy", "compound", "in", "downtown", "mogadishu", ".", "elevate", "u", ".", "s", ".", "diplomatic", "relations", "with", "sudan", ":", "relations", "between", "washington", "and", "khartoum", "have", "been", "prickly", "and", "frequently", "difficult", "for", "over", "two", "decades", "and", "the", "u", ".", "s", ".", "has", "not", "had", "a", "fully", "accredited", ",", "senate", "-", "approved", "ambassador", "in", "sudan", "since", "1997", ".", "the", "khartoum", "government", "has", "not", "been", "a", "good", "international", "actor", ".", "(", "nor", "have", "cuba", ",", "myanmar", "or", "iran", ".", ")", "the", "regime", "in", "sudan", "has", "carried", "out", "mass", "atrocities", "in", "darfur", ",", "prevented", "un", "organizations", "from", "delivering", "food", "aid", "and", "humanitarian", "assistance", "to", "those", "in", "need", "and", "meddled", "in", "the", "affairs", "of", "several", "of", "its", "neighbors", ".", "but", "u", ".", "s", ".", "-", "imposed", "comprehensive", "sanctions", "on", "khartoum", "have", "not", "isolated", "the", "country", "nor", "weakened", "its", "government", ".", "the", "u", ".", "s", ".", "should", "review", "its", "current", "policies", "toward", "khartoum", ",", "and", "consider", "elevating", "its", "diplomatic", "relationship", "to", "full", "ambassadorial", "status", "in", "order", "to", "expand", "america", "'", "s", "dialogue", "and", "probe", "for", "new", "openings", "to", "resolve", "some", "of", "the", "country", "'", "s", "domestic", "and", "regional", "issues", ".", "the", "u", ".", "s", ".", "can", "do", "this", "while", "maintaining", "its", "sanctions", "regime", "on", "the", "government", "and", "its", "demands", "that", "president", "omar", "al", "-", "bashir", "address", "the", "serious", "human", "rights", "charges", "against", "him", ".", "provide", "a", "status", "report", "on", "the", "results", "of", "the", "u", ".", "s", ".", "-", "africa", "leadership", "summit", ":", "the", "u", ".", "s", ".", "africa", "leadership", "summit", "has", "been", "one", "of", "the", "high", "points", "in", "the", "obama", "administration", "'", "s", "engagements", "in", "africa", ".", "leaders", "from", "50", "different", "countries", "participated", "in", "this", "first", "-", "of", "-", "a", "-", "kind", "gathering", "in", "washington", ".", "a", "number", "of", "new", "programs", "were", "announced", "and", "a", "major", "business", "conference", "associated", "with", "the", "summit", "brought", "dozens", "of", "senior", "american", "business", "leaders", "into", "direct", "contact", "-", "many", "for", "the", "very", "first", "time", "-", "with", "african", "heads", "of", "state", "and", "prominent", "business", "leaders", "from", "the", "continent", ".", "the", "administration", "has", "never", "released", "a", "comprehensive", "report", "on", "the", "summit", "or", "a", "one", "-", "year", "progress", "report", "on", "the", "implementation", "of", "summit", "agreements", ".", "the", "issuance", "of", "some", "type", "of", "status", "report", "would", "be", "a", "useful", "vehicle", "for", "identifying", "summit", "objectives", "and", "initiatives", "as", "well", "as", "tracking", "the", "progress", "of", "the", "administration", "'", "s", "efforts", ".", "the", "administration", "should", "do", "everything", "it", "can", "to", "sustain", "the", "goodwill", "and", "policy", "initiatives", "that", "emerged", "from", "the", "summit", "to", "help", "ensure", "that", "it", "does", "not", "become", "a", "one", "-", "off", "event", ".", "the", "administration", "should", "be", "applauded", "for", "its", "continuing", "efforts", "to", "promote", "greater", "american", "trade", "and", "commerce", "with", "africa", ".", "the", "president", "has", "already", "announced", "that", "he", "plans", "to", "host", "another", "u", ".", "s", ".", "-", "africa", "business", "summit", "similar", "to", "the", "day", "-", "long", "event", "his", "administration", "hosted", "during", "the", "2014", "leadership", "summit", ".", "the", "business", "summit", "is", "important", ",", "but", "it", "should", "not", "be", "the", "only", "thing", "on", "president", "obama", "'", "s", "africa", "agenda", "for", "2016", ".", "he", "has", "time", "to", "do", "more", ",", "and", "he", "should", ".", "twelve", "months", "is", "a", "long", "time", "in", "the", "life", "of", "an", "administration", "and", "his", "foreign", "policy", "team", "should", "be", "building", "a", "more", "robust", "african", "agenda", "for", "his", "last", "year", "in", "office", ".", "ambassador", "carson", "was", "the", "u", ".", "s", ".", "assistant", "secretary", "of", "state", "for", "african", "affairs", "from", "2009", "to", "2012", ".", "he", "is", "currently", "a", "senior", "advisor", "at", "the", "united", "states", "institute", "of", "peace", "."], "simple_tokens_original_case": ["Photo", ":", "AllAfrica", "Former", "U", ".", "S", ".", "Assistant", "Secretary", "of", "State", "Johnnie", "Carson", "guest", "column", "By", "Johnnie", "Carson", "Washington", ",", "DC", "\u2014", "After", "seven", "years", "in", "office", ",", "President", "Barack", "Obama", "has", "already", "engaged", "more", "broadly", "on", "Africa", "than", "any", "previous", "American", "president", ",", "but", "with", "one", "year", "remaining", "in", "the", "White", "House", ",", "there", "are", "still", "a", "few", "things", "he", "should", "do", "before", "he", "leaves", ",", "writes", "Johnnie", "Carson", ",", "the", "United", "States", "'", "top", "policy", "-", "maker", "on", "Africa", "in", "the", "first", "Obama", "administration", ".", "President", "Obama", "has", "significantly", "elevated", "and", "transformed", "America", "'", "s", "engagement", "with", "Africa", ",", "traveling", "widely", "across", "the", "continent", ",", "championing", "the", "renewal", "of", "several", "old", "programs", "and", "launching", "a", "series", "of", "highly", "focused", "new", "initiatives", "that", "could", "help", "speed", "-", "up", "Africa", "'", "s", "economic", "development", ".", "He", "has", "been", "particularly", "active", "in", "promoting", "economic", "and", "development", "issues", ".", "He", "fought", "successfully", "for", "the", "renewal", "and", "extension", "of", "the", "African", "Growth", "and", "Opportunity", "Act", "(", "AGOA", ")", ",", "America", "'", "s", "most", "important", "trade", "legislation", "with", "Africa", ";", "he", "hosted", "the", "first", "U", ".", "S", ".", "-", "Africa", "Leadership", "Summit", ",", "attended", "by", "37", "heads", "of", "state", ";", "and", "he", "has", "established", "several", "important", "new", "economic", "programs", ",", "including", "\"", "Power", "Africa", "\"", "-", "to", "expand", "significantly", "electrical", "access", "across", "the", "continent", ";", "\"", "Feed", "the", "Future", "\"", "-", "to", "increase", "household", "food", "production", "and", "to", "generate", "a", "green", "revolution", "throughout", "Africa", ",", "and", "\"", "Trade", "Africa", "\"", "-", "to", "expand", "substantially", "trade", "between", "Africa", "and", "the", "United", "States", ".", "Recognizing", "the", "growing", "role", "of", "the", "continent", "'", "s", "next", "generation", "of", "young", "leaders", ",", "President", "Obama", "established", "YALI", "-", "the", "Young", "African", "Leaders", "Initiative", ",", "a", "program", "that", "will", "bring", "500", "young", "African", "entrepreneurs", ",", "professionals", "and", "community", "organizers", "to", "the", "U", ".", "S", ".", "each", "year", "for", "the", "next", "several", "years", "for", "five", "weeks", "of", "leadership", ",", "organization", "and", "management", "training", ".", "But", "what", "next", "?", "Despite", "his", "rather", "impressive", "list", "of", "accomplishments", ",", "here", "are", "ten", "things", "the", "president", "should", "do", "before", "he", "leaves", "office", "in", "January", "2017", ":", "Visit", "Nigeria", ":", "President", "Obama", "has", "traveled", "to", "Africa", "five", "times", "during", "his", "presidency", "-", "but", "he", "has", "not", "visited", "Nigeria", ",", "the", "continent", "'", "s", "economic", ",", "political", ",", "communications", "and", "petroleum", "giant", ",", "and", "its", "most", "important", "state", ".", "It", "is", "the", "continent", "'", "s", "largest", "economy", "-", "almost", "twice", "the", "size", "of", "South", "Africa", "'", "s", "and", "a", "third", "larger", "than", "that", "of", "Egypt", ".", "It", "is", "also", "the", "continent", "'", "s", "most", "populous", "state", ",", "with", "180", "million", "people", ",", "its", "largest", "Muslim", "country", ",", "and", "its", "largest", "democracy", ".", "The", "president", "has", "visited", "every", "major", "country", "on", "the", "continent", "except", "Nigeria", ",", "and", "it", "would", "be", "a", "mistake", "for", "him", "to", "leave", "the", "White", "House", "without", "a", "stop", "in", "Lagos", "or", "Abuja", ".", "Some", "have", "suggested", "that", "security", "may", "be", "a", "concern", "because", "of", "Boko", "Haram", ",", "but", "if", "the", "president", "can", "travel", "safely", "to", "Nairobi", ",", "where", "al", "Shabaab", "has", "carried", "out", "high", "profile", "attacks", "in", "the", "center", "of", "the", "city", ",", "he", "should", "be", "able", "to", "travel", "safely", "to", "Abuja", "or", "Lagos", ".", "He", "is", "bound", "to", "make", "one", "more", "trip", "to", "Europe", ",", "and", "a", "stop", "in", "Nigeria", "-", "similar", "to", "his", "2009", "visit", "to", "Ghana", "-", "would", "not", "be", "a", "major", "diversion", ".", "Co", "-", "host", "a", "regional", "summit", "on", "democracy", "in", "west", "Africa", ":", "Strengthening", "democracy", "institutions", ",", "promoting", "good", "governance", "and", "supporting", "free", "and", "fair", "elections", "has", "been", "a", "major", "priority", "for", "the", "Obama", "administration", "in", "Africa", ".", "During", "his", "first", "official", "visit", "to", "the", "continent", "as", "president", "in", "July", "2009", ",", "President", "Obama", "spoke", "eloquently", "before", "the", "Ghanaian", "Parliament", "about", "the", "importance", "of", "democracy", "and", "good", "governance", "and", "the", "need", "to", "create", "\"", "more", "strong", "institutions", ",", "not", "more", "strong", "men", ".", "\"", "With", "a", "growing", "number", "of", "African", "leaders", "attempting", "to", "extend", "their", "terms", "of", "office", ",", "democracy", "remains", "fragile", "across", "the", "continent", ".", "The", "president", "could", "give", "democracy", "in", "Africa", "a", "boost", "and", "reaffirm", "America", "'", "s", "strong", "commitment", "to", "Africa", "'", "s", "political", "progress", "by", "hosting", "a", "conference", "in", "West", "Africa", "with", "the", "democratically", "-", "elected", "leaders", "of", "Benin", ",", "Burkina", "Faso", ",", "Cape", "Verde", ",", "Liberia", ",", "Niger", ",", "Nigeria", ",", "Mali", ",", "Mauritania", ",", "Senegal", ",", "Sierra", "Leone", "and", "Togo", ".", "Support", "Nigeria", "'", "s", "permanent", "membership", "in", "the", "G20", ":", "President", "Obama", "has", "said", "that", "he", "wants", "to", "ensure", "that", "Africa", "has", "a", "place", "at", "the", "table", "to", "participate", "in", "the", "deliberations", "concerning", "major", "global", "political", "and", "economic", "issues", ".", "One", "way", "to", "accomplish", "that", "is", "to", "expand", "or", "reorganize", "the", "G20", "group", "of", "nations", "to", "include", "Nigeria", "as", "a", "permanent", "member", "of", "this", "important", "global", "organization", ".", "Nigeria", "is", "already", "more", "important", "than", "several", "of", "the", "current", "G20", "members", ",", "notably", "Argentina", "and", "South", "Africa", ",", "and", "over", "the", "next", "two", "decades", "it", "will", "become", "one", "of", "the", "world", "'", "s", "mega", "states", ",", "eclipsing", "several", "other", "G20", "members", "in", "the", "size", "of", "its", "economy", ",", "population", "and", "regional", "influence", ".", "It", "would", "also", "be", "one", "of", "the", "G20", "'", "s", "largest", "democracies", ".", "The", "administration", "should", "make", "the", "inclusion", "of", "Nigeria", "a", "priority", "over", "the", "next", "12", "months", ".", "Press", "for", "the", "passage", "of", "the", "Electrify", "Africa", "legislation", ":", "Power", "Africa", "is", "one", "of", "President", "Obama", "'", "s", "most", "important", "signature", "initiatives", ".", "In", "the", "world", "'", "s", "most", "energy", "deficient", "and", "starved", "continent", ",", "it", "is", "intended", "to", "increase", "Africa", "'", "s", "power", "output", "by", "30", ",", "000", "megawatts", "over", "the", "next", "decade", "or", "two", ".", "But", "like", "a", "number", "of", "recent", "White", "House", "initiatives", ",", "Power", "Africa", "is", "not", "backed", "by", "any", "legislative", "mandate", "and", "could", "be", "easily", "brushed", "aside", "after", "the", "Obama", "administration", "leaves", "office", ".", "The", "program", "enjoys", "bi", "-", "partisan", "support", "in", "the", "Congress", "and", "the", "administration", "needs", "to", "work", "with", "congressional", "leaders", "to", "prioritize", "the", "passage", "of", "the", "Electrify", "Africa", "legislation", ".", "At", "the", "same", "time", ",", "the", "administration", "needs", "to", "create", "a", "senior", "level", "\"", "Power", "Africa", "czar", "\"", "to", "manage", "the", "program", "and", "consider", "moving", "interagency", "responsibility", "for", "oversight", "from", "USAID", "to", "a", "cabinet", "level", "department", ".", "Instruct", "USAID", "to", "establish", "a", "permanent", "democracy", "fund", ":", "If", "democracy", "promotion", "is", "an", "important", "priority", ",", "it", "should", "be", "funded", "adequately", "and", "on", "a", "long", "-", "term", "basis", ".", "Today", "that", "is", "not", "the", "case", ".", "Funding", "for", "democracy", "has", "declined", "sharply", "during", "Obama", "'", "s", "second", "term", "despite", "the", "president", "'", "s", "recent", "speeches", "in", "Nairobi", "and", "Addis", "Ababa", ",", "and", "at", "the", "70th", "session", "of", "the", "United", "Nations", "General", "Assembly", "in", "New", "York", ".", "Dedicated", "and", "hard", "-", "to", "-", "reprogram", "funds", "should", "be", "allocated", "to", "strengthen", "African", "judiciaries", "and", "legislatures", ",", "to", "promote", "civil", "society", "groups", "and", "the", "media", ",", "to", "assist", "women", "'", "s", "organizations", "and", "youth", "groups", "and", "to", "support", "domestic", "and", "international", "election", "monitoring", ".", "Funds", "should", "also", "be", "made", "available", "to", "assist", "local", "organizations", "to", "undertake", "parallel", "vote", "counts", ",", "to", "aid", "local", "election", "commissions", "and", "to", "prevent", "pre", "-", "and", "post", "-", "election", "violence", ".", "Invite", "Tanzania", "'", "s", "newly", "elected", "President", "John", "Magufuli", "to", "the", "White", "House", ":", "Tanzania", "is", "the", "most", "populous", "state", "and", "the", "largest", "democracy", "in", "East", "Africa", ".", "It", "is", "also", "one", "of", "the", "largest", "recipients", "of", "U", ".", "S", ".", "development", "assistance", "and", "a", "participant", "in", "all", "of", "Washington", "'", "s", "major", "economic", "initiatives", ".", "In", "late", "October", ",", "Tanzania", "held", "presidential", "and", "parliamentary", "elections", ".", "The", "elections", "on", "the", "mainland", "went", "well", ",", "but", "those", "on", "the", "island", "of", "Zanzibar", "were", "disputed", ".", "President", "John", "Pombe", "Magufuli", ",", "a", "reform", "-", "minded", "academic", "-", "turned", "-", "politician", ",", "was", "elected", "without", "dispute", ",", "making", "him", "Tanzania", "'", "s", "fifth", "democratically", "-", "elected", "president", "in", "a", "row", ".", "Although", "the", "Zanzibar", "election", "remains", "unresolved", ",", "it", "is", "important", "to", "reach", "out", "to", "Tanzania", "'", "s", "new", "president", "early", "in", "his", "tenure", "to", "continue", "to", "foster", "the", "strong", "relationship", "between", "Dar", "es", "Salaam", "and", "Washington", ".", "This", "is", "particularly", "important", "since", "President", "Magufuli", "does", "not", "have", "any", "major", "ties", "with", "the", "United", "States", ".", "Tanzania", "also", "has", "a", "critical", "role", "to", "play", "in", "East", "African", "peace", "-", "building", "issues", ",", "particularly", "in", "Burundi", "and", "the", "eastern", "Congo", ".", "Early", "political", "consultations", "with", "President", "Magufuli", "and", "his", "new", "foreign", "minister", ",", "Dr", ".", "Augustine", "Mahiga", ",", "could", "prove", "valuable", "in", "promoting", "stability", "in", "the", "Great", "Lakes", "region", ".", "Send", "Secretary", "of", "State", "John", "Kerry", "to", "Rwanda", ",", "Burundi", ",", "the", "Democratic", "Republic", "of", "Congo", "(", "DRC", ")", ",", "Uganda", "and", "the", "Republic", "of", "the", "Congo", ":", "The", "Great", "Lakes", "Region", "of", "Central", "Africa", "is", "one", "of", "the", "most", "volatile", "and", "unstable", "regions", "in", "Africa", ",", "with", "daily", "political", "and", "ethnic", "violence", "in", "Burundi", ",", "and", "with", "the", "leaders", "of", "Rwanda", ",", "the", "DRC", "and", "the", "Congo", "threatening", "to", "extend", "themselves", "in", "office", "in", "violation", "of", "their", "constitutions", ".", "Although", "time", "is", "running", "out", ",", "there", "is", "still", "an", "opportunity", "to", "prevent", "further", "democratic", "backsliding", "and", "the", "serious", "instability", "and", "violence", "that", "will", "almost", "certainly", "be", "unleashed", "-", "as", "we", "are", "already", "seeing", "in", "Burundi", ".", "High", "level", "engagement", "with", "the", "leaders", "in", "the", "region", "is", "required", ".", "An", "extended", "visit", "by", "Secretary", "Kerry", "to", "the", "DRC", ",", "Uganda", ",", "Rwanda", "and", "Burundi", "would", "be", "a", "strong", "signal", "of", "Washington", "'", "s", "deep", "concern", "and", "interest", "in", "the", "region", "'", "s", "negative", "political", "and", "security", "trajectory", ".", "Without", "serious", "engagement", "with", "the", "leaders", "on", "the", "ground", ",", "there", "will", "be", "no", "meaningful", "progress", ".", "Open", "a", "U", ".", "S", ".", "consulate", "in", "northern", "Nigeria", "and", "a", "full", "embassy", "in", "Mogadishu", ":", "The", "establishment", "of", "a", "consulate", "in", "northern", "Nigeria", "is", "long", "overdue", ".", "More", "than", "half", "of", "Nigeria", "'", "s", "180", "million", "people", "live", "in", "the", "northern", "part", "of", "the", "country", ",", "an", "area", "of", "serious", "political", "and", "security", "concern", ".", "It", "is", "also", "the", "largest", "Muslim", "region", "in", "Africa", "and", "the", "largest", "Muslim", "region", "in", "the", "world", "where", "there", "is", "no", "full", "-", "time", "U", ".", "S", ".", "diplomatic", "presence", ".", "A", "U", ".", "S", ".", "diplomatic", "mission", "would", "advance", "long", "-", "term", "political", ",", "economic", "and", "security", "interests", "in", "the", "region", "and", "help", "Nigeria", "to", "deal", "with", "the", "economic", ",", "social", "and", "security", "challenges", "it", "faces", "there", ".", "A", "consulate", "in", "Kaduna", ",", "which", "once", "had", "one", ",", "or", "Kano", "would", "convey", "a", "strong", "signal", "to", "the", "Muslim", "community", "that", "Washington", "genuinely", "cares", "about", "the", "people", "in", "the", "region", ".", "Once", "the", "global", "poster", "child", "of", "a", "failed", "state", ",", "Somalia", "has", "made", "significant", "progress", "over", "the", "past", "seven", "years", ".", "In", "recognition", "of", "the", "progress", ",", "the", "U", ".", "S", ".", "re", "-", "established", "formal", "diplomatic", "relations", "with", "the", "Somali", "government", "in", "Mogadishu", "in", "January", "2013", ".", "Before", "he", "leaves", "office", ",", "President", "Obama", "should", "take", "one", "more", "step", ".", "He", "should", "reaffirm", "Washington", "'", "s", "commitment", "to", "Somalia", "and", "recognize", "the", "country", "'", "s", "continuing", "progress", "by", "appointing", "a", "Senate", "-", "approved", "ambassador", "and", "opening", "a", "small", ",", "secure", "diplomatic", "embassy", "compound", "in", "downtown", "Mogadishu", ".", "Elevate", "U", ".", "S", ".", "diplomatic", "relations", "with", "Sudan", ":", "Relations", "between", "Washington", "and", "Khartoum", "have", "been", "prickly", "and", "frequently", "difficult", "for", "over", "two", "decades", "and", "the", "U", ".", "S", ".", "has", "not", "had", "a", "fully", "accredited", ",", "Senate", "-", "approved", "ambassador", "in", "Sudan", "since", "1997", ".", "The", "Khartoum", "government", "has", "not", "been", "a", "good", "international", "actor", ".", "(", "Nor", "have", "Cuba", ",", "Myanmar", "or", "Iran", ".", ")", "The", "regime", "in", "Sudan", "has", "carried", "out", "mass", "atrocities", "in", "Darfur", ",", "prevented", "UN", "organizations", "from", "delivering", "food", "aid", "and", "humanitarian", "assistance", "to", "those", "in", "need", "and", "meddled", "in", "the", "affairs", "of", "several", "of", "its", "neighbors", ".", "But", "U", ".", "S", ".", "-", "imposed", "comprehensive", "sanctions", "on", "Khartoum", "have", "not", "isolated", "the", "country", "nor", "weakened", "its", "government", ".", "The", "U", ".", "S", ".", "should", "review", "its", "current", "policies", "toward", "Khartoum", ",", "and", "consider", "elevating", "its", "diplomatic", "relationship", "to", "full", "ambassadorial", "status", "in", "order", "to", "expand", "America", "'", "s", "dialogue", "and", "probe", "for", "new", "openings", "to", "resolve", "some", "of", "the", "country", "'", "s", "domestic", "and", "regional", "issues", ".", "The", "U", ".", "S", ".", "can", "do", "this", "while", "maintaining", "its", "sanctions", "regime", "on", "the", "government", "and", "its", "demands", "that", "President", "Omar", "al", "-", "Bashir", "address", "the", "serious", "human", "rights", "charges", "against", "him", ".", "Provide", "a", "status", "report", "on", "the", "results", "of", "the", "U", ".", "S", ".", "-", "Africa", "Leadership", "Summit", ":", "The", "U", ".", "S", ".", "Africa", "Leadership", "Summit", "has", "been", "one", "of", "the", "high", "points", "in", "the", "Obama", "administration", "'", "s", "engagements", "in", "Africa", ".", "Leaders", "from", "50", "different", "countries", "participated", "in", "this", "first", "-", "of", "-", "a", "-", "kind", "gathering", "in", "Washington", ".", "A", "number", "of", "new", "programs", "were", "announced", "and", "a", "major", "business", "conference", "associated", "with", "the", "summit", "brought", "dozens", "of", "senior", "American", "business", "leaders", "into", "direct", "contact", "-", "many", "for", "the", "very", "first", "time", "-", "with", "African", "heads", "of", "state", "and", "prominent", "business", "leaders", "from", "the", "continent", ".", "The", "administration", "has", "never", "released", "a", "comprehensive", "report", "on", "the", "summit", "or", "a", "one", "-", "year", "progress", "report", "on", "the", "implementation", "of", "summit", "agreements", ".", "The", "issuance", "of", "some", "type", "of", "status", "report", "would", "be", "a", "useful", "vehicle", "for", "identifying", "summit", "objectives", "and", "initiatives", "as", "well", "as", "tracking", "the", "progress", "of", "the", "administration", "'", "s", "efforts", ".", "The", "administration", "should", "do", "everything", "it", "can", "to", "sustain", "the", "goodwill", "and", "policy", "initiatives", "that", "emerged", "from", "the", "summit", "to", "help", "ensure", "that", "it", "does", "not", "become", "a", "one", "-", "off", "event", ".", "The", "administration", "should", "be", "applauded", "for", "its", "continuing", "efforts", "to", "promote", "greater", "American", "trade", "and", "commerce", "with", "Africa", ".", "The", "president", "has", "already", "announced", "that", "he", "plans", "to", "host", "another", "U", ".", "S", ".", "-", "Africa", "Business", "Summit", "similar", "to", "the", "day", "-", "long", "event", "his", "administration", "hosted", "during", "the", "2014", "Leadership", "Summit", ".", "The", "Business", "Summit", "is", "important", ",", "but", "it", "should", "not", "be", "the", "only", "thing", "on", "President", "Obama", "'", "s", "Africa", "agenda", "for", "2016", ".", "He", "has", "time", "to", "do", "more", ",", "and", "he", "should", ".", "Twelve", "months", "is", "a", "long", "time", "in", "the", "life", "of", "an", "administration", "and", "his", "foreign", "policy", "team", "should", "be", "building", "a", "more", "robust", "African", "agenda", "for", "his", "last", "year", "in", "office", ".", "Ambassador", "Carson", "was", "the", "U", ".", "S", ".", "Assistant", "Secretary", "of", "State", "for", "African", "Affairs", "from", "2009", "to", "2012", ".", "He", "is", "currently", "a", "Senior", "Advisor", "at", "the", "United", "States", "Institute", "of", "Peace", "."]}, "title": {"text": " Africa: What Obama Still Owes Africa (a Visit to Nigeria for One Thing) - allAfrica.com ", "simple_tokens": ["africa", ":", "what", "obama", "still", "owes", "africa", "(", "a", "visit", "to", "nigeria", "for", "one", "thing", ")", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Africa", ":", "What", "Obama", "Still", "Owes", "Africa", "(", "a", "Visit", "to", "Nigeria", "for", "One", "Thing", ")", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:10.445171", "@etk_process_time": 0.7053751945495605, "@etk_start_time": "2018-06-07T17:34:09.739796"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Africa: What Obama Still Owes Africa (a Visit to Nigeria for One Thing) - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 4 January 2016\n
\n \n \n

\n Africa: What Obama Still Owes Africa (a Visit to Nigeria for One Thing)\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n Photo:\n \n AllAfrica\n \n \n
\n
\n Former U.S. Assistant Secretary of State Johnnie Carson\n
\n
\n \n guest column\n \n \n By Johnnie Carson\n \n

\n Washington, DC —\n \n After seven years in office, President Barack Obama has already engaged more broadly on Africa than any previous American president, but with one year remaining in the White House, there are still a few things he should do before he leaves, writes\n \n Johnnie Carson\n \n , the United States' top policy-maker on Africa in the first Obama administration.\n \n

\n

\n President Obama has significantly elevated and transformed America's engagement with Africa, traveling widely across the continent, championing the renewal of several old programs and launching a series of highly focused new initiatives that could help speed-up Africa's economic development.\n

\n

\n He has been particularly active in promoting economic and development issues.\n

\n

\n He fought successfully for the renewal and extension of the African Growth and Opportunity Act (AGOA), America's most important trade legislation with Africa; he hosted the first U.S.-Africa Leadership Summit, attended by 37 heads of state; and he has established several important new economic programs, including \"Power Africa\" - to expand significantly electrical access across the continent; \"Feed the Future\" - to increase household food production and to generate a green revolution throughout Africa, and \"Trade Africa\" - to expand substantially trade between Africa and the United States.\n

\n

\n Recognizing the growing role of the continent's next generation of young leaders, President Obama established YALI - the Young African Leaders Initiative, a program that will bring 500 young African entrepreneurs, professionals and community organizers to the U.S. each year for the next several years for five weeks of leadership, organization and management training.\n

\n

\n \n But what next?\n \n

\n

\n Despite his rather impressive list of accomplishments, here are ten things the president should do before he leaves office in January 2017:\n

\n

\n \n \n Visit Nigeria:\n \n \n President Obama has traveled to Africa five times during his presidency - but he has not visited Nigeria, the continent's economic, political, communications and petroleum giant, and its most important state. It is the continent's largest economy - almost twice the size of South Africa's and a third larger than that of Egypt.\n

\n

\n It is also the continent's most populous state, with 180 million people, its largest Muslim country, and its largest democracy.\n

\n

\n The president has visited every major country on the continent except Nigeria, and it would be a mistake for him to leave the White House without a stop in Lagos or Abuja.\n

\n

\n Some have suggested that security may be a concern because of Boko Haram, but if the president can travel safely to Nairobi, where al Shabaab has carried out high profile attacks in the center of the city, he should be able to travel safely to Abuja or Lagos. He is bound to make one more trip to Europe, and a stop in Nigeria - similar to his 2009 visit to Ghana - would not be a major diversion.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n \n \n Co-host a regional summit on democracy in west Africa:\n \n \n Strengthening democracy institutions, promoting good governance and supporting free and fair elections has been a major priority for the Obama administration in Africa.\n

\n

\n During his first official visit to the continent as president in July 2009, President Obama spoke eloquently before the Ghanaian Parliament about the importance of democracy and good governance and the need to create \"more strong institutions, not more strong men.\" With a growing number of African leaders attempting to extend their terms of office, democracy remains fragile across the continent. The president could give democracy in Africa a boost and reaffirm America's strong commitment to Africa's political progress by hosting a conference in West Africa with the democratically-elected leaders of Benin, Burkina Faso, Cape Verde, Liberia, Niger, Nigeria, Mali, Mauritania, Senegal, Sierra Leone and Togo.\n

\n

\n \n \n Support Nigeria's permanent membership in the G20:\n \n \n President Obama has said that he wants to ensure that Africa has a place at the table to participate in the deliberations concerning major global political and economic issues. One way to accomplish that is to expand or reorganize the G20 group of nations to include Nigeria as a permanent member of this important global organization.\n

\n

\n Nigeria is already more important than several of the current G20 members, notably Argentina and South Africa, and over the next two decades it will become one of the world's mega states, eclipsing several other G20 members in the size of its economy, population and regional influence. It would also be one of the G20's largest democracies. The administration should make the inclusion of Nigeria a priority over the next 12 months.\n

\n

\n \n \n Press for the passage of the Electrify Africa legislation:\n \n \n Power Africa is one of President Obama's most important signature initiatives. In the world's most energy deficient and starved continent, it is intended to increase Africa's power output by 30,000 megawatts over the next decade or two.\n

\n

\n But like a number of recent White House initiatives, Power Africa is not backed by any legislative mandate and could be easily brushed aside after the Obama administration leaves office. The program enjoys bi-partisan support in the Congress and the administration needs to work with congressional leaders to prioritize the passage of the Electrify Africa legislation. At the same time, the administration needs to create a senior level \"Power Africa czar\" to manage the program and consider moving interagency responsibility for oversight from USAID to a cabinet level department.\n

\n

\n \n \n Instruct USAID to establish a permanent democracy fund:\n \n \n If democracy promotion is an important priority, it should be funded adequately and on a long-term basis. Today that is not the case. Funding for democracy has declined sharply during Obama's second term despite the president's recent speeches in Nairobi and Addis Ababa, and at the 70th session of the United Nations General Assembly in New York.\n

\n

\n Dedicated and hard-to-reprogram funds should be allocated to strengthen African judiciaries and legislatures, to promote civil society groups and the media, to assist women's organizations and youth groups and to support domestic and international election monitoring. Funds should also be made available to assist local organizations to undertake parallel vote counts, to aid local election commissions and to prevent pre- and post-election violence.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n

\n \n \n Invite Tanzania's newly elected President John Magufuli to the White House:\n \n \n Tanzania is the most populous state and the largest democracy in East Africa. It is also one of the largest recipients of U.S. development assistance and a participant in all of Washington's major economic initiatives.\n

\n

\n In late October, Tanzania held presidential and parliamentary elections.The elections on the mainland went well, but those on the island of Zanzibar were disputed. President John Pombe Magufuli, a reform-minded academic-turned-politician, was elected without dispute, making him Tanzania's fifth democratically-elected president in a row. Although the Zanzibar election remains unresolved, it is important to reach out to Tanzania's new president early in his tenure to continue to foster the strong relationship between Dar es Salaam and Washington.\n

\n

\n This is particularly important since President Magufuli does not have any major ties with the United States.Tanzania also has a critical role to play in East African peace-building issues, particularly in Burundi and the eastern Congo. Early political consultations with President Magufuli and his new foreign minister, Dr. Augustine Mahiga, could prove valuable in promoting stability in the Great Lakes region.\n

\n

\n \n \n Send Secretary of State John Kerry to Rwanda, Burundi, the Democratic Republic of Congo (DRC), Uganda and the Republic of the Congo:\n \n \n The Great Lakes Region of Central Africa is one of the most volatile and unstable regions in Africa, with daily political and ethnic violence in Burundi, and with the leaders of Rwanda, the DRC and the Congo threatening to extend themselves in office in violation of their constitutions.\n

\n

\n Although time is running out, there is still an opportunity to prevent further democratic backsliding and the serious instability and violence that will almost certainly be unleashed - as we are already seeing in Burundi. High level engagement with the leaders in the region is required.\n

\n

\n An extended visit by Secretary Kerry to the DRC, Uganda, Rwanda and Burundi would be a strong signal of Washington's deep concern and interest in the region's negative political and security trajectory. Without serious engagement with the leaders on the ground, there will be no meaningful progress.\n

\n

\n \n \n Open a U.S. consulate in northern Nigeria and a full embassy in Mogadishu:\n \n \n The establishment of a consulate in northern Nigeria is long overdue. More than half of Nigeria's 180 million people live in the northern part of the country, an area of serious political and security concern. It is also the largest Muslim region in Africa and the largest Muslim region in the world where there is no full-time U.S. diplomatic presence.\n

\n

\n A U.S. diplomatic mission would advance long-term political, economic and security interests in the region and help Nigeria to deal with the economic, social and security challenges it faces there. A consulate in Kaduna, which once had one, or Kano would convey a strong signal to the Muslim community that Washington genuinely cares about the people in the region.\n

\n

\n Once the global poster child of a failed state, Somalia has made significant progress over the past seven years. In recognition of the progress, the U.S. re-established formal diplomatic relations with the Somali government in Mogadishu in January 2013.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n Before he leaves office, President Obama should take one more step. He should reaffirm Washington's commitment to Somalia and recognize the country's continuing progress by appointing a Senate-approved ambassador and opening a small, secure diplomatic embassy compound in downtown Mogadishu.\n

\n

\n \n \n Elevate U.S. diplomatic relations with Sudan:\n \n \n Relations between Washington and Khartoum have been prickly and frequently difficult for over two decades and the U.S. has not had a fully accredited, Senate-approved ambassador in Sudan since 1997.\n

\n

\n The Khartoum government has not been a good international actor. (Nor have Cuba, Myanmar or Iran.) The regime in Sudan has carried out mass atrocities in Darfur, prevented UN organizations from delivering food aid and humanitarian assistance to those in need and meddled in the affairs of several of its neighbors.\n

\n

\n But U.S.-imposed comprehensive sanctions on Khartoum have not isolated the country nor weakened its government. The U.S. should review its current policies toward Khartoum, and consider elevating its diplomatic relationship to full ambassadorial status in order to expand America's dialogue and probe for new openings to resolve some of the country's domestic and regional issues. The U.S. can do this while maintaining its sanctions regime on the government and its demands that President Omar al-Bashir address the serious human rights charges against him.\n

\n

\n \n \n Provide a status report on the results of the U.S.-Africa Leadership Summit:\n \n \n The U.S. Africa Leadership Summit has been one of the high points in the Obama administration's engagements in Africa.\n

\n

\n Leaders from 50 different countries participated in this first-of-a-kind gathering in Washington. A number of new programs were announced and a major business conference associated with the summit brought dozens of senior American business leaders into direct contact - many for the very first time - with African heads of state and prominent business leaders from the continent.\n

\n

\n The administration has never released a comprehensive report on the summit or a one-year progress report on the implementation of summit agreements. The issuance of some type of status report would be a useful vehicle for identifying summit objectives and initiatives as well as tracking the progress of the administration's efforts. The administration should do everything it can to sustain the goodwill and policy initiatives that emerged from the summit to help ensure that it does not become a one-off event.\n

\n

\n The administration should be applauded for its continuing efforts to promote greater American trade and commerce with Africa. The president has already announced that he plans to host another U.S.-Africa Business Summit similar to the day-long event his administration hosted during the 2014 Leadership Summit. The Business Summit is important, but it should not be the only thing on President Obama's Africa agenda for 2016. He has time to do more, and he should. Twelve months is a long time in the life of an administration and his foreign policy team should be building a more robust African agenda for his last year in office.\n

\n

\n \n Ambassador Carson was the U.S.\n \n Assistant Secretary of State for African Affairs\n \n from 2009 to 2012. He is currently a Senior Advisor at the\n \n United States Institute of Peace.\n \n \n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 allAfrica.com. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C", "document_id": "0EB02555663B0413FEFB28069686DDB10AE98895E16692A9107B6F1A416E948C"} +{"url": "http://www.ce_news_article.org/2016/01/04/201601040025.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 9, "end": 11, "input": "tokens", "text": "athletes from the High Altitude Athletics Club of Jos , Plateau State "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Athletics Club"}, {"source": {"segment": "content_relaxed", "context": {"start": 26, "end": 28, "input": "tokens", "text": "athletes from the High Altitude Athletics Club of Jos , Plateau State "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Athletics Club"}], "key": "athletics club", "value": "Athletics Club"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 68, "end": 71, "input": "tokens", "text": "marathon runners in Nigeria . Coach Steve Nuhu , owner of the High "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Coach Steve Nuhu"}, {"source": {"segment": "content_relaxed", "context": {"start": 85, "end": 88, "input": "tokens", "text": "marathon runners in Nigeria . Coach Steve Nuhu , owner of the High "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Coach Steve Nuhu"}], "key": "coach steve nuhu", "value": "Coach Steve Nuhu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 207, "end": 209, "input": "tokens", "text": "6 race in Lagos , Coach Nuhu is optimistic that his athletes "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Coach Nuhu"}, {"source": {"segment": "content_relaxed", "context": {"start": 224, "end": 226, "input": "tokens", "text": "6 race in Lagos , Coach Nuhu is optimistic that his athletes "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Coach Nuhu"}], "key": "coach nuhu", "value": "Coach Nuhu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 339, "end": 340, "input": "tokens", "text": "around the globe \" said Nuhu . "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nuhu"}, {"source": {"segment": "content_relaxed", "context": {"start": 356, "end": 357, "input": "tokens", "text": "around the globe \" said Nuhu . Copyright 2016 Premium Times "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nuhu"}], "key": "nuhu", "value": "Nuhu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 9, "input": "tokens", "text": "3 January 2016 Nigeria : Lagos Marathon - 25 Elite Runners From Jos Sign "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos Marathon - 25"}, {"source": {"segment": "title", "context": {"start": 2, "end": 6, "input": "tokens", "text": "Nigeria : Lagos Marathon - 25 Elite Runners From Jos Sign "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos Marathon - 25"}], "key": "lagos marathon - 25", "value": "Lagos Marathon - 25"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 404, "end": 405, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "method": "rearrange_description"}], "key": "description", "value": "

Twenty-five elite athletes from the High Altitude Athletics Club of Jos, Plateau State, and some fun runners will be in Lagos to participate in the February 6, 2016, Access Bank Lagos City Marathon.

Plateau State and adjoining states like Bauchi, Kaduna, Gombe and others have the highest number of long distance road races and marathon runners in Nigeria.

Coach Steve Nuhu, owner of the High Altitude Athletics Club, said the return of the Lagos City Marathon is one of the best things to happen to Nigeria sports in recent times,

\"We are talking about youth empowerment, unemployment and other vices, what better way to engage our youth than having many marathons and road races in Nigeria.

\"I hope and pray that many other states, especially states in the Northern part of the country with a very high percentage of distance runners who train year in, year out but are not involved in competitions because of dearth or even absence of competitions will take a cue from Lagos and organize more road races, half and full marathons.\"

For the February 6 race in Lagos, Coach Nuhu is optimistic that his athletes will not only win the national title but will also give the elite athletes from other parts of the world a good fight for the ultimate prize,

\"For us, the February 6 race is a celebration of our sports. We are coming to Lagos with 25 elite marathoners and many fun runners. Our target is not just the prizes for Nigerians, but also the ultimate prize. The reason why our athletes are not running fantastic time is because we don't have competitions regularly like the Kenyans.

\"The moment we start and make money on the road, we shall compete more and rival East Africans for the best prizes around the globe\" said Nuhu.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 464, "end": 465, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 492, "end": 493, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Lagos Marathon - 25 Elite Runners From Jos Sign Up for Race - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 34, "end": 36, "input": "tokens", "text": "February 6 , 2016 , Access Bank Lagos City Marathon . Plateau "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Access Bank"}, {"source": {"segment": "content_relaxed", "context": {"start": 51, "end": 53, "input": "tokens", "text": "February 6 , 2016 , Access Bank Lagos City Marathon . Plateau "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Access Bank"}], "key": "access bank", "value": "Access Bank"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 40, "end": 42, "input": "tokens", "text": "Bank Lagos City Marathon . Plateau State and adjoining states like Bauchi "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Plateau State"}, {"source": {"segment": "content_relaxed", "context": {"start": 57, "end": 59, "input": "tokens", "text": "Bank Lagos City Marathon . Plateau State and adjoining states like Bauchi "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Plateau State"}], "key": "plateau state", "value": "Plateau State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 74, "end": 79, "input": "tokens", "text": "Steve Nuhu , owner of the High Altitude Athletics Club , said the return of "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the High Altitude Athletics Club"}, {"source": {"segment": "content_relaxed", "context": {"start": 91, "end": 96, "input": "tokens", "text": "Steve Nuhu , owner of the High Altitude Athletics Club , said the return of "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the High Altitude Athletics Club"}], "key": "the high altitude athletics club", "value": "the High Altitude Athletics Club"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 84, "end": 88, "input": "tokens", "text": ", said the return of the Lagos City Marathon is one of the best "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Lagos City Marathon"}, {"source": {"segment": "content_relaxed", "context": {"start": 101, "end": 105, "input": "tokens", "text": ", said the return of the Lagos City Marathon is one of the best "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Lagos City Marathon"}], "key": "the lagos city marathon", "value": "the Lagos City Marathon"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 359, "end": 362, "input": "tokens", "text": "\" said Nuhu . Copyright 2016 Premium Times . All rights reserved . "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "2016 Premium Times"}], "key": "2016 premium times", "value": "2016 Premium Times"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 367, "end": 368, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 369, "end": 372, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 14, "end": 16, "input": "tokens", "text": "Athletics Club of Jos , Plateau State , and some fun runners "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Plateau State"}, {"source": {"segment": "content_relaxed", "context": {"start": 31, "end": 33, "input": "tokens", "text": "Athletics Club of Jos , Plateau State , and some fun runners "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Plateau State"}], "key": "plateau state", "value": "Plateau State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 24, "end": 25, "input": "tokens", "text": "fun runners will be in Lagos to participate in the February "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_strict", "context": {"start": 186, "end": 187, "input": "tokens", "text": "will take a cue from Lagos and organize more road races "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_strict", "context": {"start": 205, "end": 206, "input": "tokens", "text": "the February 6 race in Lagos , Coach Nuhu is optimistic "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_strict", "context": {"start": 261, "end": 262, "input": "tokens", "text": ". We are coming to Lagos with 25 elite marathoners and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 41, "end": 42, "input": "tokens", "text": "fun runners will be in Lagos to participate in the February "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 203, "end": 204, "input": "tokens", "text": "will take a cue from Lagos and organize more road races "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 222, "end": 223, "input": "tokens", "text": "the February 6 race in Lagos , Coach Nuhu is optimistic "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}, {"source": {"segment": "content_relaxed", "context": {"start": 278, "end": 279, "input": "tokens", "text": ". We are coming to Lagos with 25 elite marathoners and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos"}], "key": "lagos", "value": "Lagos"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 36, "end": 39, "input": "tokens", "text": ", 2016 , Access Bank Lagos City Marathon . Plateau State and adjoining "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos City Marathon"}, {"source": {"segment": "content_relaxed", "context": {"start": 53, "end": 56, "input": "tokens", "text": ", 2016 , Access Bank Lagos City Marathon . Plateau State and adjoining "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Lagos City Marathon"}], "key": "lagos city marathon", "value": "Lagos City Marathon"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 46, "end": 47, "input": "tokens", "text": "State and adjoining states like Bauchi , Kaduna , Gombe and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bauchi"}, {"source": {"segment": "content_relaxed", "context": {"start": 63, "end": 64, "input": "tokens", "text": "State and adjoining states like Bauchi , Kaduna , Gombe and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bauchi"}], "key": "bauchi", "value": "Bauchi"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 48, "end": 49, "input": "tokens", "text": "adjoining states like Bauchi , Kaduna , Gombe and others have "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kaduna"}, {"source": {"segment": "content_relaxed", "context": {"start": 65, "end": 66, "input": "tokens", "text": "adjoining states like Bauchi , Kaduna , Gombe and others have "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kaduna"}], "key": "kaduna", "value": "Kaduna"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 50, "end": 51, "input": "tokens", "text": "like Bauchi , Kaduna , Gombe and others have the highest "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gombe"}, {"source": {"segment": "content_relaxed", "context": {"start": 67, "end": 68, "input": "tokens", "text": "like Bauchi , Kaduna , Gombe and others have the highest "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Gombe"}], "key": "gombe", "value": "Gombe"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 66, "end": 67, "input": "tokens", "text": "races and marathon runners in Nigeria . Coach Steve Nuhu , "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 97, "end": 98, "input": "tokens", "text": "best things to happen to Nigeria sports in recent times , "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_strict", "context": {"start": 131, "end": 132, "input": "tokens", "text": "marathons and road races in Nigeria . \" I hope and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 3, "end": 4, "input": "tokens", "text": "3 January 2016 Nigeria : Lagos Marathon - 25 "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 83, "end": 84, "input": "tokens", "text": "races and marathon runners in Nigeria . Coach Steve Nuhu , "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 114, "end": 115, "input": "tokens", "text": "best things to happen to Nigeria sports in recent times , "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "content_relaxed", "context": {"start": 148, "end": 149, "input": "tokens", "text": "marathons and road races in Nigeria . \" I hope and "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Lagos Marathon - 25 "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 328, "end": 330, "input": "tokens", "text": "shall compete more and rival East Africans for the best prizes around "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East Africans"}, {"source": {"segment": "content_relaxed", "context": {"start": 345, "end": 347, "input": "tokens", "text": "shall compete more and rival East Africans for the best prizes around "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "East Africans"}], "key": "east africans", "value": "East Africans"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 279, "end": 280, "input": "tokens", "text": "not just the prizes for Nigerians , but also the ultimate "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigerians"}, {"source": {"segment": "content_relaxed", "context": {"start": 296, "end": 297, "input": "tokens", "text": "not just the prizes for Nigerians , but also the ultimate "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigerians"}], "key": "nigerians", "value": "Nigerians"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 308, "end": 309, "input": "tokens", "text": "have competitions regularly like the Kenyans . \" The moment we "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kenyans"}, {"source": {"segment": "content_relaxed", "context": {"start": 325, "end": 326, "input": "tokens", "text": "have competitions regularly like the Kenyans . \" The moment we "}, "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kenyans"}], "key": "kenyans", "value": "Kenyans"}]}, "content_extraction": {"content_relaxed": {"text": "

3 January 2016

Nigeria: Lagos Marathon - 25 Elite Runners From Jos Sign Up for Race

Twenty-five elite athletes from the High Altitude Athletics Club of Jos, Plateau State, and some fun runners will be in Lagos to participate in the February 6, 2016, Access Bank Lagos City Marathon.

Plateau State and adjoining states like Bauchi, Kaduna, Gombe and others have the highest number of long distance road races and marathon runners in Nigeria.

Coach Steve Nuhu, owner of the High Altitude Athletics Club, said the return of the Lagos City Marathon is one of the best things to happen to Nigeria sports in recent times,

\"We are talking about youth empowerment, unemployment and other vices, what better way to engage our youth than having many marathons and road races in Nigeria.

\"I hope and pray that many other states, especially states in the Northern part of the country with a very high percentage of distance runners who train year in, year out but are not involved in competitions because of dearth or even absence of competitions will take a cue from Lagos and organize more road races, half and full marathons.\"

For the February 6 race in Lagos, Coach Nuhu is optimistic that his athletes will not only win the national title but will also give the elite athletes from other parts of the world a good fight for the ultimate prize,

\"For us, the February 6 race is a celebration of our sports. We are coming to Lagos with 25 elite marathoners and many fun runners. Our target is not just the prizes for Nigerians, but also the ultimate prize. The reason why our athletes are not running fantastic time is because we don't have competitions regularly like the Kenyans.

\"The moment we start and make money on the road, we shall compete more and rival East Africans for the best prizes around the globe\" said Nuhu.

Copyright

2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["3", "january", "2016", "nigeria", ":", "lagos", "marathon", "-", "25", "elite", "runners", "from", "jos", "sign", "up", "for", "race", "twenty", "-", "five", "elite", "athletes", "from", "the", "high", "altitude", "athletics", "club", "of", "jos", ",", "plateau", "state", ",", "and", "some", "fun", "runners", "will", "be", "in", "lagos", "to", "participate", "in", "the", "february", "6", ",", "2016", ",", "access", "bank", "lagos", "city", "marathon", ".", "plateau", "state", "and", "adjoining", "states", "like", "bauchi", ",", "kaduna", ",", "gombe", "and", "others", "have", "the", "highest", "number", "of", "long", "distance", "road", "races", "and", "marathon", "runners", "in", "nigeria", ".", "coach", "steve", "nuhu", ",", "owner", "of", "the", "high", "altitude", "athletics", "club", ",", "said", "the", "return", "of", "the", "lagos", "city", "marathon", "is", "one", "of", "the", "best", "things", "to", "happen", "to", "nigeria", "sports", "in", "recent", "times", ",", "\"", "we", "are", "talking", "about", "youth", "empowerment", ",", "unemployment", "and", "other", "vices", ",", "what", "better", "way", "to", "engage", "our", "youth", "than", "having", "many", "marathons", "and", "road", "races", "in", "nigeria", ".", "\"", "i", "hope", "and", "pray", "that", "many", "other", "states", ",", "especially", "states", "in", "the", "northern", "part", "of", "the", "country", "with", "a", "very", "high", "percentage", "of", "distance", "runners", "who", "train", "year", "in", ",", "year", "out", "but", "are", "not", "involved", "in", "competitions", "because", "of", "dearth", "or", "even", "absence", "of", "competitions", "will", "take", "a", "cue", "from", "lagos", "and", "organize", "more", "road", "races", ",", "half", "and", "full", "marathons", ".", "\"", "for", "the", "february", "6", "race", "in", "lagos", ",", "coach", "nuhu", "is", "optimistic", "that", "his", "athletes", "will", "not", "only", "win", "the", "national", "title", "but", "will", "also", "give", "the", "elite", "athletes", "from", "other", "parts", "of", "the", "world", "a", "good", "fight", "for", "the", "ultimate", "prize", ",", "\"", "for", "us", ",", "the", "february", "6", "race", "is", "a", "celebration", "of", "our", "sports", ".", "we", "are", "coming", "to", "lagos", "with", "25", "elite", "marathoners", "and", "many", "fun", "runners", ".", "our", "target", "is", "not", "just", "the", "prizes", "for", "nigerians", ",", "but", "also", "the", "ultimate", "prize", ".", "the", "reason", "why", "our", "athletes", "are", "not", "running", "fantastic", "time", "is", "because", "we", "don", "'", "t", "have", "competitions", "regularly", "like", "the", "kenyans", ".", "\"", "the", "moment", "we", "start", "and", "make", "money", "on", "the", "road", ",", "we", "shall", "compete", "more", "and", "rival", "east", "africans", "for", "the", "best", "prizes", "around", "the", "globe", "\"", "said", "nuhu", ".", "copyright", "2016", "premium", "times", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["3", "January", "2016", "Nigeria", ":", "Lagos", "Marathon", "-", "25", "Elite", "Runners", "From", "Jos", "Sign", "Up", "for", "Race", "Twenty", "-", "five", "elite", "athletes", "from", "the", "High", "Altitude", "Athletics", "Club", "of", "Jos", ",", "Plateau", "State", ",", "and", "some", "fun", "runners", "will", "be", "in", "Lagos", "to", "participate", "in", "the", "February", "6", ",", "2016", ",", "Access", "Bank", "Lagos", "City", "Marathon", ".", "Plateau", "State", "and", "adjoining", "states", "like", "Bauchi", ",", "Kaduna", ",", "Gombe", "and", "others", "have", "the", "highest", "number", "of", "long", "distance", "road", "races", "and", "marathon", "runners", "in", "Nigeria", ".", "Coach", "Steve", "Nuhu", ",", "owner", "of", "the", "High", "Altitude", "Athletics", "Club", ",", "said", "the", "return", "of", "the", "Lagos", "City", "Marathon", "is", "one", "of", "the", "best", "things", "to", "happen", "to", "Nigeria", "sports", "in", "recent", "times", ",", "\"", "We", "are", "talking", "about", "youth", "empowerment", ",", "unemployment", "and", "other", "vices", ",", "what", "better", "way", "to", "engage", "our", "youth", "than", "having", "many", "marathons", "and", "road", "races", "in", "Nigeria", ".", "\"", "I", "hope", "and", "pray", "that", "many", "other", "states", ",", "especially", "states", "in", "the", "Northern", "part", "of", "the", "country", "with", "a", "very", "high", "percentage", "of", "distance", "runners", "who", "train", "year", "in", ",", "year", "out", "but", "are", "not", "involved", "in", "competitions", "because", "of", "dearth", "or", "even", "absence", "of", "competitions", "will", "take", "a", "cue", "from", "Lagos", "and", "organize", "more", "road", "races", ",", "half", "and", "full", "marathons", ".", "\"", "For", "the", "February", "6", "race", "in", "Lagos", ",", "Coach", "Nuhu", "is", "optimistic", "that", "his", "athletes", "will", "not", "only", "win", "the", "national", "title", "but", "will", "also", "give", "the", "elite", "athletes", "from", "other", "parts", "of", "the", "world", "a", "good", "fight", "for", "the", "ultimate", "prize", ",", "\"", "For", "us", ",", "the", "February", "6", "race", "is", "a", "celebration", "of", "our", "sports", ".", "We", "are", "coming", "to", "Lagos", "with", "25", "elite", "marathoners", "and", "many", "fun", "runners", ".", "Our", "target", "is", "not", "just", "the", "prizes", "for", "Nigerians", ",", "but", "also", "the", "ultimate", "prize", ".", "The", "reason", "why", "our", "athletes", "are", "not", "running", "fantastic", "time", "is", "because", "we", "don", "'", "t", "have", "competitions", "regularly", "like", "the", "Kenyans", ".", "\"", "The", "moment", "we", "start", "and", "make", "money", "on", "the", "road", ",", "we", "shall", "compete", "more", "and", "rival", "East", "Africans", "for", "the", "best", "prizes", "around", "the", "globe", "\"", "said", "Nuhu", ".", "Copyright", "2016", "Premium", "Times", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/04/201601040025.html"}, "content_strict": {"text": "

Twenty-five elite athletes from the High Altitude Athletics Club of Jos, Plateau State, and some fun runners will be in Lagos to participate in the February 6, 2016, Access Bank Lagos City Marathon.

Plateau State and adjoining states like Bauchi, Kaduna, Gombe and others have the highest number of long distance road races and marathon runners in Nigeria.

Coach Steve Nuhu, owner of the High Altitude Athletics Club, said the return of the Lagos City Marathon is one of the best things to happen to Nigeria sports in recent times,

\"We are talking about youth empowerment, unemployment and other vices, what better way to engage our youth than having many marathons and road races in Nigeria.

\"I hope and pray that many other states, especially states in the Northern part of the country with a very high percentage of distance runners who train year in, year out but are not involved in competitions because of dearth or even absence of competitions will take a cue from Lagos and organize more road races, half and full marathons.\"

For the February 6 race in Lagos, Coach Nuhu is optimistic that his athletes will not only win the national title but will also give the elite athletes from other parts of the world a good fight for the ultimate prize,

\"For us, the February 6 race is a celebration of our sports. We are coming to Lagos with 25 elite marathoners and many fun runners. Our target is not just the prizes for Nigerians, but also the ultimate prize. The reason why our athletes are not running fantastic time is because we don't have competitions regularly like the Kenyans.

\"The moment we start and make money on the road, we shall compete more and rival East Africans for the best prizes around the globe\" said Nuhu.

", "simple_tokens": ["twenty", "-", "five", "elite", "athletes", "from", "the", "high", "altitude", "athletics", "club", "of", "jos", ",", "plateau", "state", ",", "and", "some", "fun", "runners", "will", "be", "in", "lagos", "to", "participate", "in", "the", "february", "6", ",", "2016", ",", "access", "bank", "lagos", "city", "marathon", ".", "plateau", "state", "and", "adjoining", "states", "like", "bauchi", ",", "kaduna", ",", "gombe", "and", "others", "have", "the", "highest", "number", "of", "long", "distance", "road", "races", "and", "marathon", "runners", "in", "nigeria", ".", "coach", "steve", "nuhu", ",", "owner", "of", "the", "high", "altitude", "athletics", "club", ",", "said", "the", "return", "of", "the", "lagos", "city", "marathon", "is", "one", "of", "the", "best", "things", "to", "happen", "to", "nigeria", "sports", "in", "recent", "times", ",", "\"", "we", "are", "talking", "about", "youth", "empowerment", ",", "unemployment", "and", "other", "vices", ",", "what", "better", "way", "to", "engage", "our", "youth", "than", "having", "many", "marathons", "and", "road", "races", "in", "nigeria", ".", "\"", "i", "hope", "and", "pray", "that", "many", "other", "states", ",", "especially", "states", "in", "the", "northern", "part", "of", "the", "country", "with", "a", "very", "high", "percentage", "of", "distance", "runners", "who", "train", "year", "in", ",", "year", "out", "but", "are", "not", "involved", "in", "competitions", "because", "of", "dearth", "or", "even", "absence", "of", "competitions", "will", "take", "a", "cue", "from", "lagos", "and", "organize", "more", "road", "races", ",", "half", "and", "full", "marathons", ".", "\"", "for", "the", "february", "6", "race", "in", "lagos", ",", "coach", "nuhu", "is", "optimistic", "that", "his", "athletes", "will", "not", "only", "win", "the", "national", "title", "but", "will", "also", "give", "the", "elite", "athletes", "from", "other", "parts", "of", "the", "world", "a", "good", "fight", "for", "the", "ultimate", "prize", ",", "\"", "for", "us", ",", "the", "february", "6", "race", "is", "a", "celebration", "of", "our", "sports", ".", "we", "are", "coming", "to", "lagos", "with", "25", "elite", "marathoners", "and", "many", "fun", "runners", ".", "our", "target", "is", "not", "just", "the", "prizes", "for", "nigerians", ",", "but", "also", "the", "ultimate", "prize", ".", "the", "reason", "why", "our", "athletes", "are", "not", "running", "fantastic", "time", "is", "because", "we", "don", "'", "t", "have", "competitions", "regularly", "like", "the", "kenyans", ".", "\"", "the", "moment", "we", "start", "and", "make", "money", "on", "the", "road", ",", "we", "shall", "compete", "more", "and", "rival", "east", "africans", "for", "the", "best", "prizes", "around", "the", "globe", "\"", "said", "nuhu", "."], "simple_tokens_original_case": ["Twenty", "-", "five", "elite", "athletes", "from", "the", "High", "Altitude", "Athletics", "Club", "of", "Jos", ",", "Plateau", "State", ",", "and", "some", "fun", "runners", "will", "be", "in", "Lagos", "to", "participate", "in", "the", "February", "6", ",", "2016", ",", "Access", "Bank", "Lagos", "City", "Marathon", ".", "Plateau", "State", "and", "adjoining", "states", "like", "Bauchi", ",", "Kaduna", ",", "Gombe", "and", "others", "have", "the", "highest", "number", "of", "long", "distance", "road", "races", "and", "marathon", "runners", "in", "Nigeria", ".", "Coach", "Steve", "Nuhu", ",", "owner", "of", "the", "High", "Altitude", "Athletics", "Club", ",", "said", "the", "return", "of", "the", "Lagos", "City", "Marathon", "is", "one", "of", "the", "best", "things", "to", "happen", "to", "Nigeria", "sports", "in", "recent", "times", ",", "\"", "We", "are", "talking", "about", "youth", "empowerment", ",", "unemployment", "and", "other", "vices", ",", "what", "better", "way", "to", "engage", "our", "youth", "than", "having", "many", "marathons", "and", "road", "races", "in", "Nigeria", ".", "\"", "I", "hope", "and", "pray", "that", "many", "other", "states", ",", "especially", "states", "in", "the", "Northern", "part", "of", "the", "country", "with", "a", "very", "high", "percentage", "of", "distance", "runners", "who", "train", "year", "in", ",", "year", "out", "but", "are", "not", "involved", "in", "competitions", "because", "of", "dearth", "or", "even", "absence", "of", "competitions", "will", "take", "a", "cue", "from", "Lagos", "and", "organize", "more", "road", "races", ",", "half", "and", "full", "marathons", ".", "\"", "For", "the", "February", "6", "race", "in", "Lagos", ",", "Coach", "Nuhu", "is", "optimistic", "that", "his", "athletes", "will", "not", "only", "win", "the", "national", "title", "but", "will", "also", "give", "the", "elite", "athletes", "from", "other", "parts", "of", "the", "world", "a", "good", "fight", "for", "the", "ultimate", "prize", ",", "\"", "For", "us", ",", "the", "February", "6", "race", "is", "a", "celebration", "of", "our", "sports", ".", "We", "are", "coming", "to", "Lagos", "with", "25", "elite", "marathoners", "and", "many", "fun", "runners", ".", "Our", "target", "is", "not", "just", "the", "prizes", "for", "Nigerians", ",", "but", "also", "the", "ultimate", "prize", ".", "The", "reason", "why", "our", "athletes", "are", "not", "running", "fantastic", "time", "is", "because", "we", "don", "'", "t", "have", "competitions", "regularly", "like", "the", "Kenyans", ".", "\"", "The", "moment", "we", "start", "and", "make", "money", "on", "the", "road", ",", "we", "shall", "compete", "more", "and", "rival", "East", "Africans", "for", "the", "best", "prizes", "around", "the", "globe", "\"", "said", "Nuhu", "."]}, "title": {"text": " Nigeria: Lagos Marathon - 25 Elite Runners From Jos Sign Up for Race - allAfrica.com ", "simple_tokens": ["nigeria", ":", "lagos", "marathon", "-", "25", "elite", "runners", "from", "jos", "sign", "up", "for", "race", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Lagos", "Marathon", "-", "25", "Elite", "Runners", "From", "Jos", "Sign", "Up", "for", "Race", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:10.845927", "@etk_process_time": 0.3934059143066406, "@etk_start_time": "2018-06-07T17:34:10.452521"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Lagos Marathon - 25 Elite Runners From Jos Sign Up for Race - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 3 January 2016\n
\n \n \n

\n Nigeria: Lagos Marathon - 25 Elite Runners From Jos Sign Up for Race\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n

\n Twenty-five elite athletes from the High Altitude Athletics Club of Jos, Plateau State, and some fun runners will be in Lagos to participate in the February 6, 2016, Access Bank Lagos City Marathon.\n

\n

\n Plateau State and adjoining states like Bauchi, Kaduna, Gombe and others have the highest number of long distance road races and marathon runners in Nigeria.\n

\n

\n Coach Steve Nuhu, owner of the High Altitude Athletics Club, said the return of the Lagos City Marathon is one of the best things to happen to Nigeria sports in recent times,\n

\n

\n \"We are talking about youth empowerment, unemployment and other vices, what better way to engage our youth than having many marathons and road races in Nigeria.\n

\n
\n
\n
\n
\n

\n \"I hope and pray that many other states, especially states in the Northern part of the country with a very high percentage of distance runners who train year in, year out but are not involved in competitions because of dearth or even absence of competitions will take a cue from Lagos and organize more road races, half and full marathons.\"\n

\n

\n For the February 6 race in Lagos, Coach Nuhu is optimistic that his athletes will not only win the national title but will also give the elite athletes from other parts of the world a good fight for the ultimate prize,\n

\n

\n \"For us, the February 6 race is a celebration of our sports. We are coming to Lagos with 25 elite marathoners and many fun runners. Our target is not just the prizes for Nigerians, but also the ultimate prize. The reason why our athletes are not running fantastic time is because we don't have competitions regularly like the Kenyans.\n

\n

\n \"The moment we start and make money on the road, we shall compete more and rival East Africans for the best prizes around the globe\" said Nuhu.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Premium Times. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC", "document_id": "C06B5A71192097E1C97FCBDB67A07AC2096104D9E0C3FE0DAA0DB42F491322FC"} +{"url": "http://www.ce_news_article.org/2016/01/04/201601040034.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 3, "input": "tokens", "text": "By Blessing Obineche The President , Rivers Patriotic "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blessing Obineche"}, {"source": {"segment": "content_relaxed", "context": {"start": 19, "end": 21, "input": "tokens", "text": "Re - Election . By Blessing Obineche The President , Rivers Patriotic "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blessing Obineche"}], "key": "blessing obineche", "value": "Blessing Obineche"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 27, "end": 29, "input": "tokens", "text": "that wife of former President Goodluck Jonathan , Dr . Mrs Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}, {"source": {"segment": "content_strict", "context": {"start": 411, "end": 413, "input": "tokens", "text": "further noted that former President Goodluck Jonathan and his family , including "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 45, "end": 47, "input": "tokens", "text": "that wife of former President Goodluck Jonathan , Dr . Mrs Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 429, "end": 431, "input": "tokens", "text": "further noted that former President Goodluck Jonathan and his family , including "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Jonathan"}], "key": "goodluck jonathan", "value": "Goodluck Jonathan"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 30, "end": 31, "input": "tokens", "text": "former President Goodluck Jonathan , Dr . Mrs Patience Jonathan recently "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_strict", "context": {"start": 198, "end": 199, "input": "tokens", "text": "choice of her husband , Dr . Goodluck Ebele Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_relaxed", "context": {"start": 48, "end": 49, "input": "tokens", "text": "former President Goodluck Jonathan , Dr . Mrs Patience Jonathan recently "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_relaxed", "context": {"start": 216, "end": 217, "input": "tokens", "text": "choice of her husband , Dr . Goodluck Ebele Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}], "key": "dr", "value": "Dr"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 34, "end": 35, "input": "tokens", "text": ", Dr . Mrs Patience Jonathan recently met former Niger Delta "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_strict", "context": {"start": 116, "end": 117, "input": "tokens", "text": "stated that Mrs . Patience Jonathan , who is the Chair "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_strict", "context": {"start": 250, "end": 251, "input": "tokens", "text": "Timipre Sylva by Dame Patience Jonathan , as it described it "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 7, "end": 8, "input": "tokens", "text": "2016 Nigeria : Dame Patience Jonathan Not Working for Sylva ' "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 52, "end": 53, "input": "tokens", "text": ", Dr . Mrs Patience Jonathan recently met former Niger Delta "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 134, "end": 135, "input": "tokens", "text": "stated that Mrs . Patience Jonathan , who is the Chair "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 268, "end": 269, "input": "tokens", "text": "Timipre Sylva by Dame Patience Jonathan , as it described it "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}, {"source": {"segment": "title", "context": {"start": 4, "end": 5, "input": "tokens", "text": "Nigeria : Dame Patience Jonathan Not Working for Sylva ' "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathan"}], "key": "jonathan", "value": "Jonathan"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 44, "end": 46, "input": "tokens", "text": "Delta Militants headed by Chief Ateke Tom in Okrika , Rivers State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ateke Tom"}, {"source": {"segment": "content_strict", "context": {"start": 154, "end": 156, "input": "tokens", "text": "support and meeting with Chief Ateke Tom led former militants group as "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ateke Tom"}, {"source": {"segment": "content_relaxed", "context": {"start": 62, "end": 64, "input": "tokens", "text": "Delta Militants headed by Chief Ateke Tom in Okrika , Rivers State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ateke Tom"}, {"source": {"segment": "content_relaxed", "context": {"start": 172, "end": 174, "input": "tokens", "text": "support and meeting with Chief Ateke Tom led former militants group as "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Ateke Tom"}], "key": "ateke tom", "value": "Ateke Tom"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 67, "end": 69, "input": "tokens", "text": "Congress , APC , Chief Timipre Sylvain in the January 9 rescheduled "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylvain"}, {"source": {"segment": "content_relaxed", "context": {"start": 85, "end": 87, "input": "tokens", "text": "Congress , APC , Chief Timipre Sylvain in the January 9 rescheduled "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylvain"}], "key": "timipre sylvain", "value": "Timipre Sylvain"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 109, "end": 111, "input": "tokens", "text": "s President , Dr . Bright Numofagha stated that Mrs . Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bright Numofagha"}, {"source": {"segment": "content_relaxed", "context": {"start": 127, "end": 129, "input": "tokens", "text": "s President , Dr . Bright Numofagha stated that Mrs . Patience "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bright Numofagha"}], "key": "bright numofagha", "value": "Bright Numofagha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 113, "end": 114, "input": "tokens", "text": ". Bright Numofagha stated that Mrs . Patience Jonathan , who "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mrs"}, {"source": {"segment": "content_relaxed", "context": {"start": 131, "end": 132, "input": "tokens", "text": ". Bright Numofagha stated that Mrs . Patience Jonathan , who "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mrs"}], "key": "mrs", "value": "Mrs"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 184, "end": 186, "input": "tokens", "text": "that it was impossible for Mrs Jonathan to support any other candidate "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mrs Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 202, "end": 204, "input": "tokens", "text": "that it was impossible for Mrs Jonathan to support any other candidate "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mrs Jonathan"}], "key": "mrs jonathan", "value": "Mrs Jonathan"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 200, "end": 203, "input": "tokens", "text": "her husband , Dr . Goodluck Ebele Jonathan , in his home State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Ebele Jonathan"}, {"source": {"segment": "content_relaxed", "context": {"start": 218, "end": 221, "input": "tokens", "text": "her husband , Dr . Goodluck Ebele Jonathan , in his home State "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Goodluck Ebele Jonathan"}], "key": "goodluck ebele jonathan", "value": "Goodluck Ebele Jonathan"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 224, "end": 227, "input": "tokens", "text": "' s flagbearer , Governor Henry Seriake Dickson . The group , therefore "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Henry Seriake Dickson"}, {"source": {"segment": "content_relaxed", "context": {"start": 242, "end": 245, "input": "tokens", "text": "' s flagbearer , Governor Henry Seriake Dickson . The group , therefore "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Henry Seriake Dickson"}], "key": "henry seriake dickson", "value": "Henry Seriake Dickson"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 245, "end": 247, "input": "tokens", "text": "the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylva"}, {"source": {"segment": "content_relaxed", "context": {"start": 263, "end": 265, "input": "tokens", "text": "the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan , "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylva"}], "key": "timipre sylva", "value": "Timipre Sylva"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 330, "end": 332, "input": "tokens", "text": "5th 2015 election , where Governor Dickson currently maintains a clear lead "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Governor Dickson"}, {"source": {"segment": "content_relaxed", "context": {"start": 348, "end": 350, "input": "tokens", "text": "5th 2015 election , where Governor Dickson currently maintains a clear lead "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Governor Dickson"}], "key": "governor dickson", "value": "Governor Dickson"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 357, "end": 358, "input": "tokens", "text": "the election . Dr . Numofagha also urged the people of "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Numofagha"}, {"source": {"segment": "content_relaxed", "context": {"start": 375, "end": 376, "input": "tokens", "text": "the election . Dr . Numofagha also urged the people of "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Numofagha"}], "key": "numofagha", "value": "Numofagha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 11, "end": 12, "input": "tokens", "text": "Patience Jonathan Not Working for Sylva ' s Re - Election "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sylva"}, {"source": {"segment": "title", "context": {"start": 8, "end": 9, "input": "tokens", "text": "Patience Jonathan Not Working for Sylva ' s Re - Election "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Sylva"}], "key": "sylva", "value": "Sylva"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 511, "end": 512, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "method": "rearrange_description"}], "key": "description", "value": "

By Blessing Obineche

The President, Rivers Patriotic Vanguard, has said it is a figment of imagination of those who alleged that wife of former President Goodluck Jonathan, Dr. Mrs Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom in Okrika, Rivers State to discuss modalities of supporting the candidate of the All Progressives Congress, APC, Chief Timipre Sylvain in the January 9 rescheduled governorship election in Bayelsa State, describing the purported meeting as untrue.

Speaking at a media roundtable in Port Harcourt, Rivers State on Sunday, the group's President, Dr. Bright Numofagha stated that Mrs. Patience Jonathan, who is the Chair of the group's board of trustees at no time contemplated giving any kind of support to the Bayelsa APC governorship candidate, describing the rumoured support and meeting with Chief Ateke Tom led former militants group as \"ridiculous and unfounded\".

He stated that those peddling the 'falsehood' should have known that it was impossible for Mrs Jonathan to support any other candidate against the choice of her husband, Dr. Goodluck Ebele Jonathan, in his home State of Bayelsa, other than the Peoples Democratic Party, PDP's flagbearer, Governor Henry Seriake Dickson.

The group, therefore, urged the general public, to disregard the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan, as it described it as the desperate attempt by the APC in Bayelsa State and its candidate to ride on the goodwill of the Jonathans in Bayelsa State, to manipulate the outcome of the supplementary governorship election in the State, scheduled for the 9th of January, 2016.

The group advised Chief Timipre Sylva to accept the decision of the people of Bayelsa State, as expressed during the December 5th 2015 election, where Governor Dickson currently maintains a clear lead in six of the seven local governments, where results have already been declared in the election.

Dr. Numofagha also urged the people of Bayelsa, to remain peaceful and law abiding and never succumb to any form of violence and intimidation that the expected engagements of known Militants and political thugs, by the Bayelsa State APC, may have been intended to achieve.

He further noted that former President Goodluck Jonathan and his family, including the wife, are currently on vacation in the United Kingdom, hence there was no way Mrs Patience could have attended any political meeting the last few days.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 38, "end": 41, "input": "tokens", "text": "Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Niger Delta Militants"}, {"source": {"segment": "content_relaxed", "context": {"start": 56, "end": 59, "input": "tokens", "text": "Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Niger Delta Militants"}], "key": "niger delta militants", "value": "Niger Delta Militants"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 571, "end": 572, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 599, "end": 600, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Dame Patience Jonathan Not Working for Sylva's Re-Election. - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 6, "end": 9, "input": "tokens", "text": "Blessing Obineche The President , Rivers Patriotic Vanguard , has said it is "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers Patriotic Vanguard"}, {"source": {"segment": "content_relaxed", "context": {"start": 24, "end": 27, "input": "tokens", "text": "Blessing Obineche The President , Rivers Patriotic Vanguard , has said it is "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers Patriotic Vanguard"}], "key": "rivers patriotic vanguard", "value": "Rivers Patriotic Vanguard"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 49, "end": 51, "input": "tokens", "text": "Ateke Tom in Okrika , Rivers State to discuss modalities of supporting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers State"}, {"source": {"segment": "content_strict", "context": {"start": 96, "end": 98, "input": "tokens", "text": "roundtable in Port Harcourt , Rivers State on Sunday , the group "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers State"}, {"source": {"segment": "content_relaxed", "context": {"start": 67, "end": 69, "input": "tokens", "text": "Ateke Tom in Okrika , Rivers State to discuss modalities of supporting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers State"}, {"source": {"segment": "content_relaxed", "context": {"start": 114, "end": 116, "input": "tokens", "text": "roundtable in Port Harcourt , Rivers State on Sunday , the group "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Rivers State"}], "key": "rivers state", "value": "Rivers State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 60, "end": 63, "input": "tokens", "text": "supporting the candidate of the All Progressives Congress , APC , Chief Timipre "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}, {"source": {"segment": "content_relaxed", "context": {"start": 78, "end": 81, "input": "tokens", "text": "supporting the candidate of the All Progressives Congress , APC , Chief Timipre "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}], "key": "all progressives congress", "value": "All Progressives Congress"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 64, "end": 65, "input": "tokens", "text": "the All Progressives Congress , APC , Chief Timipre Sylvain in "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 262, "end": 263, "input": "tokens", "text": "the desperate attempt by the APC in Bayelsa State and its "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 82, "end": 83, "input": "tokens", "text": "the All Progressives Congress , APC , Chief Timipre Sylvain in "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 280, "end": 281, "input": "tokens", "text": "the desperate attempt by the APC in Bayelsa State and its "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}], "key": "apc", "value": "APC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 107, "end": 108, "input": "tokens", "text": "group ' s President , Dr . Bright Numofagha stated that "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}, {"source": {"segment": "content_relaxed", "context": {"start": 125, "end": 126, "input": "tokens", "text": "group ' s President , Dr . Bright Numofagha stated that "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr"}], "key": "dr", "value": "Dr"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 120, "end": 123, "input": "tokens", "text": "Patience Jonathan , who is the Chair of the group ' s board "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Chair of"}, {"source": {"segment": "content_relaxed", "context": {"start": 138, "end": 141, "input": "tokens", "text": "Patience Jonathan , who is the Chair of the group ' s board "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Chair of"}], "key": "the chair of", "value": "the Chair of"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 207, "end": 210, "input": "tokens", "text": "Jonathan , in his home State of Bayelsa , other than the Peoples "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State of Bayelsa"}, {"source": {"segment": "content_relaxed", "context": {"start": 225, "end": 228, "input": "tokens", "text": "Jonathan , in his home State of Bayelsa , other than the Peoples "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State of Bayelsa"}], "key": "state of bayelsa", "value": "State of Bayelsa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 213, "end": 217, "input": "tokens", "text": "of Bayelsa , other than the Peoples Democratic Party , PDP ' s flagbearer "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}, {"source": {"segment": "content_relaxed", "context": {"start": 231, "end": 235, "input": "tokens", "text": "of Bayelsa , other than the Peoples Democratic Party , PDP ' s flagbearer "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}], "key": "the peoples democratic party", "value": "the Peoples Democratic Party"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 218, "end": 219, "input": "tokens", "text": "the Peoples Democratic Party , PDP ' s flagbearer , Governor "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 236, "end": 237, "input": "tokens", "text": "the Peoples Democratic Party , PDP ' s flagbearer , Governor "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}], "key": "pdp", "value": "PDP"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 292, "end": 293, "input": "tokens", "text": "supplementary governorship election in the State , scheduled for the 9th "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 310, "end": 311, "input": "tokens", "text": "supplementary governorship election in the State , scheduled for the 9th "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}], "key": "state", "value": "State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 387, "end": 388, "input": "tokens", "text": "the expected engagements of known Militants and political thugs , by "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Militants"}, {"source": {"segment": "content_relaxed", "context": {"start": 405, "end": 406, "input": "tokens", "text": "the expected engagements of known Militants and political thugs , by "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Militants"}], "key": "militants", "value": "Militants"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 393, "end": 397, "input": "tokens", "text": "and political thugs , by the Bayelsa State APC , may have been intended "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bayelsa State APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 411, "end": 415, "input": "tokens", "text": "and political thugs , by the Bayelsa State APC , may have been intended "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Bayelsa State APC"}], "key": "the bayelsa state apc", "value": "the Bayelsa State APC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 474, "end": 475, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 476, "end": 479, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 47, "end": 48, "input": "tokens", "text": "by Chief Ateke Tom in Okrika , Rivers State to discuss "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okrika"}, {"source": {"segment": "content_relaxed", "context": {"start": 65, "end": 66, "input": "tokens", "text": "by Chief Ateke Tom in Okrika , Rivers State to discuss "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Okrika"}], "key": "okrika", "value": "Okrika"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 77, "end": 79, "input": "tokens", "text": "9 rescheduled governorship election in Bayelsa State , describing the purported meeting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_strict", "context": {"start": 264, "end": 266, "input": "tokens", "text": "attempt by the APC in Bayelsa State and its candidate to ride "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_strict", "context": {"start": 278, "end": 280, "input": "tokens", "text": "goodwill of the Jonathans in Bayelsa State , to manipulate the outcome "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_strict", "context": {"start": 317, "end": 319, "input": "tokens", "text": "decision of the people of Bayelsa State , as expressed during the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 95, "end": 97, "input": "tokens", "text": "9 rescheduled governorship election in Bayelsa State , describing the purported meeting "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 282, "end": 284, "input": "tokens", "text": "attempt by the APC in Bayelsa State and its candidate to ride "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 296, "end": 298, "input": "tokens", "text": "goodwill of the Jonathans in Bayelsa State , to manipulate the outcome "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 335, "end": 337, "input": "tokens", "text": "decision of the people of Bayelsa State , as expressed during the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}], "key": "bayelsa state", "value": "Bayelsa State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 93, "end": 95, "input": "tokens", "text": "at a media roundtable in Port Harcourt , Rivers State on Sunday "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Port Harcourt"}, {"source": {"segment": "content_relaxed", "context": {"start": 111, "end": 113, "input": "tokens", "text": "at a media roundtable in Port Harcourt , Rivers State on Sunday "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Port Harcourt"}], "key": "port harcourt", "value": "Port Harcourt"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 141, "end": 143, "input": "tokens", "text": "kind of support to the Bayelsa APC governorship candidate , describing the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 159, "end": 161, "input": "tokens", "text": "kind of support to the Bayelsa APC governorship candidate , describing the "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa APC"}], "key": "bayelsa apc", "value": "Bayelsa APC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 363, "end": 364, "input": "tokens", "text": "also urged the people of Bayelsa , to remain peaceful and "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}, {"source": {"segment": "content_relaxed", "context": {"start": 381, "end": 382, "input": "tokens", "text": "also urged the people of Bayelsa , to remain peaceful and "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}], "key": "bayelsa", "value": "Bayelsa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 426, "end": 429, "input": "tokens", "text": "are currently on vacation in the United Kingdom , hence there was no "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Kingdom"}, {"source": {"segment": "content_relaxed", "context": {"start": 444, "end": 447, "input": "tokens", "text": "are currently on vacation in the United Kingdom , hence there was no "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Kingdom"}], "key": "the united kingdom", "value": "the United Kingdom"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 3, "end": 4, "input": "tokens", "text": "4 January 2016 Nigeria : Dame Patience Jonathan Not "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Dame Patience Jonathan Not "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 276, "end": 277, "input": "tokens", "text": "on the goodwill of the Jonathans in Bayelsa State , to "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathans"}, {"source": {"segment": "content_relaxed", "context": {"start": 294, "end": 295, "input": "tokens", "text": "on the goodwill of the Jonathans in Bayelsa State , to "}, "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Jonathans"}], "key": "jonathans", "value": "Jonathans"}]}, "content_extraction": {"content_relaxed": {"text": "

4 January 2016

Nigeria: Dame Patience Jonathan Not Working for Sylva's Re-Election.

By Blessing Obineche

The President, Rivers Patriotic Vanguard, has said it is a figment of imagination of those who alleged that wife of former President Goodluck Jonathan, Dr. Mrs Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom in Okrika, Rivers State to discuss modalities of supporting the candidate of the All Progressives Congress, APC, Chief Timipre Sylvain in the January 9 rescheduled governorship election in Bayelsa State, describing the purported meeting as untrue.

Speaking at a media roundtable in Port Harcourt, Rivers State on Sunday, the group's President, Dr. Bright Numofagha stated that Mrs. Patience Jonathan, who is the Chair of the group's board of trustees at no time contemplated giving any kind of support to the Bayelsa APC governorship candidate, describing the rumoured support and meeting with Chief Ateke Tom led former militants group as \"ridiculous and unfounded\".

He stated that those peddling the 'falsehood' should have known that it was impossible for Mrs Jonathan to support any other candidate against the choice of her husband, Dr. Goodluck Ebele Jonathan, in his home State of Bayelsa, other than the Peoples Democratic Party, PDP's flagbearer, Governor Henry Seriake Dickson.

The group, therefore, urged the general public, to disregard the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan, as it described it as the desperate attempt by the APC in Bayelsa State and its candidate to ride on the goodwill of the Jonathans in Bayelsa State, to manipulate the outcome of the supplementary governorship election in the State, scheduled for the 9th of January, 2016.

The group advised Chief Timipre Sylva to accept the decision of the people of Bayelsa State, as expressed during the December 5th 2015 election, where Governor Dickson currently maintains a clear lead in six of the seven local governments, where results have already been declared in the election.

Dr. Numofagha also urged the people of Bayelsa, to remain peaceful and law abiding and never succumb to any form of violence and intimidation that the expected engagements of known Militants and political thugs, by the Bayelsa State APC, may have been intended to achieve.

He further noted that former President Goodluck Jonathan and his family, including the wife, are currently on vacation in the United Kingdom, hence there was no way Mrs Patience could have attended any political meeting the last few days.

Copyright

2016 Leadership. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["4", "january", "2016", "nigeria", ":", "dame", "patience", "jonathan", "not", "working", "for", "sylva", "'", "s", "re", "-", "election", ".", "by", "blessing", "obineche", "the", "president", ",", "rivers", "patriotic", "vanguard", ",", "has", "said", "it", "is", "a", "figment", "of", "imagination", "of", "those", "who", "alleged", "that", "wife", "of", "former", "president", "goodluck", "jonathan", ",", "dr", ".", "mrs", "patience", "jonathan", "recently", "met", "former", "niger", "delta", "militants", "headed", "by", "chief", "ateke", "tom", "in", "okrika", ",", "rivers", "state", "to", "discuss", "modalities", "of", "supporting", "the", "candidate", "of", "the", "all", "progressives", "congress", ",", "apc", ",", "chief", "timipre", "sylvain", "in", "the", "january", "9", "rescheduled", "governorship", "election", "in", "bayelsa", "state", ",", "describing", "the", "purported", "meeting", "as", "untrue", ".", "speaking", "at", "a", "media", "roundtable", "in", "port", "harcourt", ",", "rivers", "state", "on", "sunday", ",", "the", "group", "'", "s", "president", ",", "dr", ".", "bright", "numofagha", "stated", "that", "mrs", ".", "patience", "jonathan", ",", "who", "is", "the", "chair", "of", "the", "group", "'", "s", "board", "of", "trustees", "at", "no", "time", "contemplated", "giving", "any", "kind", "of", "support", "to", "the", "bayelsa", "apc", "governorship", "candidate", ",", "describing", "the", "rumoured", "support", "and", "meeting", "with", "chief", "ateke", "tom", "led", "former", "militants", "group", "as", "\"", "ridiculous", "and", "unfounded", "\"", ".", "he", "stated", "that", "those", "peddling", "the", "'", "falsehood", "'", "should", "have", "known", "that", "it", "was", "impossible", "for", "mrs", "jonathan", "to", "support", "any", "other", "candidate", "against", "the", "choice", "of", "her", "husband", ",", "dr", ".", "goodluck", "ebele", "jonathan", ",", "in", "his", "home", "state", "of", "bayelsa", ",", "other", "than", "the", "peoples", "democratic", "party", ",", "pdp", "'", "s", "flagbearer", ",", "governor", "henry", "seriake", "dickson", ".", "the", "group", ",", "therefore", ",", "urged", "the", "general", "public", ",", "to", "disregard", "the", "rumoured", "endorsement", "of", "chief", "timipre", "sylva", "by", "dame", "patience", "jonathan", ",", "as", "it", "described", "it", "as", "the", "desperate", "attempt", "by", "the", "apc", "in", "bayelsa", "state", "and", "its", "candidate", "to", "ride", "on", "the", "goodwill", "of", "the", "jonathans", "in", "bayelsa", "state", ",", "to", "manipulate", "the", "outcome", "of", "the", "supplementary", "governorship", "election", "in", "the", "state", ",", "scheduled", "for", "the", "9th", "of", "january", ",", "2016", ".", "the", "group", "advised", "chief", "timipre", "sylva", "to", "accept", "the", "decision", "of", "the", "people", "of", "bayelsa", "state", ",", "as", "expressed", "during", "the", "december", "5th", "2015", "election", ",", "where", "governor", "dickson", "currently", "maintains", "a", "clear", "lead", "in", "six", "of", "the", "seven", "local", "governments", ",", "where", "results", "have", "already", "been", "declared", "in", "the", "election", ".", "dr", ".", "numofagha", "also", "urged", "the", "people", "of", "bayelsa", ",", "to", "remain", "peaceful", "and", "law", "abiding", "and", "never", "succumb", "to", "any", "form", "of", "violence", "and", "intimidation", "that", "the", "expected", "engagements", "of", "known", "militants", "and", "political", "thugs", ",", "by", "the", "bayelsa", "state", "apc", ",", "may", "have", "been", "intended", "to", "achieve", ".", "he", "further", "noted", "that", "former", "president", "goodluck", "jonathan", "and", "his", "family", ",", "including", "the", "wife", ",", "are", "currently", "on", "vacation", "in", "the", "united", "kingdom", ",", "hence", "there", "was", "no", "way", "mrs", "patience", "could", "have", "attended", "any", "political", "meeting", "the", "last", "few", "days", ".", "copyright", "2016", "leadership", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["4", "January", "2016", "Nigeria", ":", "Dame", "Patience", "Jonathan", "Not", "Working", "for", "Sylva", "'", "s", "Re", "-", "Election", ".", "By", "Blessing", "Obineche", "The", "President", ",", "Rivers", "Patriotic", "Vanguard", ",", "has", "said", "it", "is", "a", "figment", "of", "imagination", "of", "those", "who", "alleged", "that", "wife", "of", "former", "President", "Goodluck", "Jonathan", ",", "Dr", ".", "Mrs", "Patience", "Jonathan", "recently", "met", "former", "Niger", "Delta", "Militants", "headed", "by", "Chief", "Ateke", "Tom", "in", "Okrika", ",", "Rivers", "State", "to", "discuss", "modalities", "of", "supporting", "the", "candidate", "of", "the", "All", "Progressives", "Congress", ",", "APC", ",", "Chief", "Timipre", "Sylvain", "in", "the", "January", "9", "rescheduled", "governorship", "election", "in", "Bayelsa", "State", ",", "describing", "the", "purported", "meeting", "as", "untrue", ".", "Speaking", "at", "a", "media", "roundtable", "in", "Port", "Harcourt", ",", "Rivers", "State", "on", "Sunday", ",", "the", "group", "'", "s", "President", ",", "Dr", ".", "Bright", "Numofagha", "stated", "that", "Mrs", ".", "Patience", "Jonathan", ",", "who", "is", "the", "Chair", "of", "the", "group", "'", "s", "board", "of", "trustees", "at", "no", "time", "contemplated", "giving", "any", "kind", "of", "support", "to", "the", "Bayelsa", "APC", "governorship", "candidate", ",", "describing", "the", "rumoured", "support", "and", "meeting", "with", "Chief", "Ateke", "Tom", "led", "former", "militants", "group", "as", "\"", "ridiculous", "and", "unfounded", "\"", ".", "He", "stated", "that", "those", "peddling", "the", "'", "falsehood", "'", "should", "have", "known", "that", "it", "was", "impossible", "for", "Mrs", "Jonathan", "to", "support", "any", "other", "candidate", "against", "the", "choice", "of", "her", "husband", ",", "Dr", ".", "Goodluck", "Ebele", "Jonathan", ",", "in", "his", "home", "State", "of", "Bayelsa", ",", "other", "than", "the", "Peoples", "Democratic", "Party", ",", "PDP", "'", "s", "flagbearer", ",", "Governor", "Henry", "Seriake", "Dickson", ".", "The", "group", ",", "therefore", ",", "urged", "the", "general", "public", ",", "to", "disregard", "the", "rumoured", "endorsement", "of", "Chief", "Timipre", "Sylva", "by", "Dame", "Patience", "Jonathan", ",", "as", "it", "described", "it", "as", "the", "desperate", "attempt", "by", "the", "APC", "in", "Bayelsa", "State", "and", "its", "candidate", "to", "ride", "on", "the", "goodwill", "of", "the", "Jonathans", "in", "Bayelsa", "State", ",", "to", "manipulate", "the", "outcome", "of", "the", "supplementary", "governorship", "election", "in", "the", "State", ",", "scheduled", "for", "the", "9th", "of", "January", ",", "2016", ".", "The", "group", "advised", "Chief", "Timipre", "Sylva", "to", "accept", "the", "decision", "of", "the", "people", "of", "Bayelsa", "State", ",", "as", "expressed", "during", "the", "December", "5th", "2015", "election", ",", "where", "Governor", "Dickson", "currently", "maintains", "a", "clear", "lead", "in", "six", "of", "the", "seven", "local", "governments", ",", "where", "results", "have", "already", "been", "declared", "in", "the", "election", ".", "Dr", ".", "Numofagha", "also", "urged", "the", "people", "of", "Bayelsa", ",", "to", "remain", "peaceful", "and", "law", "abiding", "and", "never", "succumb", "to", "any", "form", "of", "violence", "and", "intimidation", "that", "the", "expected", "engagements", "of", "known", "Militants", "and", "political", "thugs", ",", "by", "the", "Bayelsa", "State", "APC", ",", "may", "have", "been", "intended", "to", "achieve", ".", "He", "further", "noted", "that", "former", "President", "Goodluck", "Jonathan", "and", "his", "family", ",", "including", "the", "wife", ",", "are", "currently", "on", "vacation", "in", "the", "United", "Kingdom", ",", "hence", "there", "was", "no", "way", "Mrs", "Patience", "could", "have", "attended", "any", "political", "meeting", "the", "last", "few", "days", ".", "Copyright", "2016", "Leadership", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/04/201601040034.html"}, "content_strict": {"text": "

By Blessing Obineche

The President, Rivers Patriotic Vanguard, has said it is a figment of imagination of those who alleged that wife of former President Goodluck Jonathan, Dr. Mrs Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom in Okrika, Rivers State to discuss modalities of supporting the candidate of the All Progressives Congress, APC, Chief Timipre Sylvain in the January 9 rescheduled governorship election in Bayelsa State, describing the purported meeting as untrue.

Speaking at a media roundtable in Port Harcourt, Rivers State on Sunday, the group's President, Dr. Bright Numofagha stated that Mrs. Patience Jonathan, who is the Chair of the group's board of trustees at no time contemplated giving any kind of support to the Bayelsa APC governorship candidate, describing the rumoured support and meeting with Chief Ateke Tom led former militants group as \"ridiculous and unfounded\".

He stated that those peddling the 'falsehood' should have known that it was impossible for Mrs Jonathan to support any other candidate against the choice of her husband, Dr. Goodluck Ebele Jonathan, in his home State of Bayelsa, other than the Peoples Democratic Party, PDP's flagbearer, Governor Henry Seriake Dickson.

The group, therefore, urged the general public, to disregard the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan, as it described it as the desperate attempt by the APC in Bayelsa State and its candidate to ride on the goodwill of the Jonathans in Bayelsa State, to manipulate the outcome of the supplementary governorship election in the State, scheduled for the 9th of January, 2016.

The group advised Chief Timipre Sylva to accept the decision of the people of Bayelsa State, as expressed during the December 5th 2015 election, where Governor Dickson currently maintains a clear lead in six of the seven local governments, where results have already been declared in the election.

Dr. Numofagha also urged the people of Bayelsa, to remain peaceful and law abiding and never succumb to any form of violence and intimidation that the expected engagements of known Militants and political thugs, by the Bayelsa State APC, may have been intended to achieve.

He further noted that former President Goodluck Jonathan and his family, including the wife, are currently on vacation in the United Kingdom, hence there was no way Mrs Patience could have attended any political meeting the last few days.

", "simple_tokens": ["by", "blessing", "obineche", "the", "president", ",", "rivers", "patriotic", "vanguard", ",", "has", "said", "it", "is", "a", "figment", "of", "imagination", "of", "those", "who", "alleged", "that", "wife", "of", "former", "president", "goodluck", "jonathan", ",", "dr", ".", "mrs", "patience", "jonathan", "recently", "met", "former", "niger", "delta", "militants", "headed", "by", "chief", "ateke", "tom", "in", "okrika", ",", "rivers", "state", "to", "discuss", "modalities", "of", "supporting", "the", "candidate", "of", "the", "all", "progressives", "congress", ",", "apc", ",", "chief", "timipre", "sylvain", "in", "the", "january", "9", "rescheduled", "governorship", "election", "in", "bayelsa", "state", ",", "describing", "the", "purported", "meeting", "as", "untrue", ".", "speaking", "at", "a", "media", "roundtable", "in", "port", "harcourt", ",", "rivers", "state", "on", "sunday", ",", "the", "group", "'", "s", "president", ",", "dr", ".", "bright", "numofagha", "stated", "that", "mrs", ".", "patience", "jonathan", ",", "who", "is", "the", "chair", "of", "the", "group", "'", "s", "board", "of", "trustees", "at", "no", "time", "contemplated", "giving", "any", "kind", "of", "support", "to", "the", "bayelsa", "apc", "governorship", "candidate", ",", "describing", "the", "rumoured", "support", "and", "meeting", "with", "chief", "ateke", "tom", "led", "former", "militants", "group", "as", "\"", "ridiculous", "and", "unfounded", "\"", ".", "he", "stated", "that", "those", "peddling", "the", "'", "falsehood", "'", "should", "have", "known", "that", "it", "was", "impossible", "for", "mrs", "jonathan", "to", "support", "any", "other", "candidate", "against", "the", "choice", "of", "her", "husband", ",", "dr", ".", "goodluck", "ebele", "jonathan", ",", "in", "his", "home", "state", "of", "bayelsa", ",", "other", "than", "the", "peoples", "democratic", "party", ",", "pdp", "'", "s", "flagbearer", ",", "governor", "henry", "seriake", "dickson", ".", "the", "group", ",", "therefore", ",", "urged", "the", "general", "public", ",", "to", "disregard", "the", "rumoured", "endorsement", "of", "chief", "timipre", "sylva", "by", "dame", "patience", "jonathan", ",", "as", "it", "described", "it", "as", "the", "desperate", "attempt", "by", "the", "apc", "in", "bayelsa", "state", "and", "its", "candidate", "to", "ride", "on", "the", "goodwill", "of", "the", "jonathans", "in", "bayelsa", "state", ",", "to", "manipulate", "the", "outcome", "of", "the", "supplementary", "governorship", "election", "in", "the", "state", ",", "scheduled", "for", "the", "9th", "of", "january", ",", "2016", ".", "the", "group", "advised", "chief", "timipre", "sylva", "to", "accept", "the", "decision", "of", "the", "people", "of", "bayelsa", "state", ",", "as", "expressed", "during", "the", "december", "5th", "2015", "election", ",", "where", "governor", "dickson", "currently", "maintains", "a", "clear", "lead", "in", "six", "of", "the", "seven", "local", "governments", ",", "where", "results", "have", "already", "been", "declared", "in", "the", "election", ".", "dr", ".", "numofagha", "also", "urged", "the", "people", "of", "bayelsa", ",", "to", "remain", "peaceful", "and", "law", "abiding", "and", "never", "succumb", "to", "any", "form", "of", "violence", "and", "intimidation", "that", "the", "expected", "engagements", "of", "known", "militants", "and", "political", "thugs", ",", "by", "the", "bayelsa", "state", "apc", ",", "may", "have", "been", "intended", "to", "achieve", ".", "he", "further", "noted", "that", "former", "president", "goodluck", "jonathan", "and", "his", "family", ",", "including", "the", "wife", ",", "are", "currently", "on", "vacation", "in", "the", "united", "kingdom", ",", "hence", "there", "was", "no", "way", "mrs", "patience", "could", "have", "attended", "any", "political", "meeting", "the", "last", "few", "days", "."], "simple_tokens_original_case": ["By", "Blessing", "Obineche", "The", "President", ",", "Rivers", "Patriotic", "Vanguard", ",", "has", "said", "it", "is", "a", "figment", "of", "imagination", "of", "those", "who", "alleged", "that", "wife", "of", "former", "President", "Goodluck", "Jonathan", ",", "Dr", ".", "Mrs", "Patience", "Jonathan", "recently", "met", "former", "Niger", "Delta", "Militants", "headed", "by", "Chief", "Ateke", "Tom", "in", "Okrika", ",", "Rivers", "State", "to", "discuss", "modalities", "of", "supporting", "the", "candidate", "of", "the", "All", "Progressives", "Congress", ",", "APC", ",", "Chief", "Timipre", "Sylvain", "in", "the", "January", "9", "rescheduled", "governorship", "election", "in", "Bayelsa", "State", ",", "describing", "the", "purported", "meeting", "as", "untrue", ".", "Speaking", "at", "a", "media", "roundtable", "in", "Port", "Harcourt", ",", "Rivers", "State", "on", "Sunday", ",", "the", "group", "'", "s", "President", ",", "Dr", ".", "Bright", "Numofagha", "stated", "that", "Mrs", ".", "Patience", "Jonathan", ",", "who", "is", "the", "Chair", "of", "the", "group", "'", "s", "board", "of", "trustees", "at", "no", "time", "contemplated", "giving", "any", "kind", "of", "support", "to", "the", "Bayelsa", "APC", "governorship", "candidate", ",", "describing", "the", "rumoured", "support", "and", "meeting", "with", "Chief", "Ateke", "Tom", "led", "former", "militants", "group", "as", "\"", "ridiculous", "and", "unfounded", "\"", ".", "He", "stated", "that", "those", "peddling", "the", "'", "falsehood", "'", "should", "have", "known", "that", "it", "was", "impossible", "for", "Mrs", "Jonathan", "to", "support", "any", "other", "candidate", "against", "the", "choice", "of", "her", "husband", ",", "Dr", ".", "Goodluck", "Ebele", "Jonathan", ",", "in", "his", "home", "State", "of", "Bayelsa", ",", "other", "than", "the", "Peoples", "Democratic", "Party", ",", "PDP", "'", "s", "flagbearer", ",", "Governor", "Henry", "Seriake", "Dickson", ".", "The", "group", ",", "therefore", ",", "urged", "the", "general", "public", ",", "to", "disregard", "the", "rumoured", "endorsement", "of", "Chief", "Timipre", "Sylva", "by", "Dame", "Patience", "Jonathan", ",", "as", "it", "described", "it", "as", "the", "desperate", "attempt", "by", "the", "APC", "in", "Bayelsa", "State", "and", "its", "candidate", "to", "ride", "on", "the", "goodwill", "of", "the", "Jonathans", "in", "Bayelsa", "State", ",", "to", "manipulate", "the", "outcome", "of", "the", "supplementary", "governorship", "election", "in", "the", "State", ",", "scheduled", "for", "the", "9th", "of", "January", ",", "2016", ".", "The", "group", "advised", "Chief", "Timipre", "Sylva", "to", "accept", "the", "decision", "of", "the", "people", "of", "Bayelsa", "State", ",", "as", "expressed", "during", "the", "December", "5th", "2015", "election", ",", "where", "Governor", "Dickson", "currently", "maintains", "a", "clear", "lead", "in", "six", "of", "the", "seven", "local", "governments", ",", "where", "results", "have", "already", "been", "declared", "in", "the", "election", ".", "Dr", ".", "Numofagha", "also", "urged", "the", "people", "of", "Bayelsa", ",", "to", "remain", "peaceful", "and", "law", "abiding", "and", "never", "succumb", "to", "any", "form", "of", "violence", "and", "intimidation", "that", "the", "expected", "engagements", "of", "known", "Militants", "and", "political", "thugs", ",", "by", "the", "Bayelsa", "State", "APC", ",", "may", "have", "been", "intended", "to", "achieve", ".", "He", "further", "noted", "that", "former", "President", "Goodluck", "Jonathan", "and", "his", "family", ",", "including", "the", "wife", ",", "are", "currently", "on", "vacation", "in", "the", "United", "Kingdom", ",", "hence", "there", "was", "no", "way", "Mrs", "Patience", "could", "have", "attended", "any", "political", "meeting", "the", "last", "few", "days", "."]}, "title": {"text": " Nigeria: Dame Patience Jonathan Not Working for Sylva's Re-Election. - allAfrica.com ", "simple_tokens": ["nigeria", ":", "dame", "patience", "jonathan", "not", "working", "for", "sylva", "'", "s", "re", "-", "election", ".", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Dame", "Patience", "Jonathan", "Not", "Working", "for", "Sylva", "'", "s", "Re", "-", "Election", ".", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:11.306183", "@etk_process_time": 0.4587090015411377, "@etk_start_time": "2018-06-07T17:34:10.847474"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Dame Patience Jonathan Not Working for Sylva's Re-Election. - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 4 January 2016\n
\n \n \n

\n Nigeria: Dame Patience Jonathan Not Working for Sylva's Re-Election.\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Blessing Obineche\n \n

\n The President, Rivers Patriotic Vanguard, has said it is a figment of imagination of those who alleged that wife of former President Goodluck Jonathan, Dr. Mrs Patience Jonathan recently met former Niger Delta Militants headed by Chief Ateke Tom in Okrika, Rivers State to discuss modalities of supporting the candidate of the All Progressives Congress, APC, Chief Timipre Sylvain in the January 9 rescheduled governorship election in Bayelsa State, describing the purported meeting as untrue.\n

\n

\n Speaking at a media roundtable in Port Harcourt, Rivers State on Sunday, the group's President, Dr. Bright Numofagha stated that Mrs. Patience Jonathan, who is the Chair of the group's board of trustees at no time contemplated giving any kind of support to the Bayelsa APC governorship candidate, describing the rumoured support and meeting with Chief Ateke Tom led former militants group as \"ridiculous and unfounded\".\n

\n

\n He stated that those peddling the 'falsehood' should have known that it was impossible for Mrs Jonathan to support any other candidate against the choice of her husband, Dr. Goodluck Ebele Jonathan, in his home State of Bayelsa, other than the Peoples Democratic Party, PDP's flagbearer, Governor Henry Seriake Dickson.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n The group, therefore, urged the general public, to disregard the rumoured endorsement of Chief Timipre Sylva by Dame Patience Jonathan, as it described it as the desperate attempt by the APC in Bayelsa State and its candidate to ride on the goodwill of the Jonathans in Bayelsa State, to manipulate the outcome of the supplementary governorship election in the State, scheduled for the 9th of January, 2016.\n

\n
\n
\n
\n
\n

\n The group advised Chief Timipre Sylva to accept the decision of the people of Bayelsa State, as expressed during the December 5th 2015 election, where Governor Dickson currently maintains a clear lead in six of the seven local governments, where results have already been declared in the election.\n

\n

\n Dr. Numofagha also urged the people of Bayelsa, to remain peaceful and law abiding and never succumb to any form of violence and intimidation that the expected engagements of known Militants and political thugs, by the Bayelsa State APC, may have been intended to achieve.\n

\n

\n He further noted that former President Goodluck Jonathan and his family, including the wife, are currently on vacation in the United Kingdom, hence there was no way Mrs Patience could have attended any political meeting the last few days.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Leadership. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3", "document_id": "D56C4E84F4A6EDEE2D93B6CFA200371CCC736C9FC75555D6FDA8382DE33AF8C3"} +{"url": "http://www.ce_news_article.org/2016/01/04/201601040035.html", "knowledge_graph": {"person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 3, "input": "tokens", "text": "By Emmanuel Ugwu With the expansion undergone in "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Emmanuel Ugwu"}, {"source": {"segment": "content_relaxed", "context": {"start": 16, "end": 18, "input": "tokens", "text": "Hospital , Says MD By Emmanuel Ugwu With the expansion undergone in "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Emmanuel Ugwu"}], "key": "emmanuel ugwu", "value": "Emmanuel Ugwu"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 44, "end": 47, "input": "tokens", "text": "director ( MD ) , Dr Chuku Abali had said . Speaking with "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Chuku Abali"}, {"source": {"segment": "content_relaxed", "context": {"start": 59, "end": 62, "input": "tokens", "text": "director ( MD ) , Dr Chuku Abali had said . Speaking with "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Chuku Abali"}], "key": "dr chuku abali", "value": "Dr Chuku Abali"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 225, "end": 227, "input": "tokens", "text": "be completed next year . Dr Abali said that the advanced diagnostic "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Abali"}, {"source": {"segment": "content_strict", "context": {"start": 426, "end": 428, "input": "tokens", "text": "To further improve services , Dr Abali said that management has adopted "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Abali"}, {"source": {"segment": "content_relaxed", "context": {"start": 240, "end": 242, "input": "tokens", "text": "be completed next year . Dr Abali said that the advanced diagnostic "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Abali"}, {"source": {"segment": "content_relaxed", "context": {"start": 441, "end": 443, "input": "tokens", "text": "To further improve services , Dr Abali said that management has adopted "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dr Abali"}], "key": "dr abali", "value": "Dr Abali"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 342, "end": 343, "input": "tokens", "text": "Lagos University Teaching Hospital ( LUTH ) was chosen from the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "LUTH"}, {"source": {"segment": "content_relaxed", "context": {"start": 357, "end": 358, "input": "tokens", "text": "Lagos University Teaching Hospital ( LUTH ) was chosen from the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "LUTH"}], "key": "luth", "value": "LUTH"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 351, "end": 353, "input": "tokens", "text": "from the South West and Aminu Kano hospital for the North . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aminu Kano"}, {"source": {"segment": "content_relaxed", "context": {"start": 366, "end": 368, "input": "tokens", "text": "from the South West and Aminu Kano hospital for the North . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Aminu Kano"}], "key": "aminu kano", "value": "Aminu Kano"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 356, "end": 357, "input": "tokens", "text": "Aminu Kano hospital for the North . \" This FMC has "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "North"}, {"source": {"segment": "content_relaxed", "context": {"start": 371, "end": 372, "input": "tokens", "text": "Aminu Kano hospital for the North . \" This FMC has "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "North"}], "key": "north", "value": "North"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 633, "end": 634, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "method": "rearrange_description"}], "key": "description", "value": "

By Emmanuel Ugwu

With the expansion undergone in terms of medical facilities and availability of highly skilled personnel, the Federal Medical Centre (FMC) Umuahia is ripe to be upgraded to a teaching hospital, the medical director (MD), Dr Chuku Abali had said.

Speaking with journalists on the progress so far recorded and the future plans for the institution, the MD said the FMC which sits on a 77 hectare in the capital city can comfortably be converted into a teaching hospital. This, he hoped would be realized if Michael Okpara University of Agriculture Umudike (MOUAU) eventually gets the nod to run medical programmes, as planned.

\"FMC is long overdue to become a teaching hospital,\" he asserted, adding that with the level of excellence it has attained, if more public hospitals could be upgraded to create pockets of excellence\" across the country it would curtail the craze for medical tourism by Nigerians,\" he explained.

He stated that the FMC has continued to expand its services with building of new wards of 88 beds to increase the existing bed spaces from 287 to 375, while the provision of advanced diagnostic centre and other modern medical equipment would be completed next year.

Dr Abali said that the advanced diagnostic centre was being funded by the Nigerian Sovereign Investment Authority (NSIA) and would involve installing of magnetic resonance imaging (MRI) machine to compliment the CT scanner already in use.

\"We plan to deepen our services to make FMC Umuahia stand out as the best medical facilities in the South East and South South,\" he said, adding, \"We feel that improving our services will attract people from far and near\".

According to him, the FMC Umuahia was selected for the South East zone in the intervention by the NSIA, while the Lagos University Teaching Hospital (LUTH) was chosen from the South West and Aminu Kano hospital for the North.

\"This FMC has deepened services in internal medicine, while the dialysis centre is undergoing expansion with addition of two dialysis machine to make it six and eventually reach the target of 10, while it also boasts of purpose-built In-Vitro Fertilisation laboratory, which is ranked among the best in the country,\" he stated.

To further improve services, Dr Abali said that management has adopted the use of social media (WhatsAPP) platform to transmit scan results to doctors, thereby giving the 76 full time consultants, including three neurosurgeons at the FMC Umuahia opportunity to give their best in treating patients. He said that he developed the passion to turn FMC Umuahia into a medical haven when he was undergoing five months medical care in the United Kingdom, following an assassination attempt in October 2011 when armed men shot him.

\"I promised God that I will replicate the medical facilities I saw there (UK),\" he said, adding \"If we get all that we ask for, there is really no limit to what we can go in providing world class medical care at FMC Umuahia,\" the MD explained.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 285, "end": 288, "input": "tokens", "text": "the best medical facilities in the South East and South South , \" "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South East"}, {"source": {"segment": "content_strict", "context": {"start": 324, "end": 327, "input": "tokens", "text": "FMC Umuahia was selected for the South East zone in the intervention by "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South East"}, {"source": {"segment": "content_relaxed", "context": {"start": 300, "end": 303, "input": "tokens", "text": "the best medical facilities in the South East and South South , \" "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South East"}, {"source": {"segment": "content_relaxed", "context": {"start": 339, "end": 342, "input": "tokens", "text": "FMC Umuahia was selected for the South East zone in the intervention by "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South East"}], "key": "the south east", "value": "the South East"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 289, "end": 291, "input": "tokens", "text": "in the South East and South South , \" he said , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South South"}, {"source": {"segment": "content_relaxed", "context": {"start": 304, "end": 306, "input": "tokens", "text": "in the South East and South South , \" he said , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "South South"}], "key": "south south", "value": "South South"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 347, "end": 350, "input": "tokens", "text": "LUTH ) was chosen from the South West and Aminu Kano hospital for "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South West"}, {"source": {"segment": "content_relaxed", "context": {"start": 362, "end": 365, "input": "tokens", "text": "LUTH ) was chosen from the South West and Aminu Kano hospital for "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the South West"}], "key": "the south west", "value": "the South West"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 693, "end": 694, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 721, "end": 722, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: FMC Umuahia Ripe to Become Teaching Hospital, Says MD - allAfrica.com "}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 19, "end": 23, "input": "tokens", "text": "of highly skilled personnel , the Federal Medical Centre ( FMC ) Umuahia is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Medical Centre"}, {"source": {"segment": "content_relaxed", "context": {"start": 34, "end": 38, "input": "tokens", "text": "of highly skilled personnel , the Federal Medical Centre ( FMC ) Umuahia is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Federal Medical Centre"}], "key": "the federal medical centre", "value": "the Federal Medical Centre"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 68, "end": 69, "input": "tokens", "text": "for the institution , the MD said the FMC which sits "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}, {"source": {"segment": "content_relaxed", "context": {"start": 83, "end": 84, "input": "tokens", "text": "for the institution , the MD said the FMC which sits "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}], "key": "md", "value": "MD"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 71, "end": 72, "input": "tokens", "text": ", the MD said the FMC which sits on a 77 "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_strict", "context": {"start": 121, "end": 122, "input": "tokens", "text": ", as planned . \" FMC is long overdue to become "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_strict", "context": {"start": 181, "end": 182, "input": "tokens", "text": ". He stated that the FMC has continued to expand its "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_strict", "context": {"start": 275, "end": 276, "input": "tokens", "text": "deepen our services to make FMC Umuahia stand out as the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_strict", "context": {"start": 360, "end": 361, "input": "tokens", "text": "the North . \" This FMC has deepened services in internal "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_strict", "context": {"start": 482, "end": 483, "input": "tokens", "text": "developed the passion to turn FMC Umuahia into a medical haven "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 86, "end": 87, "input": "tokens", "text": ", the MD said the FMC which sits on a 77 "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 136, "end": 137, "input": "tokens", "text": ", as planned . \" FMC is long overdue to become "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 196, "end": 197, "input": "tokens", "text": ". He stated that the FMC has continued to expand its "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 290, "end": 291, "input": "tokens", "text": "deepen our services to make FMC Umuahia stand out as the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 375, "end": 376, "input": "tokens", "text": "the North . \" This FMC has deepened services in internal "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}, {"source": {"segment": "content_relaxed", "context": {"start": 497, "end": 498, "input": "tokens", "text": "developed the passion to turn FMC Umuahia into a medical haven "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC"}], "key": "fmc", "value": "FMC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 99, "end": 105, "input": "tokens", "text": "hoped would be realized if Michael Okpara University of Agriculture Umudike ( MOUAU ) eventually gets "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Michael Okpara University of Agriculture Umudike"}, {"source": {"segment": "content_relaxed", "context": {"start": 114, "end": 120, "input": "tokens", "text": "hoped would be realized if Michael Okpara University of Agriculture Umudike ( MOUAU ) eventually gets "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Michael Okpara University of Agriculture Umudike"}], "key": "michael okpara university of agriculture umudike", "value": "Michael Okpara University of Agriculture Umudike"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 237, "end": 242, "input": "tokens", "text": "centre was being funded by the Nigerian Sovereign Investment Authority ( NSIA ) and would "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Nigerian Sovereign Investment Authority"}, {"source": {"segment": "content_relaxed", "context": {"start": 252, "end": 257, "input": "tokens", "text": "centre was being funded by the Nigerian Sovereign Investment Authority ( NSIA ) and would "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Nigerian Sovereign Investment Authority"}], "key": "the nigerian sovereign investment authority", "value": "the Nigerian Sovereign Investment Authority"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 243, "end": 244, "input": "tokens", "text": "Nigerian Sovereign Investment Authority ( NSIA ) and would involve installing "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NSIA"}, {"source": {"segment": "content_strict", "context": {"start": 333, "end": 334, "input": "tokens", "text": "in the intervention by the NSIA , while the Lagos University "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NSIA"}, {"source": {"segment": "content_relaxed", "context": {"start": 258, "end": 259, "input": "tokens", "text": "Nigerian Sovereign Investment Authority ( NSIA ) and would involve installing "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NSIA"}, {"source": {"segment": "content_relaxed", "context": {"start": 348, "end": 349, "input": "tokens", "text": "in the intervention by the NSIA , while the Lagos University "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "NSIA"}], "key": "nsia", "value": "NSIA"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 254, "end": 255, "input": "tokens", "text": "of magnetic resonance imaging ( MRI ) machine to compliment the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MRI"}, {"source": {"segment": "content_relaxed", "context": {"start": 269, "end": 270, "input": "tokens", "text": "of magnetic resonance imaging ( MRI ) machine to compliment the "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MRI"}], "key": "mri", "value": "MRI"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 318, "end": 321, "input": "tokens", "text": ". According to him , the FMC Umuahia was selected for the South "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the FMC Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 333, "end": 336, "input": "tokens", "text": ". According to him , the FMC Umuahia was selected for the South "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the FMC Umuahia"}], "key": "the fmc umuahia", "value": "the FMC Umuahia"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 336, "end": 341, "input": "tokens", "text": "by the NSIA , while the Lagos University Teaching Hospital ( LUTH ) was chosen "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Lagos University Teaching Hospital"}, {"source": {"segment": "content_relaxed", "context": {"start": 351, "end": 356, "input": "tokens", "text": "by the NSIA , while the Lagos University Teaching Hospital ( LUTH ) was chosen "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Lagos University Teaching Hospital"}], "key": "the lagos university teaching hospital", "value": "the Lagos University Teaching Hospital"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 403, "end": 404, "input": "tokens", "text": "purpose - built In - Vitro Fertilisation laboratory , which is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vitro"}, {"source": {"segment": "content_relaxed", "context": {"start": 418, "end": 419, "input": "tokens", "text": "purpose - built In - Vitro Fertilisation laboratory , which is "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Vitro"}], "key": "vitro", "value": "Vitro"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 462, "end": 464, "input": "tokens", "text": "including three neurosurgeons at the FMC Umuahia opportunity to give their best "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia"}, {"source": {"segment": "content_strict", "context": {"start": 564, "end": 566, "input": "tokens", "text": "world class medical care at FMC Umuahia , \" the MD explained "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 477, "end": 479, "input": "tokens", "text": "including three neurosurgeons at the FMC Umuahia opportunity to give their best "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia"}, {"source": {"segment": "content_relaxed", "context": {"start": 579, "end": 581, "input": "tokens", "text": "world class medical care at FMC Umuahia , \" the MD explained "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia"}], "key": "fmc umuahia", "value": "FMC Umuahia"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 8, "input": "tokens", "text": "3 January 2016 Nigeria : FMC Umuahia Ripe to Become Teaching Hospital , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia Ripe"}, {"source": {"segment": "title", "context": {"start": 2, "end": 5, "input": "tokens", "text": "Nigeria : FMC Umuahia Ripe to Become Teaching Hospital , "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "FMC Umuahia Ripe"}], "key": "fmc umuahia ripe", "value": "FMC Umuahia Ripe"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 596, "end": 597, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 598, "end": 601, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 11, "end": 14, "input": "tokens", "text": "Become Teaching Hospital , Says MD - allAfrica . com "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD - allAfrica"}], "key": "md - allafrica", "value": "MD - allAfrica"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 41, "end": 42, "input": "tokens", "text": ", the medical director ( MD ) , Dr Chuku Abali "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}, {"source": {"segment": "content_strict", "context": {"start": 569, "end": 570, "input": "tokens", "text": "FMC Umuahia , \" the MD explained . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}, {"source": {"segment": "content_relaxed", "context": {"start": 56, "end": 57, "input": "tokens", "text": ", the medical director ( MD ) , Dr Chuku Abali "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}, {"source": {"segment": "content_relaxed", "context": {"start": 584, "end": 585, "input": "tokens", "text": "FMC Umuahia , \" the MD explained . Copyright 2016 This "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "MD"}], "key": "md", "value": "MD"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 260, "end": 261, "input": "tokens", "text": ") machine to compliment the CT scanner already in use . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CT"}, {"source": {"segment": "content_relaxed", "context": {"start": 275, "end": 276, "input": "tokens", "text": ") machine to compliment the CT scanner already in use . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "CT"}], "key": "ct", "value": "CT"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 497, "end": 500, "input": "tokens", "text": "five months medical care in the United Kingdom , following an assassination attempt "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Kingdom"}, {"source": {"segment": "content_relaxed", "context": {"start": 512, "end": 515, "input": "tokens", "text": "five months medical care in the United Kingdom , following an assassination attempt "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the United Kingdom"}], "key": "the united kingdom", "value": "the United Kingdom"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 529, "end": 530, "input": "tokens", "text": "facilities I saw there ( UK ) , \" he said "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "UK"}, {"source": {"segment": "content_relaxed", "context": {"start": 544, "end": 545, "input": "tokens", "text": "facilities I saw there ( UK ) , \" he said "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "UK"}], "key": "uk", "value": "UK"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 3, "end": 4, "input": "tokens", "text": "3 January 2016 Nigeria : FMC Umuahia Ripe to "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}, {"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : FMC Umuahia Ripe to "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 171, "end": 172, "input": "tokens", "text": "craze for medical tourism by Nigerians , \" he explained . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigerians"}, {"source": {"segment": "content_relaxed", "context": {"start": 186, "end": 187, "input": "tokens", "text": "craze for medical tourism by Nigerians , \" he explained . "}, "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigerians"}], "key": "nigerians", "value": "Nigerians"}]}, "content_extraction": {"content_relaxed": {"text": "

3 January 2016

Nigeria: FMC Umuahia Ripe to Become Teaching Hospital, Says MD

By Emmanuel Ugwu

With the expansion undergone in terms of medical facilities and availability of highly skilled personnel, the Federal Medical Centre (FMC) Umuahia is ripe to be upgraded to a teaching hospital, the medical director (MD), Dr Chuku Abali had said.

Speaking with journalists on the progress so far recorded and the future plans for the institution, the MD said the FMC which sits on a 77 hectare in the capital city can comfortably be converted into a teaching hospital. This, he hoped would be realized if Michael Okpara University of Agriculture Umudike (MOUAU) eventually gets the nod to run medical programmes, as planned.

\"FMC is long overdue to become a teaching hospital,\" he asserted, adding that with the level of excellence it has attained, if more public hospitals could be upgraded to create pockets of excellence\" across the country it would curtail the craze for medical tourism by Nigerians,\" he explained.

He stated that the FMC has continued to expand its services with building of new wards of 88 beds to increase the existing bed spaces from 287 to 375, while the provision of advanced diagnostic centre and other modern medical equipment would be completed next year.

Dr Abali said that the advanced diagnostic centre was being funded by the Nigerian Sovereign Investment Authority (NSIA) and would involve installing of magnetic resonance imaging (MRI) machine to compliment the CT scanner already in use.

\"We plan to deepen our services to make FMC Umuahia stand out as the best medical facilities in the South East and South South,\" he said, adding, \"We feel that improving our services will attract people from far and near\".

According to him, the FMC Umuahia was selected for the South East zone in the intervention by the NSIA, while the Lagos University Teaching Hospital (LUTH) was chosen from the South West and Aminu Kano hospital for the North.

\"This FMC has deepened services in internal medicine, while the dialysis centre is undergoing expansion with addition of two dialysis machine to make it six and eventually reach the target of 10, while it also boasts of purpose-built In-Vitro Fertilisation laboratory, which is ranked among the best in the country,\" he stated.

To further improve services, Dr Abali said that management has adopted the use of social media (WhatsAPP) platform to transmit scan results to doctors, thereby giving the 76 full time consultants, including three neurosurgeons at the FMC Umuahia opportunity to give their best in treating patients. He said that he developed the passion to turn FMC Umuahia into a medical haven when he was undergoing five months medical care in the United Kingdom, following an assassination attempt in October 2011 when armed men shot him.

\"I promised God that I will replicate the medical facilities I saw there (UK),\" he said, adding \"If we get all that we ask for, there is really no limit to what we can go in providing world class medical care at FMC Umuahia,\" the MD explained.

Copyright

2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["3", "january", "2016", "nigeria", ":", "fmc", "umuahia", "ripe", "to", "become", "teaching", "hospital", ",", "says", "md", "by", "emmanuel", "ugwu", "with", "the", "expansion", "undergone", "in", "terms", "of", "medical", "facilities", "and", "availability", "of", "highly", "skilled", "personnel", ",", "the", "federal", "medical", "centre", "(", "fmc", ")", "umuahia", "is", "ripe", "to", "be", "upgraded", "to", "a", "teaching", "hospital", ",", "the", "medical", "director", "(", "md", ")", ",", "dr", "chuku", "abali", "had", "said", ".", "speaking", "with", "journalists", "on", "the", "progress", "so", "far", "recorded", "and", "the", "future", "plans", "for", "the", "institution", ",", "the", "md", "said", "the", "fmc", "which", "sits", "on", "a", "77", "hectare", "in", "the", "capital", "city", "can", "comfortably", "be", "converted", "into", "a", "teaching", "hospital", ".", "this", ",", "he", "hoped", "would", "be", "realized", "if", "michael", "okpara", "university", "of", "agriculture", "umudike", "(", "mouau", ")", "eventually", "gets", "the", "nod", "to", "run", "medical", "programmes", ",", "as", "planned", ".", "\"", "fmc", "is", "long", "overdue", "to", "become", "a", "teaching", "hospital", ",", "\"", "he", "asserted", ",", "adding", "that", "with", "the", "level", "of", "excellence", "it", "has", "attained", ",", "if", "more", "public", "hospitals", "could", "be", "upgraded", "to", "create", "pockets", "of", "excellence", "\"", "across", "the", "country", "it", "would", "curtail", "the", "craze", "for", "medical", "tourism", "by", "nigerians", ",", "\"", "he", "explained", ".", "he", "stated", "that", "the", "fmc", "has", "continued", "to", "expand", "its", "services", "with", "building", "of", "new", "wards", "of", "88", "beds", "to", "increase", "the", "existing", "bed", "spaces", "from", "287", "to", "375", ",", "while", "the", "provision", "of", "advanced", "diagnostic", "centre", "and", "other", "modern", "medical", "equipment", "would", "be", "completed", "next", "year", ".", "dr", "abali", "said", "that", "the", "advanced", "diagnostic", "centre", "was", "being", "funded", "by", "the", "nigerian", "sovereign", "investment", "authority", "(", "nsia", ")", "and", "would", "involve", "installing", "of", "magnetic", "resonance", "imaging", "(", "mri", ")", "machine", "to", "compliment", "the", "ct", "scanner", "already", "in", "use", ".", "\"", "we", "plan", "to", "deepen", "our", "services", "to", "make", "fmc", "umuahia", "stand", "out", "as", "the", "best", "medical", "facilities", "in", "the", "south", "east", "and", "south", "south", ",", "\"", "he", "said", ",", "adding", ",", "\"", "we", "feel", "that", "improving", "our", "services", "will", "attract", "people", "from", "far", "and", "near", "\"", ".", "according", "to", "him", ",", "the", "fmc", "umuahia", "was", "selected", "for", "the", "south", "east", "zone", "in", "the", "intervention", "by", "the", "nsia", ",", "while", "the", "lagos", "university", "teaching", "hospital", "(", "luth", ")", "was", "chosen", "from", "the", "south", "west", "and", "aminu", "kano", "hospital", "for", "the", "north", ".", "\"", "this", "fmc", "has", "deepened", "services", "in", "internal", "medicine", ",", "while", "the", "dialysis", "centre", "is", "undergoing", "expansion", "with", "addition", "of", "two", "dialysis", "machine", "to", "make", "it", "six", "and", "eventually", "reach", "the", "target", "of", "10", ",", "while", "it", "also", "boasts", "of", "purpose", "-", "built", "in", "-", "vitro", "fertilisation", "laboratory", ",", "which", "is", "ranked", "among", "the", "best", "in", "the", "country", ",", "\"", "he", "stated", ".", "to", "further", "improve", "services", ",", "dr", "abali", "said", "that", "management", "has", "adopted", "the", "use", "of", "social", "media", "(", "whatsapp", ")", "platform", "to", "transmit", "scan", "results", "to", "doctors", ",", "thereby", "giving", "the", "76", "full", "time", "consultants", ",", "including", "three", "neurosurgeons", "at", "the", "fmc", "umuahia", "opportunity", "to", "give", "their", "best", "in", "treating", "patients", ".", "he", "said", "that", "he", "developed", "the", "passion", "to", "turn", "fmc", "umuahia", "into", "a", "medical", "haven", "when", "he", "was", "undergoing", "five", "months", "medical", "care", "in", "the", "united", "kingdom", ",", "following", "an", "assassination", "attempt", "in", "october", "2011", "when", "armed", "men", "shot", "him", ".", "\"", "i", "promised", "god", "that", "i", "will", "replicate", "the", "medical", "facilities", "i", "saw", "there", "(", "uk", ")", ",", "\"", "he", "said", ",", "adding", "\"", "if", "we", "get", "all", "that", "we", "ask", "for", ",", "there", "is", "really", "no", "limit", "to", "what", "we", "can", "go", "in", "providing", "world", "class", "medical", "care", "at", "fmc", "umuahia", ",", "\"", "the", "md", "explained", ".", "copyright", "2016", "this", "day", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["3", "January", "2016", "Nigeria", ":", "FMC", "Umuahia", "Ripe", "to", "Become", "Teaching", "Hospital", ",", "Says", "MD", "By", "Emmanuel", "Ugwu", "With", "the", "expansion", "undergone", "in", "terms", "of", "medical", "facilities", "and", "availability", "of", "highly", "skilled", "personnel", ",", "the", "Federal", "Medical", "Centre", "(", "FMC", ")", "Umuahia", "is", "ripe", "to", "be", "upgraded", "to", "a", "teaching", "hospital", ",", "the", "medical", "director", "(", "MD", ")", ",", "Dr", "Chuku", "Abali", "had", "said", ".", "Speaking", "with", "journalists", "on", "the", "progress", "so", "far", "recorded", "and", "the", "future", "plans", "for", "the", "institution", ",", "the", "MD", "said", "the", "FMC", "which", "sits", "on", "a", "77", "hectare", "in", "the", "capital", "city", "can", "comfortably", "be", "converted", "into", "a", "teaching", "hospital", ".", "This", ",", "he", "hoped", "would", "be", "realized", "if", "Michael", "Okpara", "University", "of", "Agriculture", "Umudike", "(", "MOUAU", ")", "eventually", "gets", "the", "nod", "to", "run", "medical", "programmes", ",", "as", "planned", ".", "\"", "FMC", "is", "long", "overdue", "to", "become", "a", "teaching", "hospital", ",", "\"", "he", "asserted", ",", "adding", "that", "with", "the", "level", "of", "excellence", "it", "has", "attained", ",", "if", "more", "public", "hospitals", "could", "be", "upgraded", "to", "create", "pockets", "of", "excellence", "\"", "across", "the", "country", "it", "would", "curtail", "the", "craze", "for", "medical", "tourism", "by", "Nigerians", ",", "\"", "he", "explained", ".", "He", "stated", "that", "the", "FMC", "has", "continued", "to", "expand", "its", "services", "with", "building", "of", "new", "wards", "of", "88", "beds", "to", "increase", "the", "existing", "bed", "spaces", "from", "287", "to", "375", ",", "while", "the", "provision", "of", "advanced", "diagnostic", "centre", "and", "other", "modern", "medical", "equipment", "would", "be", "completed", "next", "year", ".", "Dr", "Abali", "said", "that", "the", "advanced", "diagnostic", "centre", "was", "being", "funded", "by", "the", "Nigerian", "Sovereign", "Investment", "Authority", "(", "NSIA", ")", "and", "would", "involve", "installing", "of", "magnetic", "resonance", "imaging", "(", "MRI", ")", "machine", "to", "compliment", "the", "CT", "scanner", "already", "in", "use", ".", "\"", "We", "plan", "to", "deepen", "our", "services", "to", "make", "FMC", "Umuahia", "stand", "out", "as", "the", "best", "medical", "facilities", "in", "the", "South", "East", "and", "South", "South", ",", "\"", "he", "said", ",", "adding", ",", "\"", "We", "feel", "that", "improving", "our", "services", "will", "attract", "people", "from", "far", "and", "near", "\"", ".", "According", "to", "him", ",", "the", "FMC", "Umuahia", "was", "selected", "for", "the", "South", "East", "zone", "in", "the", "intervention", "by", "the", "NSIA", ",", "while", "the", "Lagos", "University", "Teaching", "Hospital", "(", "LUTH", ")", "was", "chosen", "from", "the", "South", "West", "and", "Aminu", "Kano", "hospital", "for", "the", "North", ".", "\"", "This", "FMC", "has", "deepened", "services", "in", "internal", "medicine", ",", "while", "the", "dialysis", "centre", "is", "undergoing", "expansion", "with", "addition", "of", "two", "dialysis", "machine", "to", "make", "it", "six", "and", "eventually", "reach", "the", "target", "of", "10", ",", "while", "it", "also", "boasts", "of", "purpose", "-", "built", "In", "-", "Vitro", "Fertilisation", "laboratory", ",", "which", "is", "ranked", "among", "the", "best", "in", "the", "country", ",", "\"", "he", "stated", ".", "To", "further", "improve", "services", ",", "Dr", "Abali", "said", "that", "management", "has", "adopted", "the", "use", "of", "social", "media", "(", "WhatsAPP", ")", "platform", "to", "transmit", "scan", "results", "to", "doctors", ",", "thereby", "giving", "the", "76", "full", "time", "consultants", ",", "including", "three", "neurosurgeons", "at", "the", "FMC", "Umuahia", "opportunity", "to", "give", "their", "best", "in", "treating", "patients", ".", "He", "said", "that", "he", "developed", "the", "passion", "to", "turn", "FMC", "Umuahia", "into", "a", "medical", "haven", "when", "he", "was", "undergoing", "five", "months", "medical", "care", "in", "the", "United", "Kingdom", ",", "following", "an", "assassination", "attempt", "in", "October", "2011", "when", "armed", "men", "shot", "him", ".", "\"", "I", "promised", "God", "that", "I", "will", "replicate", "the", "medical", "facilities", "I", "saw", "there", "(", "UK", ")", ",", "\"", "he", "said", ",", "adding", "\"", "If", "we", "get", "all", "that", "we", "ask", "for", ",", "there", "is", "really", "no", "limit", "to", "what", "we", "can", "go", "in", "providing", "world", "class", "medical", "care", "at", "FMC", "Umuahia", ",", "\"", "the", "MD", "explained", ".", "Copyright", "2016", "This", "Day", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/04/201601040035.html"}, "content_strict": {"text": "

By Emmanuel Ugwu

With the expansion undergone in terms of medical facilities and availability of highly skilled personnel, the Federal Medical Centre (FMC) Umuahia is ripe to be upgraded to a teaching hospital, the medical director (MD), Dr Chuku Abali had said.

Speaking with journalists on the progress so far recorded and the future plans for the institution, the MD said the FMC which sits on a 77 hectare in the capital city can comfortably be converted into a teaching hospital. This, he hoped would be realized if Michael Okpara University of Agriculture Umudike (MOUAU) eventually gets the nod to run medical programmes, as planned.

\"FMC is long overdue to become a teaching hospital,\" he asserted, adding that with the level of excellence it has attained, if more public hospitals could be upgraded to create pockets of excellence\" across the country it would curtail the craze for medical tourism by Nigerians,\" he explained.

He stated that the FMC has continued to expand its services with building of new wards of 88 beds to increase the existing bed spaces from 287 to 375, while the provision of advanced diagnostic centre and other modern medical equipment would be completed next year.

Dr Abali said that the advanced diagnostic centre was being funded by the Nigerian Sovereign Investment Authority (NSIA) and would involve installing of magnetic resonance imaging (MRI) machine to compliment the CT scanner already in use.

\"We plan to deepen our services to make FMC Umuahia stand out as the best medical facilities in the South East and South South,\" he said, adding, \"We feel that improving our services will attract people from far and near\".

According to him, the FMC Umuahia was selected for the South East zone in the intervention by the NSIA, while the Lagos University Teaching Hospital (LUTH) was chosen from the South West and Aminu Kano hospital for the North.

\"This FMC has deepened services in internal medicine, while the dialysis centre is undergoing expansion with addition of two dialysis machine to make it six and eventually reach the target of 10, while it also boasts of purpose-built In-Vitro Fertilisation laboratory, which is ranked among the best in the country,\" he stated.

To further improve services, Dr Abali said that management has adopted the use of social media (WhatsAPP) platform to transmit scan results to doctors, thereby giving the 76 full time consultants, including three neurosurgeons at the FMC Umuahia opportunity to give their best in treating patients. He said that he developed the passion to turn FMC Umuahia into a medical haven when he was undergoing five months medical care in the United Kingdom, following an assassination attempt in October 2011 when armed men shot him.

\"I promised God that I will replicate the medical facilities I saw there (UK),\" he said, adding \"If we get all that we ask for, there is really no limit to what we can go in providing world class medical care at FMC Umuahia,\" the MD explained.

", "simple_tokens": ["by", "emmanuel", "ugwu", "with", "the", "expansion", "undergone", "in", "terms", "of", "medical", "facilities", "and", "availability", "of", "highly", "skilled", "personnel", ",", "the", "federal", "medical", "centre", "(", "fmc", ")", "umuahia", "is", "ripe", "to", "be", "upgraded", "to", "a", "teaching", "hospital", ",", "the", "medical", "director", "(", "md", ")", ",", "dr", "chuku", "abali", "had", "said", ".", "speaking", "with", "journalists", "on", "the", "progress", "so", "far", "recorded", "and", "the", "future", "plans", "for", "the", "institution", ",", "the", "md", "said", "the", "fmc", "which", "sits", "on", "a", "77", "hectare", "in", "the", "capital", "city", "can", "comfortably", "be", "converted", "into", "a", "teaching", "hospital", ".", "this", ",", "he", "hoped", "would", "be", "realized", "if", "michael", "okpara", "university", "of", "agriculture", "umudike", "(", "mouau", ")", "eventually", "gets", "the", "nod", "to", "run", "medical", "programmes", ",", "as", "planned", ".", "\"", "fmc", "is", "long", "overdue", "to", "become", "a", "teaching", "hospital", ",", "\"", "he", "asserted", ",", "adding", "that", "with", "the", "level", "of", "excellence", "it", "has", "attained", ",", "if", "more", "public", "hospitals", "could", "be", "upgraded", "to", "create", "pockets", "of", "excellence", "\"", "across", "the", "country", "it", "would", "curtail", "the", "craze", "for", "medical", "tourism", "by", "nigerians", ",", "\"", "he", "explained", ".", "he", "stated", "that", "the", "fmc", "has", "continued", "to", "expand", "its", "services", "with", "building", "of", "new", "wards", "of", "88", "beds", "to", "increase", "the", "existing", "bed", "spaces", "from", "287", "to", "375", ",", "while", "the", "provision", "of", "advanced", "diagnostic", "centre", "and", "other", "modern", "medical", "equipment", "would", "be", "completed", "next", "year", ".", "dr", "abali", "said", "that", "the", "advanced", "diagnostic", "centre", "was", "being", "funded", "by", "the", "nigerian", "sovereign", "investment", "authority", "(", "nsia", ")", "and", "would", "involve", "installing", "of", "magnetic", "resonance", "imaging", "(", "mri", ")", "machine", "to", "compliment", "the", "ct", "scanner", "already", "in", "use", ".", "\"", "we", "plan", "to", "deepen", "our", "services", "to", "make", "fmc", "umuahia", "stand", "out", "as", "the", "best", "medical", "facilities", "in", "the", "south", "east", "and", "south", "south", ",", "\"", "he", "said", ",", "adding", ",", "\"", "we", "feel", "that", "improving", "our", "services", "will", "attract", "people", "from", "far", "and", "near", "\"", ".", "according", "to", "him", ",", "the", "fmc", "umuahia", "was", "selected", "for", "the", "south", "east", "zone", "in", "the", "intervention", "by", "the", "nsia", ",", "while", "the", "lagos", "university", "teaching", "hospital", "(", "luth", ")", "was", "chosen", "from", "the", "south", "west", "and", "aminu", "kano", "hospital", "for", "the", "north", ".", "\"", "this", "fmc", "has", "deepened", "services", "in", "internal", "medicine", ",", "while", "the", "dialysis", "centre", "is", "undergoing", "expansion", "with", "addition", "of", "two", "dialysis", "machine", "to", "make", "it", "six", "and", "eventually", "reach", "the", "target", "of", "10", ",", "while", "it", "also", "boasts", "of", "purpose", "-", "built", "in", "-", "vitro", "fertilisation", "laboratory", ",", "which", "is", "ranked", "among", "the", "best", "in", "the", "country", ",", "\"", "he", "stated", ".", "to", "further", "improve", "services", ",", "dr", "abali", "said", "that", "management", "has", "adopted", "the", "use", "of", "social", "media", "(", "whatsapp", ")", "platform", "to", "transmit", "scan", "results", "to", "doctors", ",", "thereby", "giving", "the", "76", "full", "time", "consultants", ",", "including", "three", "neurosurgeons", "at", "the", "fmc", "umuahia", "opportunity", "to", "give", "their", "best", "in", "treating", "patients", ".", "he", "said", "that", "he", "developed", "the", "passion", "to", "turn", "fmc", "umuahia", "into", "a", "medical", "haven", "when", "he", "was", "undergoing", "five", "months", "medical", "care", "in", "the", "united", "kingdom", ",", "following", "an", "assassination", "attempt", "in", "october", "2011", "when", "armed", "men", "shot", "him", ".", "\"", "i", "promised", "god", "that", "i", "will", "replicate", "the", "medical", "facilities", "i", "saw", "there", "(", "uk", ")", ",", "\"", "he", "said", ",", "adding", "\"", "if", "we", "get", "all", "that", "we", "ask", "for", ",", "there", "is", "really", "no", "limit", "to", "what", "we", "can", "go", "in", "providing", "world", "class", "medical", "care", "at", "fmc", "umuahia", ",", "\"", "the", "md", "explained", "."], "simple_tokens_original_case": ["By", "Emmanuel", "Ugwu", "With", "the", "expansion", "undergone", "in", "terms", "of", "medical", "facilities", "and", "availability", "of", "highly", "skilled", "personnel", ",", "the", "Federal", "Medical", "Centre", "(", "FMC", ")", "Umuahia", "is", "ripe", "to", "be", "upgraded", "to", "a", "teaching", "hospital", ",", "the", "medical", "director", "(", "MD", ")", ",", "Dr", "Chuku", "Abali", "had", "said", ".", "Speaking", "with", "journalists", "on", "the", "progress", "so", "far", "recorded", "and", "the", "future", "plans", "for", "the", "institution", ",", "the", "MD", "said", "the", "FMC", "which", "sits", "on", "a", "77", "hectare", "in", "the", "capital", "city", "can", "comfortably", "be", "converted", "into", "a", "teaching", "hospital", ".", "This", ",", "he", "hoped", "would", "be", "realized", "if", "Michael", "Okpara", "University", "of", "Agriculture", "Umudike", "(", "MOUAU", ")", "eventually", "gets", "the", "nod", "to", "run", "medical", "programmes", ",", "as", "planned", ".", "\"", "FMC", "is", "long", "overdue", "to", "become", "a", "teaching", "hospital", ",", "\"", "he", "asserted", ",", "adding", "that", "with", "the", "level", "of", "excellence", "it", "has", "attained", ",", "if", "more", "public", "hospitals", "could", "be", "upgraded", "to", "create", "pockets", "of", "excellence", "\"", "across", "the", "country", "it", "would", "curtail", "the", "craze", "for", "medical", "tourism", "by", "Nigerians", ",", "\"", "he", "explained", ".", "He", "stated", "that", "the", "FMC", "has", "continued", "to", "expand", "its", "services", "with", "building", "of", "new", "wards", "of", "88", "beds", "to", "increase", "the", "existing", "bed", "spaces", "from", "287", "to", "375", ",", "while", "the", "provision", "of", "advanced", "diagnostic", "centre", "and", "other", "modern", "medical", "equipment", "would", "be", "completed", "next", "year", ".", "Dr", "Abali", "said", "that", "the", "advanced", "diagnostic", "centre", "was", "being", "funded", "by", "the", "Nigerian", "Sovereign", "Investment", "Authority", "(", "NSIA", ")", "and", "would", "involve", "installing", "of", "magnetic", "resonance", "imaging", "(", "MRI", ")", "machine", "to", "compliment", "the", "CT", "scanner", "already", "in", "use", ".", "\"", "We", "plan", "to", "deepen", "our", "services", "to", "make", "FMC", "Umuahia", "stand", "out", "as", "the", "best", "medical", "facilities", "in", "the", "South", "East", "and", "South", "South", ",", "\"", "he", "said", ",", "adding", ",", "\"", "We", "feel", "that", "improving", "our", "services", "will", "attract", "people", "from", "far", "and", "near", "\"", ".", "According", "to", "him", ",", "the", "FMC", "Umuahia", "was", "selected", "for", "the", "South", "East", "zone", "in", "the", "intervention", "by", "the", "NSIA", ",", "while", "the", "Lagos", "University", "Teaching", "Hospital", "(", "LUTH", ")", "was", "chosen", "from", "the", "South", "West", "and", "Aminu", "Kano", "hospital", "for", "the", "North", ".", "\"", "This", "FMC", "has", "deepened", "services", "in", "internal", "medicine", ",", "while", "the", "dialysis", "centre", "is", "undergoing", "expansion", "with", "addition", "of", "two", "dialysis", "machine", "to", "make", "it", "six", "and", "eventually", "reach", "the", "target", "of", "10", ",", "while", "it", "also", "boasts", "of", "purpose", "-", "built", "In", "-", "Vitro", "Fertilisation", "laboratory", ",", "which", "is", "ranked", "among", "the", "best", "in", "the", "country", ",", "\"", "he", "stated", ".", "To", "further", "improve", "services", ",", "Dr", "Abali", "said", "that", "management", "has", "adopted", "the", "use", "of", "social", "media", "(", "WhatsAPP", ")", "platform", "to", "transmit", "scan", "results", "to", "doctors", ",", "thereby", "giving", "the", "76", "full", "time", "consultants", ",", "including", "three", "neurosurgeons", "at", "the", "FMC", "Umuahia", "opportunity", "to", "give", "their", "best", "in", "treating", "patients", ".", "He", "said", "that", "he", "developed", "the", "passion", "to", "turn", "FMC", "Umuahia", "into", "a", "medical", "haven", "when", "he", "was", "undergoing", "five", "months", "medical", "care", "in", "the", "United", "Kingdom", ",", "following", "an", "assassination", "attempt", "in", "October", "2011", "when", "armed", "men", "shot", "him", ".", "\"", "I", "promised", "God", "that", "I", "will", "replicate", "the", "medical", "facilities", "I", "saw", "there", "(", "UK", ")", ",", "\"", "he", "said", ",", "adding", "\"", "If", "we", "get", "all", "that", "we", "ask", "for", ",", "there", "is", "really", "no", "limit", "to", "what", "we", "can", "go", "in", "providing", "world", "class", "medical", "care", "at", "FMC", "Umuahia", ",", "\"", "the", "MD", "explained", "."]}, "title": {"text": " Nigeria: FMC Umuahia Ripe to Become Teaching Hospital, Says MD - allAfrica.com ", "simple_tokens": ["nigeria", ":", "fmc", "umuahia", "ripe", "to", "become", "teaching", "hospital", ",", "says", "md", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "FMC", "Umuahia", "Ripe", "to", "Become", "Teaching", "Hospital", ",", "Says", "MD", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:11.822176", "@etk_process_time": 0.5137910842895508, "@etk_start_time": "2018-06-07T17:34:11.308385"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: FMC Umuahia Ripe to Become Teaching Hospital, Says MD - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 3 January 2016\n
\n \n \n

\n Nigeria: FMC Umuahia Ripe to Become Teaching Hospital, Says MD\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Emmanuel Ugwu\n \n

\n With the expansion undergone in terms of medical facilities and availability of highly skilled personnel, the Federal Medical Centre (FMC) Umuahia is ripe to be upgraded to a teaching hospital, the medical director (MD), Dr Chuku Abali had said.\n

\n

\n Speaking with journalists on the progress so far recorded and the future plans for the institution, the MD said the FMC which sits on a 77 hectare in the capital city can comfortably be converted into a teaching hospital. This, he hoped would be realized if Michael Okpara University of Agriculture Umudike (MOUAU) eventually gets the nod to run medical programmes, as planned.\n

\n

\n \"FMC is long overdue to become a teaching hospital,\" he asserted, adding that with the level of excellence it has attained, if more public hospitals could be upgraded to create pockets of excellence\" across the country it would curtail the craze for medical tourism by Nigerians,\" he explained.\n

\n

\n He stated that the FMC has continued to expand its services with building of new wards of 88 beds to increase the existing bed spaces from 287 to 375, while the provision of advanced diagnostic centre and other modern medical equipment would be completed next year.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n

\n Dr Abali said that the advanced diagnostic centre was being funded by the Nigerian Sovereign Investment Authority (NSIA) and would involve installing of magnetic resonance imaging (MRI) machine to compliment the CT scanner already in use.\n

\n
\n
\n
\n
\n

\n \"We plan to deepen our services to make FMC Umuahia stand out as the best medical facilities in the South East and South South,\" he said, adding, \"We feel that improving our services will attract people from far and near\".\n

\n

\n According to him, the FMC Umuahia was selected for the South East zone in the intervention by the NSIA, while the Lagos University Teaching Hospital (LUTH) was chosen from the South West and Aminu Kano hospital for the North.\n

\n

\n \"This FMC has deepened services in internal medicine, while the dialysis centre is undergoing expansion with addition of two dialysis machine to make it six and eventually reach the target of 10, while it also boasts of purpose-built In-Vitro Fertilisation laboratory, which is ranked among the best in the country,\" he stated.\n

\n
\n
\n
\n
\n
\n
\n
\n \n \n
\n \n
\n \n
\n \n

\n To further improve services, Dr Abali said that management has adopted the use of social media (WhatsAPP) platform to transmit scan results to doctors, thereby giving the 76 full time consultants, including three neurosurgeons at the FMC Umuahia opportunity to give their best in treating patients. He said that he developed the passion to turn FMC Umuahia into a medical haven when he was undergoing five months medical care in the United Kingdom, following an assassination attempt in October 2011 when armed men shot him.\n

\n

\n \"I promised God that I will replicate the medical facilities I saw there (UK),\" he said, adding \"If we get all that we ask for, there is really no limit to what we can go in providing world class medical care at FMC Umuahia,\" the MD explained.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 This Day. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2", "document_id": "318C92196A63372FEF34238F563B06CA6A8A5B2D9B6F11E63A2E37648415E0B2"} +{"url": "http://www.ce_news_article.org/2016/01/04/201601040036.html", "knowledge_graph": {"group": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 411, "end": 412, "input": "tokens", "text": "group however called on all Bayelsans and supporters of Governor Seriake "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsans"}, {"source": {"segment": "content_relaxed", "context": {"start": 432, "end": 433, "input": "tokens", "text": "group however called on all Bayelsans and supporters of Governor Seriake "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsans"}], "key": "bayelsans", "value": "Bayelsans"}], "description": [{"confidence": 1, "provenance": [{"source": {"segment": "content_strict", "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "method": "rearrange_description"}], "key": "description", "value": "

By Blessing Obineche

The Bayelsa State Justice Forum, has taken a swipe at the All Progressives Congress (APC), over the claim, that the Governor of Bayelsa and candidate of the Peoples Democratic Party (PDP), offered a bribe of two hundred million Naira, to the State's Resident Electoral Commissioner (REC), Mr. Baritor Kpagih to manipulate the outcome of the December 2015 governorship election in the State, in favor of the PDP.

The Forum through its Coordinator, Pastor Markson Konugha in a release sent to journalists in Yenegoa, described as false, spurious and baseless, the alarmist cry by the APC, accusing the REC and Governor Seriake Dickson, in the alleged scandal.

Reacting to the allegation, Pastor Konugha who laughed off the APC allegation being made through one of its front in INEC, Mr Francis Asmakia Tedobserved that while it was not necessary to join issues with the APC, a party which has already lost the governorship election in Bayelsa State, and is reputed to thrive on propaganda and blackmail, it was pertinent to set the records straight so that the unsuspecting public is not misled and misinformed by the APC.

The Group's Coordinator said the bribe story only exists in the imagination of its authors. He challenged the APC to present evidence of how the alleged sum of N200m was handed to the INEC's REC by Governor Seriake Dickson, through whom, and by what channel it was transmitted.

The group berated the APC for what he termed its provocative acts of mudslinging, in a desperate bid to manipulate the outcome of the rescheduled elections in the Southern Ijaw Local government area of the State, scheduled for January 9th, 2016, which it said, will not work.

The group also disclosed that it was aware that investigation is ongoing into the claim by Mr. Baritor Kpagih that some influential politicians attempted to bribe him before the December 2015 Governorship election, as information has it already, that the APC governorship candidate, Chief Timipre Sylva did actually approached the REC, through his wife with a cash sum of One million US Dollars which was out rightly rejected by Mrs. Kpaghi.

The group however called on all Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue to support the PDP administration in the state to deliver on its agenda of economic development, job and wealth creation, as well as industrialisation.

"}], "location_non_gpe": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 302, "end": 307, "input": "tokens", "text": "of the rescheduled elections in the Southern Ijaw Local government area of the State , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Southern Ijaw Local government"}, {"source": {"segment": "content_relaxed", "context": {"start": 323, "end": 328, "input": "tokens", "text": "of the rescheduled elections in the Southern Ijaw Local government area of the State , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Southern Ijaw Local government"}], "key": "the southern ijaw local government", "value": "the Southern Ijaw Local government"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 576, "end": 577, "input": "tokens", "text": "their own content , which AllAfrica does not have the legal "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}, {"source": {"segment": "content_relaxed", "context": {"start": 604, "end": 605, "input": "tokens", "text": "are produced or commissioned by AllAfrica . To address comments or "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}], "title": [{"confidence": 1, "provenance": [{"source": {"segment": "html", "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "method": "rearrange_title"}], "key": "title", "value": " Nigeria: Bayelsa Election - Sylva Not Dickson, Attempted to Bribe Bayelsa REC, Group as Alleges - allAfrica.com "}], "money": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 46, "end": 49, "input": "tokens", "text": ", offered a bribe of two hundred million Naira , to the State "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "two hundred million"}, {"source": {"segment": "content_relaxed", "context": {"start": 67, "end": 70, "input": "tokens", "text": ", offered a bribe of two hundred million Naira , to the State "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "two hundred million"}], "key": "two hundred million", "value": "two hundred million"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 391, "end": 393, "input": "tokens", "text": "with a cash sum of One million US Dollars which was out "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "One million"}, {"source": {"segment": "content_relaxed", "context": {"start": 412, "end": 414, "input": "tokens", "text": "with a cash sum of One million US Dollars which was out "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "One million"}], "key": "one million", "value": "One million"}], "organization_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 3, "end": 8, "input": "tokens", "text": "By Blessing Obineche The Bayelsa State Justice Forum , has taken a swipe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bayelsa State Justice Forum"}, {"source": {"segment": "content_relaxed", "context": {"start": 24, "end": 29, "input": "tokens", "text": "as Alleges By Blessing Obineche The Bayelsa State Justice Forum , has taken a swipe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Bayelsa State Justice Forum"}], "key": "the bayelsa state justice forum", "value": "The Bayelsa State Justice Forum"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 15, "end": 18, "input": "tokens", "text": "taken a swipe at the All Progressives Congress ( APC ) , over "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}, {"source": {"segment": "content_relaxed", "context": {"start": 36, "end": 39, "input": "tokens", "text": "taken a swipe at the All Progressives Congress ( APC ) , over "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "All Progressives Congress"}], "key": "all progressives congress", "value": "All Progressives Congress"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 19, "end": 20, "input": "tokens", "text": "the All Progressives Congress ( APC ) , over the claim "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 118, "end": 119, "input": "tokens", "text": "the alarmist cry by the APC , accusing the REC and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 144, "end": 145, "input": "tokens", "text": "Konugha who laughed off the APC allegation being made through one "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 171, "end": 172, "input": "tokens", "text": "to join issues with the APC , a party which has "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 216, "end": 217, "input": "tokens", "text": "misled and misinformed by the APC . The Group ' s "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 239, "end": 240, "input": "tokens", "text": "authors . He challenged the APC to present evidence of how "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_strict", "context": {"start": 370, "end": 371, "input": "tokens", "text": "it already , that the APC governorship candidate , Chief Timipre "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 40, "end": 41, "input": "tokens", "text": "the All Progressives Congress ( APC ) , over the claim "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 139, "end": 140, "input": "tokens", "text": "the alarmist cry by the APC , accusing the REC and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 165, "end": 166, "input": "tokens", "text": "Konugha who laughed off the APC allegation being made through one "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 192, "end": 193, "input": "tokens", "text": "to join issues with the APC , a party which has "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 237, "end": 238, "input": "tokens", "text": "misled and misinformed by the APC . The Group ' s "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 260, "end": 261, "input": "tokens", "text": "authors . He challenged the APC to present evidence of how "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}, {"source": {"segment": "content_relaxed", "context": {"start": 391, "end": 392, "input": "tokens", "text": "it already , that the APC governorship candidate , Chief Timipre "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "APC"}], "key": "apc", "value": "APC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 34, "end": 38, "input": "tokens", "text": "of Bayelsa and candidate of the Peoples Democratic Party ( PDP ) , offered "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}, {"source": {"segment": "content_relaxed", "context": {"start": 55, "end": 59, "input": "tokens", "text": "of Bayelsa and candidate of the Peoples Democratic Party ( PDP ) , offered "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the Peoples Democratic Party"}], "key": "the peoples democratic party", "value": "the Peoples Democratic Party"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 39, "end": 40, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) , offered a bribe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 85, "end": 86, "input": "tokens", "text": ", in favor of the PDP . The Forum through its "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_strict", "context": {"start": 426, "end": 427, "input": "tokens", "text": "and continue to support the PDP administration in the state to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 60, "end": 61, "input": "tokens", "text": "the Peoples Democratic Party ( PDP ) , offered a bribe "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 106, "end": 107, "input": "tokens", "text": ", in favor of the PDP . The Forum through its "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}, {"source": {"segment": "content_relaxed", "context": {"start": 447, "end": 448, "input": "tokens", "text": "and continue to support the PDP administration in the state to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "PDP"}], "key": "pdp", "value": "PDP"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 53, "end": 54, "input": "tokens", "text": "million Naira , to the State ' s Resident Electoral Commissioner "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_strict", "context": {"start": 79, "end": 80, "input": "tokens", "text": "2015 governorship election in the State , in favor of the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_strict", "context": {"start": 310, "end": 311, "input": "tokens", "text": "Local government area of the State , scheduled for January 9th "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 74, "end": 75, "input": "tokens", "text": "million Naira , to the State ' s Resident Electoral Commissioner "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 100, "end": 101, "input": "tokens", "text": "2015 governorship election in the State , in favor of the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}, {"source": {"segment": "content_relaxed", "context": {"start": 331, "end": 332, "input": "tokens", "text": "Local government area of the State , scheduled for January 9th "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "State"}], "key": "state", "value": "State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 122, "end": 123, "input": "tokens", "text": "the APC , accusing the REC and Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}, {"source": {"segment": "content_strict", "context": {"start": 257, "end": 258, "input": "tokens", "text": "to the INEC ' s REC by Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}, {"source": {"segment": "content_strict", "context": {"start": 381, "end": 382, "input": "tokens", "text": "Sylva did actually approached the REC , through his wife with "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}, {"source": {"segment": "content_relaxed", "context": {"start": 143, "end": 144, "input": "tokens", "text": "the APC , accusing the REC and Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}, {"source": {"segment": "content_relaxed", "context": {"start": 278, "end": 279, "input": "tokens", "text": "to the INEC ' s REC by Governor Seriake Dickson , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}, {"source": {"segment": "content_relaxed", "context": {"start": 402, "end": 403, "input": "tokens", "text": "Sylva did actually approached the REC , through his wife with "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC"}], "key": "rec", "value": "REC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 154, "end": 155, "input": "tokens", "text": "one of its front in INEC , Mr Francis Asmakia Tedobserved "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_strict", "context": {"start": 254, "end": 255, "input": "tokens", "text": "N200m was handed to the INEC ' s REC by Governor "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 175, "end": 176, "input": "tokens", "text": "one of its front in INEC , Mr Francis Asmakia Tedobserved "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}, {"source": {"segment": "content_relaxed", "context": {"start": 275, "end": 276, "input": "tokens", "text": "N200m was handed to the INEC ' s REC by Governor "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "INEC"}], "key": "inec", "value": "INEC"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 156, "end": 160, "input": "tokens", "text": "its front in INEC , Mr Francis Asmakia Tedobserved that while it was not "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mr Francis Asmakia Tedobserved"}, {"source": {"segment": "content_relaxed", "context": {"start": 177, "end": 181, "input": "tokens", "text": "its front in INEC , Mr Francis Asmakia Tedobserved that while it was not "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Mr Francis Asmakia Tedobserved"}], "key": "mr francis asmakia tedobserved", "value": "Mr Francis Asmakia Tedobserved"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 218, "end": 220, "input": "tokens", "text": "misinformed by the APC . The Group ' s Coordinator said the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Group"}, {"source": {"segment": "content_relaxed", "context": {"start": 239, "end": 241, "input": "tokens", "text": "misinformed by the APC . The Group ' s Coordinator said the "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "The Group"}], "key": "the group", "value": "The Group"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 277, "end": 280, "input": "tokens", "text": "transmitted . The group berated the APC for what he termed its provocative "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the APC for"}, {"source": {"segment": "content_relaxed", "context": {"start": 298, "end": 301, "input": "tokens", "text": "transmitted . The group berated the APC for what he termed its provocative "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "the APC for"}], "key": "the apc for", "value": "the APC for"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 10, "end": 11, "input": "tokens", "text": "Bayelsa Election - Sylva Not Dickson , Attempted to Bribe Bayelsa "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dickson"}, {"source": {"segment": "title", "context": {"start": 7, "end": 8, "input": "tokens", "text": "Bayelsa Election - Sylva Not Dickson , Attempted to Bribe Bayelsa "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Dickson"}], "key": "dickson", "value": "Dickson"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 16, "end": 19, "input": "tokens", "text": ", Attempted to Bribe Bayelsa REC , Group as Alleges By Blessing Obineche "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC , Group"}, {"source": {"segment": "title", "context": {"start": 13, "end": 16, "input": "tokens", "text": ", Attempted to Bribe Bayelsa REC , Group as Alleges - allAfrica . "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "REC , Group"}], "key": "rec , group", "value": "REC , Group"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 479, "end": 480, "input": "tokens", "text": ". All rights reserved . Distributed by AllAfrica Global Media ( "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Distributed"}], "key": "distributed", "value": "Distributed"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 481, "end": 484, "input": "tokens", "text": "rights reserved . Distributed by AllAfrica Global Media ( allAfrica . com ) "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica Global Media"}], "key": "allafrica global media", "value": "AllAfrica Global Media"}], "city_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 30, "end": 31, "input": "tokens", "text": ", that the Governor of Bayelsa and candidate of the Peoples "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}, {"source": {"segment": "content_relaxed", "context": {"start": 51, "end": 52, "input": "tokens", "text": ", that the Governor of Bayelsa and candidate of the Peoples "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa"}], "key": "bayelsa", "value": "Bayelsa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 103, "end": 104, "input": "tokens", "text": "release sent to journalists in Yenegoa , described as false , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yenegoa"}, {"source": {"segment": "content_relaxed", "context": {"start": 124, "end": 125, "input": "tokens", "text": "release sent to journalists in Yenegoa , described as false , "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Yenegoa"}], "key": "yenegoa", "value": "Yenegoa"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 183, "end": 185, "input": "tokens", "text": "lost the governorship election in Bayelsa State , and is reputed to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}, {"source": {"segment": "content_relaxed", "context": {"start": 204, "end": 206, "input": "tokens", "text": "lost the governorship election in Bayelsa State , and is reputed to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa State"}], "key": "bayelsa state", "value": "Bayelsa State"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 249, "end": 250, "input": "tokens", "text": "how the alleged sum of N200m was handed to the INEC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "N200m"}, {"source": {"segment": "content_relaxed", "context": {"start": 270, "end": 271, "input": "tokens", "text": "how the alleged sum of N200m was handed to the INEC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "N200m"}], "key": "n200m", "value": "N200m"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 393, "end": 394, "input": "tokens", "text": "cash sum of One million US Dollars which was out rightly "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}, {"source": {"segment": "content_relaxed", "context": {"start": 414, "end": 415, "input": "tokens", "text": "cash sum of One million US Dollars which was out rightly "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "US"}], "key": "us", "value": "US"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "title", "context": {"start": 0, "end": 1, "input": "tokens", "text": " Nigeria : Bayelsa Election - Sylva "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Nigeria"}], "key": "nigeria", "value": "Nigeria"}], "person_name": [{"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 1, "end": 3, "input": "tokens", "text": "By Blessing Obineche The Bayelsa State Justice Forum "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blessing Obineche"}, {"source": {"segment": "content_relaxed", "context": {"start": 22, "end": 24, "input": "tokens", "text": ", Group as Alleges By Blessing Obineche The Bayelsa State Justice Forum "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Blessing Obineche"}], "key": "blessing obineche", "value": "Blessing Obineche"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 93, "end": 96, "input": "tokens", "text": "Forum through its Coordinator , Pastor Markson Konugha in a release sent to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pastor Markson Konugha"}, {"source": {"segment": "content_relaxed", "context": {"start": 114, "end": 117, "input": "tokens", "text": "Forum through its Coordinator , Pastor Markson Konugha in a release sent to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pastor Markson Konugha"}], "key": "pastor markson konugha", "value": "Pastor Markson Konugha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 125, "end": 127, "input": "tokens", "text": "accusing the REC and Governor Seriake Dickson , in the alleged scandal "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}, {"source": {"segment": "content_strict", "context": {"start": 260, "end": 262, "input": "tokens", "text": "' s REC by Governor Seriake Dickson , through whom , and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}, {"source": {"segment": "content_strict", "context": {"start": 416, "end": 418, "input": "tokens", "text": "Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}, {"source": {"segment": "content_relaxed", "context": {"start": 146, "end": 148, "input": "tokens", "text": "accusing the REC and Governor Seriake Dickson , in the alleged scandal "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}, {"source": {"segment": "content_relaxed", "context": {"start": 281, "end": 283, "input": "tokens", "text": "' s REC by Governor Seriake Dickson , through whom , and "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}, {"source": {"segment": "content_relaxed", "context": {"start": 437, "end": 439, "input": "tokens", "text": "Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Seriake Dickson"}], "key": "seriake dickson", "value": "Seriake Dickson"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 138, "end": 140, "input": "tokens", "text": "Reacting to the allegation , Pastor Konugha who laughed off the APC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pastor Konugha"}, {"source": {"segment": "content_relaxed", "context": {"start": 159, "end": 161, "input": "tokens", "text": "Reacting to the allegation , Pastor Konugha who laughed off the APC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Pastor Konugha"}], "key": "pastor konugha", "value": "Pastor Konugha"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 345, "end": 347, "input": "tokens", "text": "the claim by Mr . Baritor Kpagih that some influential politicians attempted "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Baritor Kpagih"}, {"source": {"segment": "content_relaxed", "context": {"start": 366, "end": 368, "input": "tokens", "text": "the claim by Mr . Baritor Kpagih that some influential politicians attempted "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Baritor Kpagih"}], "key": "baritor kpagih", "value": "Baritor Kpagih"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 375, "end": 377, "input": "tokens", "text": "APC governorship candidate , Chief Timipre Sylva did actually approached the REC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylva"}, {"source": {"segment": "content_relaxed", "context": {"start": 396, "end": 398, "input": "tokens", "text": "APC governorship candidate , Chief Timipre Sylva did actually approached the REC "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Timipre Sylva"}], "key": "timipre sylva", "value": "Timipre Sylva"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_strict", "context": {"start": 403, "end": 404, "input": "tokens", "text": "rightly rejected by Mrs . Kpaghi . The group however called "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kpaghi"}, {"source": {"segment": "content_relaxed", "context": {"start": 424, "end": 425, "input": "tokens", "text": "rightly rejected by Mrs . Kpaghi . The group however called "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Kpaghi"}], "key": "kpaghi", "value": "Kpaghi"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 5, "end": 9, "input": "tokens", "text": "4 January 2016 Nigeria : Bayelsa Election - Sylva Not Dickson , Attempted to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa Election - Sylva"}, {"source": {"segment": "title", "context": {"start": 2, "end": 6, "input": "tokens", "text": "Nigeria : Bayelsa Election - Sylva Not Dickson , Attempted to "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "Bayelsa Election - Sylva"}], "key": "bayelsa election - sylva", "value": "Bayelsa Election - Sylva"}, {"confidence": 1.0, "provenance": [{"source": {"segment": "content_relaxed", "context": {"start": 516, "end": 517, "input": "tokens", "text": "material , click here . AllAfrica publishes around 900 reports a "}, "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"}, "confidence": {"extraction": 1.0}, "method": "extract_using_default_spacy", "extracted_value": "AllAfrica"}], "key": "allafrica", "value": "AllAfrica"}]}, "content_extraction": {"content_relaxed": {"text": "

4 January 2016

Nigeria: Bayelsa Election - Sylva Not Dickson, Attempted to Bribe Bayelsa REC, Group as Alleges

By Blessing Obineche

The Bayelsa State Justice Forum, has taken a swipe at the All Progressives Congress (APC), over the claim, that the Governor of Bayelsa and candidate of the Peoples Democratic Party (PDP), offered a bribe of two hundred million Naira, to the State's Resident Electoral Commissioner (REC), Mr. Baritor Kpagih to manipulate the outcome of the December 2015 governorship election in the State, in favor of the PDP.

The Forum through its Coordinator, Pastor Markson Konugha in a release sent to journalists in Yenegoa, described as false, spurious and baseless, the alarmist cry by the APC, accusing the REC and Governor Seriake Dickson, in the alleged scandal.

Reacting to the allegation, Pastor Konugha who laughed off the APC allegation being made through one of its front in INEC, Mr Francis Asmakia Tedobserved that while it was not necessary to join issues with the APC, a party which has already lost the governorship election in Bayelsa State, and is reputed to thrive on propaganda and blackmail, it was pertinent to set the records straight so that the unsuspecting public is not misled and misinformed by the APC.

The Group's Coordinator said the bribe story only exists in the imagination of its authors. He challenged the APC to present evidence of how the alleged sum of N200m was handed to the INEC's REC by Governor Seriake Dickson, through whom, and by what channel it was transmitted.

The group berated the APC for what he termed its provocative acts of mudslinging, in a desperate bid to manipulate the outcome of the rescheduled elections in the Southern Ijaw Local government area of the State, scheduled for January 9th, 2016, which it said, will not work.

The group also disclosed that it was aware that investigation is ongoing into the claim by Mr. Baritor Kpagih that some influential politicians attempted to bribe him before the December 2015 Governorship election, as information has it already, that the APC governorship candidate, Chief Timipre Sylva did actually approached the REC, through his wife with a cash sum of One million US Dollars which was out rightly rejected by Mrs. Kpaghi.

The group however called on all Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue to support the PDP administration in the state to deliver on its agenda of economic development, job and wealth creation, as well as industrialisation.

Copyright

2016 Leadership. All rights reserved. Distributed by AllAfrica Global Media (

allAfrica.com

).
To contact the copyright holder directly for corrections \u00e2\u20ac\u201d or for permission to republish or make other authorized use of this material,

click here.

AllAfrica publishes around 900 reports a day from more than

140 news organizations

and over

500 other institutions and individuals

, representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.

Articles and commentaries that identify allAfrica.com as the publisher are

produced or commissioned by AllAfrica

. To address comments or complaints, please

Contact us

.

Follow AllAfrica

", "simple_tokens": ["4", "january", "2016", "nigeria", ":", "bayelsa", "election", "-", "sylva", "not", "dickson", ",", "attempted", "to", "bribe", "bayelsa", "rec", ",", "group", "as", "alleges", "by", "blessing", "obineche", "the", "bayelsa", "state", "justice", "forum", ",", "has", "taken", "a", "swipe", "at", "the", "all", "progressives", "congress", "(", "apc", ")", ",", "over", "the", "claim", ",", "that", "the", "governor", "of", "bayelsa", "and", "candidate", "of", "the", "peoples", "democratic", "party", "(", "pdp", ")", ",", "offered", "a", "bribe", "of", "two", "hundred", "million", "naira", ",", "to", "the", "state", "'", "s", "resident", "electoral", "commissioner", "(", "rec", ")", ",", "mr", ".", "baritor", "kpagih", "to", "manipulate", "the", "outcome", "of", "the", "december", "2015", "governorship", "election", "in", "the", "state", ",", "in", "favor", "of", "the", "pdp", ".", "the", "forum", "through", "its", "coordinator", ",", "pastor", "markson", "konugha", "in", "a", "release", "sent", "to", "journalists", "in", "yenegoa", ",", "described", "as", "false", ",", "spurious", "and", "baseless", ",", "the", "alarmist", "cry", "by", "the", "apc", ",", "accusing", "the", "rec", "and", "governor", "seriake", "dickson", ",", "in", "the", "alleged", "scandal", ".", "reacting", "to", "the", "allegation", ",", "pastor", "konugha", "who", "laughed", "off", "the", "apc", "allegation", "being", "made", "through", "one", "of", "its", "front", "in", "inec", ",", "mr", "francis", "asmakia", "tedobserved", "that", "while", "it", "was", "not", "necessary", "to", "join", "issues", "with", "the", "apc", ",", "a", "party", "which", "has", "already", "lost", "the", "governorship", "election", "in", "bayelsa", "state", ",", "and", "is", "reputed", "to", "thrive", "on", "propaganda", "and", "blackmail", ",", "it", "was", "pertinent", "to", "set", "the", "records", "straight", "so", "that", "the", "unsuspecting", "public", "is", "not", "misled", "and", "misinformed", "by", "the", "apc", ".", "the", "group", "'", "s", "coordinator", "said", "the", "bribe", "story", "only", "exists", "in", "the", "imagination", "of", "its", "authors", ".", "he", "challenged", "the", "apc", "to", "present", "evidence", "of", "how", "the", "alleged", "sum", "of", "n200m", "was", "handed", "to", "the", "inec", "'", "s", "rec", "by", "governor", "seriake", "dickson", ",", "through", "whom", ",", "and", "by", "what", "channel", "it", "was", "transmitted", ".", "the", "group", "berated", "the", "apc", "for", "what", "he", "termed", "its", "provocative", "acts", "of", "mudslinging", ",", "in", "a", "desperate", "bid", "to", "manipulate", "the", "outcome", "of", "the", "rescheduled", "elections", "in", "the", "southern", "ijaw", "local", "government", "area", "of", "the", "state", ",", "scheduled", "for", "january", "9th", ",", "2016", ",", "which", "it", "said", ",", "will", "not", "work", ".", "the", "group", "also", "disclosed", "that", "it", "was", "aware", "that", "investigation", "is", "ongoing", "into", "the", "claim", "by", "mr", ".", "baritor", "kpagih", "that", "some", "influential", "politicians", "attempted", "to", "bribe", "him", "before", "the", "december", "2015", "governorship", "election", ",", "as", "information", "has", "it", "already", ",", "that", "the", "apc", "governorship", "candidate", ",", "chief", "timipre", "sylva", "did", "actually", "approached", "the", "rec", ",", "through", "his", "wife", "with", "a", "cash", "sum", "of", "one", "million", "us", "dollars", "which", "was", "out", "rightly", "rejected", "by", "mrs", ".", "kpaghi", ".", "the", "group", "however", "called", "on", "all", "bayelsans", "and", "supporters", "of", "governor", "seriake", "dickson", "to", "remain", "steadfast", "and", "continue", "to", "support", "the", "pdp", "administration", "in", "the", "state", "to", "deliver", "on", "its", "agenda", "of", "economic", "development", ",", "job", "and", "wealth", "creation", ",", "as", "well", "as", "industrialisation", ".", "copyright", "2016", "leadership", ".", "all", "rights", "reserved", ".", "distributed", "by", "allafrica", "global", "media", "(", "allafrica", ".", "com", ")", ".", "to", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "allafrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "we", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "allafrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "articles", "and", "commentaries", "that", "identify", "allafrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "allafrica", ".", "to", "address", "comments", "or", "complaints", ",", "please", "contact", "us", ".", "follow", "allafrica"], "simple_tokens_original_case": ["4", "January", "2016", "Nigeria", ":", "Bayelsa", "Election", "-", "Sylva", "Not", "Dickson", ",", "Attempted", "to", "Bribe", "Bayelsa", "REC", ",", "Group", "as", "Alleges", "By", "Blessing", "Obineche", "The", "Bayelsa", "State", "Justice", "Forum", ",", "has", "taken", "a", "swipe", "at", "the", "All", "Progressives", "Congress", "(", "APC", ")", ",", "over", "the", "claim", ",", "that", "the", "Governor", "of", "Bayelsa", "and", "candidate", "of", "the", "Peoples", "Democratic", "Party", "(", "PDP", ")", ",", "offered", "a", "bribe", "of", "two", "hundred", "million", "Naira", ",", "to", "the", "State", "'", "s", "Resident", "Electoral", "Commissioner", "(", "REC", ")", ",", "Mr", ".", "Baritor", "Kpagih", "to", "manipulate", "the", "outcome", "of", "the", "December", "2015", "governorship", "election", "in", "the", "State", ",", "in", "favor", "of", "the", "PDP", ".", "The", "Forum", "through", "its", "Coordinator", ",", "Pastor", "Markson", "Konugha", "in", "a", "release", "sent", "to", "journalists", "in", "Yenegoa", ",", "described", "as", "false", ",", "spurious", "and", "baseless", ",", "the", "alarmist", "cry", "by", "the", "APC", ",", "accusing", "the", "REC", "and", "Governor", "Seriake", "Dickson", ",", "in", "the", "alleged", "scandal", ".", "Reacting", "to", "the", "allegation", ",", "Pastor", "Konugha", "who", "laughed", "off", "the", "APC", "allegation", "being", "made", "through", "one", "of", "its", "front", "in", "INEC", ",", "Mr", "Francis", "Asmakia", "Tedobserved", "that", "while", "it", "was", "not", "necessary", "to", "join", "issues", "with", "the", "APC", ",", "a", "party", "which", "has", "already", "lost", "the", "governorship", "election", "in", "Bayelsa", "State", ",", "and", "is", "reputed", "to", "thrive", "on", "propaganda", "and", "blackmail", ",", "it", "was", "pertinent", "to", "set", "the", "records", "straight", "so", "that", "the", "unsuspecting", "public", "is", "not", "misled", "and", "misinformed", "by", "the", "APC", ".", "The", "Group", "'", "s", "Coordinator", "said", "the", "bribe", "story", "only", "exists", "in", "the", "imagination", "of", "its", "authors", ".", "He", "challenged", "the", "APC", "to", "present", "evidence", "of", "how", "the", "alleged", "sum", "of", "N200m", "was", "handed", "to", "the", "INEC", "'", "s", "REC", "by", "Governor", "Seriake", "Dickson", ",", "through", "whom", ",", "and", "by", "what", "channel", "it", "was", "transmitted", ".", "The", "group", "berated", "the", "APC", "for", "what", "he", "termed", "its", "provocative", "acts", "of", "mudslinging", ",", "in", "a", "desperate", "bid", "to", "manipulate", "the", "outcome", "of", "the", "rescheduled", "elections", "in", "the", "Southern", "Ijaw", "Local", "government", "area", "of", "the", "State", ",", "scheduled", "for", "January", "9th", ",", "2016", ",", "which", "it", "said", ",", "will", "not", "work", ".", "The", "group", "also", "disclosed", "that", "it", "was", "aware", "that", "investigation", "is", "ongoing", "into", "the", "claim", "by", "Mr", ".", "Baritor", "Kpagih", "that", "some", "influential", "politicians", "attempted", "to", "bribe", "him", "before", "the", "December", "2015", "Governorship", "election", ",", "as", "information", "has", "it", "already", ",", "that", "the", "APC", "governorship", "candidate", ",", "Chief", "Timipre", "Sylva", "did", "actually", "approached", "the", "REC", ",", "through", "his", "wife", "with", "a", "cash", "sum", "of", "One", "million", "US", "Dollars", "which", "was", "out", "rightly", "rejected", "by", "Mrs", ".", "Kpaghi", ".", "The", "group", "however", "called", "on", "all", "Bayelsans", "and", "supporters", "of", "Governor", "Seriake", "Dickson", "to", "remain", "steadfast", "and", "continue", "to", "support", "the", "PDP", "administration", "in", "the", "state", "to", "deliver", "on", "its", "agenda", "of", "economic", "development", ",", "job", "and", "wealth", "creation", ",", "as", "well", "as", "industrialisation", ".", "Copyright", "2016", "Leadership", ".", "All", "rights", "reserved", ".", "Distributed", "by", "AllAfrica", "Global", "Media", "(", "allAfrica", ".", "com", ")", ".", "To", "contact", "the", "copyright", "holder", "directly", "for", "corrections", "\u00e2\u20ac\u201d", "or", "for", "permission", "to", "republish", "or", "make", "other", "authorized", "use", "of", "this", "material", ",", "click", "here", ".", "AllAfrica", "publishes", "around", "900", "reports", "a", "day", "from", "more", "than", "140", "news", "organizations", "and", "over", "500", "other", "institutions", "and", "individuals", ",", "representing", "a", "diversity", "of", "positions", "on", "every", "topic", ".", "We", "publish", "news", "and", "views", "ranging", "from", "vigorous", "opponents", "of", "governments", "to", "government", "publications", "and", "spokespersons", ".", "Publishers", "named", "above", "each", "report", "are", "responsible", "for", "their", "own", "content", ",", "which", "AllAfrica", "does", "not", "have", "the", "legal", "right", "to", "edit", "or", "correct", ".", "Articles", "and", "commentaries", "that", "identify", "allAfrica", ".", "com", "as", "the", "publisher", "are", "produced", "or", "commissioned", "by", "AllAfrica", ".", "To", "address", "comments", "or", "complaints", ",", "please", "Contact", "us", ".", "Follow", "AllAfrica"]}, "url": {"text": "http://www.ce_news_article.org/2016/01/04/201601040036.html"}, "content_strict": {"text": "

By Blessing Obineche

The Bayelsa State Justice Forum, has taken a swipe at the All Progressives Congress (APC), over the claim, that the Governor of Bayelsa and candidate of the Peoples Democratic Party (PDP), offered a bribe of two hundred million Naira, to the State's Resident Electoral Commissioner (REC), Mr. Baritor Kpagih to manipulate the outcome of the December 2015 governorship election in the State, in favor of the PDP.

The Forum through its Coordinator, Pastor Markson Konugha in a release sent to journalists in Yenegoa, described as false, spurious and baseless, the alarmist cry by the APC, accusing the REC and Governor Seriake Dickson, in the alleged scandal.

Reacting to the allegation, Pastor Konugha who laughed off the APC allegation being made through one of its front in INEC, Mr Francis Asmakia Tedobserved that while it was not necessary to join issues with the APC, a party which has already lost the governorship election in Bayelsa State, and is reputed to thrive on propaganda and blackmail, it was pertinent to set the records straight so that the unsuspecting public is not misled and misinformed by the APC.

The Group's Coordinator said the bribe story only exists in the imagination of its authors. He challenged the APC to present evidence of how the alleged sum of N200m was handed to the INEC's REC by Governor Seriake Dickson, through whom, and by what channel it was transmitted.

The group berated the APC for what he termed its provocative acts of mudslinging, in a desperate bid to manipulate the outcome of the rescheduled elections in the Southern Ijaw Local government area of the State, scheduled for January 9th, 2016, which it said, will not work.

The group also disclosed that it was aware that investigation is ongoing into the claim by Mr. Baritor Kpagih that some influential politicians attempted to bribe him before the December 2015 Governorship election, as information has it already, that the APC governorship candidate, Chief Timipre Sylva did actually approached the REC, through his wife with a cash sum of One million US Dollars which was out rightly rejected by Mrs. Kpaghi.

The group however called on all Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue to support the PDP administration in the state to deliver on its agenda of economic development, job and wealth creation, as well as industrialisation.

", "simple_tokens": ["by", "blessing", "obineche", "the", "bayelsa", "state", "justice", "forum", ",", "has", "taken", "a", "swipe", "at", "the", "all", "progressives", "congress", "(", "apc", ")", ",", "over", "the", "claim", ",", "that", "the", "governor", "of", "bayelsa", "and", "candidate", "of", "the", "peoples", "democratic", "party", "(", "pdp", ")", ",", "offered", "a", "bribe", "of", "two", "hundred", "million", "naira", ",", "to", "the", "state", "'", "s", "resident", "electoral", "commissioner", "(", "rec", ")", ",", "mr", ".", "baritor", "kpagih", "to", "manipulate", "the", "outcome", "of", "the", "december", "2015", "governorship", "election", "in", "the", "state", ",", "in", "favor", "of", "the", "pdp", ".", "the", "forum", "through", "its", "coordinator", ",", "pastor", "markson", "konugha", "in", "a", "release", "sent", "to", "journalists", "in", "yenegoa", ",", "described", "as", "false", ",", "spurious", "and", "baseless", ",", "the", "alarmist", "cry", "by", "the", "apc", ",", "accusing", "the", "rec", "and", "governor", "seriake", "dickson", ",", "in", "the", "alleged", "scandal", ".", "reacting", "to", "the", "allegation", ",", "pastor", "konugha", "who", "laughed", "off", "the", "apc", "allegation", "being", "made", "through", "one", "of", "its", "front", "in", "inec", ",", "mr", "francis", "asmakia", "tedobserved", "that", "while", "it", "was", "not", "necessary", "to", "join", "issues", "with", "the", "apc", ",", "a", "party", "which", "has", "already", "lost", "the", "governorship", "election", "in", "bayelsa", "state", ",", "and", "is", "reputed", "to", "thrive", "on", "propaganda", "and", "blackmail", ",", "it", "was", "pertinent", "to", "set", "the", "records", "straight", "so", "that", "the", "unsuspecting", "public", "is", "not", "misled", "and", "misinformed", "by", "the", "apc", ".", "the", "group", "'", "s", "coordinator", "said", "the", "bribe", "story", "only", "exists", "in", "the", "imagination", "of", "its", "authors", ".", "he", "challenged", "the", "apc", "to", "present", "evidence", "of", "how", "the", "alleged", "sum", "of", "n200m", "was", "handed", "to", "the", "inec", "'", "s", "rec", "by", "governor", "seriake", "dickson", ",", "through", "whom", ",", "and", "by", "what", "channel", "it", "was", "transmitted", ".", "the", "group", "berated", "the", "apc", "for", "what", "he", "termed", "its", "provocative", "acts", "of", "mudslinging", ",", "in", "a", "desperate", "bid", "to", "manipulate", "the", "outcome", "of", "the", "rescheduled", "elections", "in", "the", "southern", "ijaw", "local", "government", "area", "of", "the", "state", ",", "scheduled", "for", "january", "9th", ",", "2016", ",", "which", "it", "said", ",", "will", "not", "work", ".", "the", "group", "also", "disclosed", "that", "it", "was", "aware", "that", "investigation", "is", "ongoing", "into", "the", "claim", "by", "mr", ".", "baritor", "kpagih", "that", "some", "influential", "politicians", "attempted", "to", "bribe", "him", "before", "the", "december", "2015", "governorship", "election", ",", "as", "information", "has", "it", "already", ",", "that", "the", "apc", "governorship", "candidate", ",", "chief", "timipre", "sylva", "did", "actually", "approached", "the", "rec", ",", "through", "his", "wife", "with", "a", "cash", "sum", "of", "one", "million", "us", "dollars", "which", "was", "out", "rightly", "rejected", "by", "mrs", ".", "kpaghi", ".", "the", "group", "however", "called", "on", "all", "bayelsans", "and", "supporters", "of", "governor", "seriake", "dickson", "to", "remain", "steadfast", "and", "continue", "to", "support", "the", "pdp", "administration", "in", "the", "state", "to", "deliver", "on", "its", "agenda", "of", "economic", "development", ",", "job", "and", "wealth", "creation", ",", "as", "well", "as", "industrialisation", "."], "simple_tokens_original_case": ["By", "Blessing", "Obineche", "The", "Bayelsa", "State", "Justice", "Forum", ",", "has", "taken", "a", "swipe", "at", "the", "All", "Progressives", "Congress", "(", "APC", ")", ",", "over", "the", "claim", ",", "that", "the", "Governor", "of", "Bayelsa", "and", "candidate", "of", "the", "Peoples", "Democratic", "Party", "(", "PDP", ")", ",", "offered", "a", "bribe", "of", "two", "hundred", "million", "Naira", ",", "to", "the", "State", "'", "s", "Resident", "Electoral", "Commissioner", "(", "REC", ")", ",", "Mr", ".", "Baritor", "Kpagih", "to", "manipulate", "the", "outcome", "of", "the", "December", "2015", "governorship", "election", "in", "the", "State", ",", "in", "favor", "of", "the", "PDP", ".", "The", "Forum", "through", "its", "Coordinator", ",", "Pastor", "Markson", "Konugha", "in", "a", "release", "sent", "to", "journalists", "in", "Yenegoa", ",", "described", "as", "false", ",", "spurious", "and", "baseless", ",", "the", "alarmist", "cry", "by", "the", "APC", ",", "accusing", "the", "REC", "and", "Governor", "Seriake", "Dickson", ",", "in", "the", "alleged", "scandal", ".", "Reacting", "to", "the", "allegation", ",", "Pastor", "Konugha", "who", "laughed", "off", "the", "APC", "allegation", "being", "made", "through", "one", "of", "its", "front", "in", "INEC", ",", "Mr", "Francis", "Asmakia", "Tedobserved", "that", "while", "it", "was", "not", "necessary", "to", "join", "issues", "with", "the", "APC", ",", "a", "party", "which", "has", "already", "lost", "the", "governorship", "election", "in", "Bayelsa", "State", ",", "and", "is", "reputed", "to", "thrive", "on", "propaganda", "and", "blackmail", ",", "it", "was", "pertinent", "to", "set", "the", "records", "straight", "so", "that", "the", "unsuspecting", "public", "is", "not", "misled", "and", "misinformed", "by", "the", "APC", ".", "The", "Group", "'", "s", "Coordinator", "said", "the", "bribe", "story", "only", "exists", "in", "the", "imagination", "of", "its", "authors", ".", "He", "challenged", "the", "APC", "to", "present", "evidence", "of", "how", "the", "alleged", "sum", "of", "N200m", "was", "handed", "to", "the", "INEC", "'", "s", "REC", "by", "Governor", "Seriake", "Dickson", ",", "through", "whom", ",", "and", "by", "what", "channel", "it", "was", "transmitted", ".", "The", "group", "berated", "the", "APC", "for", "what", "he", "termed", "its", "provocative", "acts", "of", "mudslinging", ",", "in", "a", "desperate", "bid", "to", "manipulate", "the", "outcome", "of", "the", "rescheduled", "elections", "in", "the", "Southern", "Ijaw", "Local", "government", "area", "of", "the", "State", ",", "scheduled", "for", "January", "9th", ",", "2016", ",", "which", "it", "said", ",", "will", "not", "work", ".", "The", "group", "also", "disclosed", "that", "it", "was", "aware", "that", "investigation", "is", "ongoing", "into", "the", "claim", "by", "Mr", ".", "Baritor", "Kpagih", "that", "some", "influential", "politicians", "attempted", "to", "bribe", "him", "before", "the", "December", "2015", "Governorship", "election", ",", "as", "information", "has", "it", "already", ",", "that", "the", "APC", "governorship", "candidate", ",", "Chief", "Timipre", "Sylva", "did", "actually", "approached", "the", "REC", ",", "through", "his", "wife", "with", "a", "cash", "sum", "of", "One", "million", "US", "Dollars", "which", "was", "out", "rightly", "rejected", "by", "Mrs", ".", "Kpaghi", ".", "The", "group", "however", "called", "on", "all", "Bayelsans", "and", "supporters", "of", "Governor", "Seriake", "Dickson", "to", "remain", "steadfast", "and", "continue", "to", "support", "the", "PDP", "administration", "in", "the", "state", "to", "deliver", "on", "its", "agenda", "of", "economic", "development", ",", "job", "and", "wealth", "creation", ",", "as", "well", "as", "industrialisation", "."]}, "title": {"text": " Nigeria: Bayelsa Election - Sylva Not Dickson, Attempted to Bribe Bayelsa REC, Group as Alleges - allAfrica.com ", "simple_tokens": ["nigeria", ":", "bayelsa", "election", "-", "sylva", "not", "dickson", ",", "attempted", "to", "bribe", "bayelsa", "rec", ",", "group", "as", "alleges", "-", "allafrica", ".", "com"], "simple_tokens_original_case": ["Nigeria", ":", "Bayelsa", "Election", "-", "Sylva", "Not", "Dickson", ",", "Attempted", "to", "Bribe", "Bayelsa", "REC", ",", "Group", "as", "Alleges", "-", "allAfrica", ".", "com"]}}, "prefilter_filter_outcome": "no_action", "@execution_profile": {"@etk_end_time": "2018-06-07T17:34:12.272494", "@etk_process_time": 0.4481620788574219, "@etk_start_time": "2018-06-07T17:34:11.824332"}, "tld": "ce_news_article.org", "raw_content": "\n\n\n\n\n\n\n \n \n \n Nigeria: Bayelsa Election - Sylva Not Dickson, Attempted to Bribe Bayelsa REC, Group as Alleges - allAfrica.com\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n My Account\n \n
\n \n \n
\n
\n \n
\n
\n
\n

\n \n AllAfrica\n \n

\n
\n
\n
\n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n \n
\n \n \n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n
\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n 4 January 2016\n
\n \n \n

\n Nigeria: Bayelsa Election - Sylva Not Dickson, Attempted to Bribe Bayelsa REC, Group as Alleges\n

\n
\n \n
\n \n
\n \n
\n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n By Blessing Obineche\n \n

\n The Bayelsa State Justice Forum, has taken a swipe at the All Progressives Congress (APC), over the claim, that the Governor of Bayelsa and candidate of the Peoples Democratic Party (PDP), offered a bribe of two hundred million Naira, to the State's Resident Electoral Commissioner (REC), Mr. Baritor Kpagih to manipulate the outcome of the December 2015 governorship election in the State, in favor of the PDP.\n

\n

\n The Forum through its Coordinator, Pastor Markson Konugha in a release sent to journalists in Yenegoa, described as false, spurious and baseless, the alarmist cry by the APC, accusing the REC and Governor Seriake Dickson, in the alleged scandal.\n

\n

\n Reacting to the allegation, Pastor Konugha who laughed off the APC allegation being made through one of its front in INEC, Mr Francis Asmakia Tedobserved that while it was not necessary to join issues with the APC, a party which has already lost the governorship election in Bayelsa State, and is reputed to thrive on propaganda and blackmail, it was pertinent to set the records straight so that the unsuspecting public is not misled and misinformed by the APC.\n

\n

\n The Group's Coordinator said the bribe story only exists in the imagination of its authors. He challenged the APC to present evidence of how the alleged sum of N200m was handed to the INEC's REC by Governor Seriake Dickson, through whom, and by what channel it was transmitted.\n

\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
\n
\n

\n The group berated the APC for what he termed its provocative acts of mudslinging, in a desperate bid to manipulate the outcome of the rescheduled elections in the Southern Ijaw Local government area of the State, scheduled for January 9th, 2016, which it said, will not work.\n

\n

\n The group also disclosed that it was aware that investigation is ongoing into the claim by Mr. Baritor Kpagih that some influential politicians attempted to bribe him before the December 2015 Governorship election, as information has it already, that the APC governorship candidate, Chief Timipre Sylva did actually approached the REC, through his wife with a cash sum of One million US Dollars which was out rightly rejected by Mrs. Kpaghi.\n

\n

\n The group however called on all Bayelsans and supporters of Governor Seriake Dickson to remain steadfast and continue to support the PDP administration in the state to deliver on its agenda of economic development, job and wealth creation, as well as industrialisation.\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n \n
\n \n \n \n
\n \n
\n \n
\n
\n
    \n
  • \n
    \n
    \n
  • \n
  • \n \n \n
  • \n
  • \n \n \n
  • \n
\n \n
\n

\n \n Copyright\n \n 2016 Leadership. All rights reserved. Distributed by AllAfrica Global Media (\n \n allAfrica.com\n \n ).\nTo contact the copyright holder directly for corrections \u2014 or for permission to republish or make other authorized use of this material,\n \n click here.\n \n

\n

\n AllAfrica publishes around 900 reports a day from more than\n \n 140 news organizations\n \n and over\n \n 500 other institutions and individuals\n \n , representing a diversity of positions on every topic. We publish news and views ranging from vigorous opponents of governments to government publications and spokespersons. Publishers named above each report are responsible for their own content, which AllAfrica does not have the legal right to edit or correct.\n

\n

\n Articles and commentaries that identify allAfrica.com as the publisher are\n \n produced or commissioned by AllAfrica\n \n . To address comments or complaints, please\n \n Contact us\n \n .\n

\n
\n \n
\n \n
\n \n \n
\n \n
\n \n
\n
\n \n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n \n
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n

\n Follow AllAfrica\n

\n \n
\n \n
\n \n
\n
\n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n
\n \n
\n
\n
\n
\n \n \n \n
\n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n \n
\n \n
\n
\n
\n

\n AllAfrica is a voice of, by and about Africa - aggregating, producing and distributing 900 news and information items daily from over 140 African news organizations and our own reporters to an African and global public. We operate from Cape Town, Dakar, Lagos, Monrovia, Nairobi and Washington DC.\n

\n

\n \n 2017 AllAfrica\n \n \n Privacy\n \n \n Contact\n \n

\n
\n \n \n \n
\n AllAfrica - All the Time\n
\n \n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n
\n
\n \n \n
\n
\n \n \n \n\n", "doc_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E", "document_id": "8E57BC6332E20C3B16F56CDC93BD95E0FEF68ED473E0D739A0A1A7727BD8261E"} diff --git a/etk/unit_tests/test_default_spacy.py b/etk/unit_tests/test_default_spacy.py index ce91685d..ba5392d1 100644 --- a/etk/unit_tests/test_default_spacy.py +++ b/etk/unit_tests/test_default_spacy.py @@ -26,15 +26,12 @@ def setUp(self): def test_extraction_from_default_spacy(self): c = Core(extraction_config=self.e_config, load_spacy=True) - dd = codecs.open('temp','w') for i in range(len(self.ground_truth_input)): r = c.process(self.ground_truth_input[ i], create_knowledge_graph=True, html_description=False) - # dd.write(json.dumps(r)) - # dd.write('\n') - self.assertEquals(self.ground_truth_output[i][ - 'knowledge_graph'], r['knowledge_graph']) + + self.assertEquals(self.ground_truth_output[i]['knowledge_graph'], r['knowledge_graph']) if __name__ == '__main__': diff --git a/etk/unit_tests/test_extractions_using_dictionary.py b/etk/unit_tests/test_extractions_using_dictionary.py index bee2e01c..1bf4d65b 100644 --- a/etk/unit_tests/test_extractions_using_dictionary.py +++ b/etk/unit_tests/test_extractions_using_dictionary.py @@ -113,16 +113,16 @@ def test_extractor_dictionary(self): extraction = r["knowledge_graph"]["name"] ex = [ { - "confidence": 1, + "confidence": 1.0, "provenance": [ { "source": { "segment": "content_strict", "context": { - "start": 10, - "end": 11, + "start": 7, + "end": 8, "input": "tokens", - "text": "27 \n my name is helena height 160cms weight 55 kilos " + "text": "chrissy391 27 my name is helena height 160cms weight 55 kilos " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -137,16 +137,16 @@ def test_extractor_dictionary(self): "value": "helena" }, { - "confidence": 1, + "confidence": 1.0, "provenance": [ { "source": { "segment": "content_strict", "context": { - "start": 136, - "end": 137, + "start": 111, + "end": 112, "input": "tokens", - "text": "\n hey i ' m luna 3234522013 let ' s explore " + "text": "girls hey i ' m luna 3234522013 let ' s explore " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, diff --git a/etk/unit_tests/test_extractions_using_regex.py b/etk/unit_tests/test_extractions_using_regex.py index 5e7699e7..ee10bded 100644 --- a/etk/unit_tests/test_extractions_using_regex.py +++ b/etk/unit_tests/test_extractions_using_regex.py @@ -89,16 +89,16 @@ def test_extractor_regex(self): self.assertTrue(len(r['knowledge_graph']["name"]) == 1) extraction = r['knowledge_graph']["name"][0] ex = { - "confidence": 1, + "confidence": 1.0, "provenance": [ { "source": { "segment": "content_strict", "context": { - "start": 41, - "end": 58, + "start": 68, + "end": 85, "input": "text", - "text": "91 27 \n My name is Helena height 16" + "text": "br/>
My name is Helena height 16" }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, diff --git a/etk/unit_tests/test_geonames_lookup.py b/etk/unit_tests/test_geonames_lookup.py index 4eebf6ad..50652d11 100644 --- a/etk/unit_tests/test_geonames_lookup.py +++ b/etk/unit_tests/test_geonames_lookup.py @@ -169,16 +169,16 @@ def test_geonames_lookup(self): ]""" ex_city_name_gt = [ { - "confidence": 1, + "confidence": 1.0, "provenance": [ { "source": { "segment": "content_strict", "context": { - "start": 88, - "end": 90, + "start": 69, + "end": 71, "input": "tokens", - "text": "' s location : \n los angeles , california \n escort ' " + "text": "escort ' s location : los angeles , california escort ' s " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -192,10 +192,10 @@ def test_geonames_lookup(self): "source": { "segment": "content_relaxed", "context": { - "start": 88, - "end": 90, + "start": 69, + "end": 71, "input": "tokens", - "text": "' s location : \n los angeles , california \n escort ' " + "text": "escort ' s location : los angeles , california escort ' s " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -243,14 +243,14 @@ def test_geonames_lookup(self): ]""" ex_states_usa_codes_gt = [ { - "confidence": 1, + "confidence": 1.0, "provenance": [ { "source": { "segment": "content_strict", "context": { - "start": 17, - "end": 18, + "start": 14, + "end": 15, "input": "tokens", "text": "160cms weight 55 kilos contact me at escort . here @ " }, @@ -266,8 +266,8 @@ def test_geonames_lookup(self): "source": { "segment": "content_strict", "context": { - "start": 193, - "end": 194, + "start": 168, + "end": 169, "input": "tokens", "text": "- 452 - 2013 . me and my friends are on " }, @@ -283,10 +283,10 @@ def test_geonames_lookup(self): "source": { "segment": "content_strict", "context": { - "start": 217, - "end": 218, + "start": 191, + "end": 192, "input": "tokens", - "text": ". . skittlegirl \n\n\n\n call me on my cell at 323 " + "text": ". . . skittlegirl call me on my cell at 323 " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -300,8 +300,8 @@ def test_geonames_lookup(self): "source": { "segment": "content_relaxed", "context": { - "start": 17, - "end": 18, + "start": 14, + "end": 15, "input": "tokens", "text": "160cms weight 55 kilos contact me at escort . here @ " }, @@ -317,8 +317,8 @@ def test_geonames_lookup(self): "source": { "segment": "content_relaxed", "context": { - "start": 193, - "end": 194, + "start": 168, + "end": 169, "input": "tokens", "text": "- 452 - 2013 . me and my friends are on " }, @@ -334,10 +334,10 @@ def test_geonames_lookup(self): "source": { "segment": "content_relaxed", "context": { - "start": 217, - "end": 218, + "start": 191, + "end": 192, "input": "tokens", - "text": ". . skittlegirl \n\n\n\n call me on my cell at 323 " + "text": ". . . skittlegirl call me on my cell at 323 " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -352,16 +352,16 @@ def test_geonames_lookup(self): "value": "me" }, { - "confidence": 1, + "confidence": 1.0, "provenance": [ { "source": { "segment": "content_strict", "context": { - "start": 126, - "end": 127, + "start": 103, + "end": 104, "input": "tokens", - "text": "there are 50 girls looking in . \n view girls \n " + "text": "there are 50 girls looking in . view girls hey i " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -375,8 +375,8 @@ def test_geonames_lookup(self): "source": { "segment": "content_strict", "context": { - "start": 146, - "end": 147, + "start": 121, + "end": 122, "input": "tokens", "text": "explore , embrace and indulge in your favorite fantasy % independent " }, @@ -392,10 +392,10 @@ def test_geonames_lookup(self): "source": { "segment": "content_relaxed", "context": { - "start": 126, - "end": 127, + "start": 103, + "end": 104, "input": "tokens", - "text": "there are 50 girls looking in . \n view girls \n " + "text": "there are 50 girls looking in . view girls hey i " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -409,8 +409,8 @@ def test_geonames_lookup(self): "source": { "segment": "content_relaxed", "context": { - "start": 146, - "end": 147, + "start": 121, + "end": 122, "input": "tokens", "text": "explore , embrace and indulge in your favorite fantasy % independent " }, @@ -427,14 +427,14 @@ def test_geonames_lookup(self): "value": "in" }, { - "confidence": 1, + "confidence": 1.0, "provenance": [ { "source": { "segment": "content_strict", "context": { - "start": 173, - "end": 174, + "start": 148, + "end": 149, "input": "tokens", "text": "exactly what you deserve call or text fetish friendly fantasy friendly " }, @@ -450,8 +450,8 @@ def test_geonames_lookup(self): "source": { "segment": "content_relaxed", "context": { - "start": 173, - "end": 174, + "start": 148, + "end": 149, "input": "tokens", "text": "exactly what you deserve call or text fetish friendly fantasy friendly " }, @@ -475,7 +475,6 @@ def test_geonames_lookup(self): self.assertEqual(r['knowledge_graph']['city_name'], ex_city_name) self.assertEqual(r['knowledge_graph']['city'], json.loads(ex_city_gt)) - pop_states_usa_codes = json.loads(json.JSONEncoder().encode(r['knowledge_graph']['states_usa_codes'])) self.assertEqual(len(pop_states_usa_codes), len(ex_states_usa_codes_gt)) self.assertEqual(pop_states_usa_codes, ex_states_usa_codes_gt) diff --git a/etk/unit_tests/test_knowledge_graph.py b/etk/unit_tests/test_knowledge_graph.py index 8a4083a8..d033d04c 100644 --- a/etk/unit_tests/test_knowledge_graph.py +++ b/etk/unit_tests/test_knowledge_graph.py @@ -89,16 +89,16 @@ def test_extraction_input_path(self): ], "name": [ { - "confidence": 1, + "confidence": 1.0, "provenance": [ { "source": { "segment": "content_relaxed", "context": { - "start": 10, - "end": 11, + "start": 7, + "end": 8, "input": "tokens", - "text": "27 \n my name is helena height 160cms weight 55 kilos " + "text": "chrissy391 27 my name is helena height 160cms weight 55 kilos " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -112,10 +112,10 @@ def test_extraction_input_path(self): "source": { "segment": "content_relaxed", "context": { - "start": 41, - "end": 58, + "start": 68, + "end": 85, "input": "text", - "text": "91 27 \n My name is Helena height 16" + "text": "br/>
My name is Helena height 16" }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -129,10 +129,10 @@ def test_extraction_input_path(self): "source": { "segment": "content_strict", "context": { - "start": 10, - "end": 11, + "start": 7, + "end": 8, "input": "tokens", - "text": "27 \n my name is helena height 160cms weight 55 kilos " + "text": "chrissy391 27 my name is helena height 160cms weight 55 kilos " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -146,10 +146,10 @@ def test_extraction_input_path(self): "source": { "segment": "content_strict", "context": { - "start": 41, - "end": 58, + "start": 68, + "end": 85, "input": "text", - "text": "91 27 \n My name is Helena height 16" + "text": "br/>
My name is Helena height 16" }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -164,16 +164,16 @@ def test_extraction_input_path(self): "value": "helena" }, { - "confidence": 1, + "confidence": 1.0, "provenance": [ { "source": { "segment": "content_relaxed", "context": { - "start": 136, - "end": 137, + "start": 111, + "end": 112, "input": "tokens", - "text": "\n hey i ' m luna 3234522013 let ' s explore " + "text": "girls hey i ' m luna 3234522013 let ' s explore " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" }, @@ -187,10 +187,10 @@ def test_extraction_input_path(self): "source": { "segment": "content_strict", "context": { - "start": 136, - "end": 137, + "start": 111, + "end": 112, "input": "tokens", - "text": "\n hey i ' m luna 3234522013 let ' s explore " + "text": "girls hey i ' m luna 3234522013 let ' s explore " }, "document_id": "1A4A5FF5BD066309C72C8EEE6F7BCCCFD21B83245AFCDADDF014455BCF990A21" },